FimfictionAPI: quote problem in json "parsing"
[nikiroo-utils.git] / src / be / nikiroo / fanfix / supported / FimfictionApi.java
CommitLineData
315f14ae
NR
1package be.nikiroo.fanfix.supported;
2
3import java.io.IOException;
4import java.io.InputStream;
5import java.net.URL;
6import java.util.ArrayList;
7import java.util.HashMap;
8import java.util.List;
9import java.util.Map;
10import java.util.Map.Entry;
11
12import be.nikiroo.fanfix.Instance;
13import be.nikiroo.fanfix.bundles.Config;
14import be.nikiroo.fanfix.data.MetaData;
15import be.nikiroo.utils.IOUtils;
16import be.nikiroo.utils.Progress;
17
18/**
19 * Support class for <a href="http://www.fimfiction.net/">FimFiction.net</a>
20 * stories, a website dedicated to My Little Pony.
21 * <p>
22 * This version uses the new, official API of FimFiction.
23 *
24 * @author niki
25 */
26class FimfictionApi extends BasicSupport {
27 private String oauth;
28 private String storyId;
29 private String json;
30
31 private Map<Integer, String> chapterNames;
32 private Map<Integer, String> chapterContents;
33
34 public FimfictionApi() throws IOException {
35 if (Instance.getConfig().getBoolean(
36 Config.LOGIN_FIMFICTION_APIKEY_FORCE_HTML, false)) {
37 throw new IOException(
38 "Configuration is set to force HTML scrapping");
39 }
40
41 String oauth = Instance.getConfig().getString(
42 Config.LOGIN_FIMFICTION_APIKEY_TOKEN);
43
44 if (oauth == null || oauth.isEmpty()) {
45 String clientId = Instance.getConfig().getString(
46 Config.LOGIN_FIMFICTION_APIKEY_CLIENT_ID)
47 + "";
48 String clientSecret = Instance.getConfig().getString(
49 Config.LOGIN_FIMFICTION_APIKEY_CLIENT_SECRET)
50 + "";
51
52 if (clientId.trim().isEmpty() || clientSecret.trim().isEmpty()) {
53 throw new IOException("API key required for the beta API v2");
54 }
55
56 oauth = generateOAuth(clientId, clientSecret);
57
58 Instance.getConfig().setString(
59 Config.LOGIN_FIMFICTION_APIKEY_TOKEN, oauth);
60 Instance.getConfig().updateFile();
61 }
62
63 this.oauth = oauth;
64 }
65
66 @Override
67 public String getOAuth() {
68 return oauth;
69 }
70
71 @Override
72 protected boolean isHtml() {
73 return true;
74 }
75
76 @Override
77 public String getSourceName() {
78 return "FimFiction.net";
79 }
80
81 @Override
82 protected void preprocess(URL source, InputStream in) throws IOException {
83 // extract the ID from:
84 // https://www.fimfiction.net/story/123456/name-of-story
85 storyId = getKeyText(source.toString(), "/story/", null, "/");
86
87 // Selectors, so to download all I need and only what I need
88 String storyContent = "fields[story]=title,description,date_published,cover_image";
89 String authorContent = "fields[author]=name";
90 String chapterContent = "fields[chapter]=chapter_number,title,content,authors_note";
91 String contentContent = "fields[content]=html";
92 String authorsNoteContent = "fields[authors_note]=html";
93 String includes = "author,chapters,tags";
94
95 String urlString = String.format(
96 "https://www.fimfiction.net/api/v2/stories/%s?" //
97 + "%s&%s&"//
98 + "%s&%s&%s&" //
99 + "include=%s", //
100 storyId, //
101 storyContent, authorContent, //
102 chapterContent, contentContent, authorsNoteContent,//
103 includes);
104
105 // URL params must be URL-encoded: "[ ]" <-> "%5B %5D"
106 urlString = urlString.replace("[", "%5B").replace("]", "%5D");
107
108 URL url = new URL(urlString);
109 InputStream jsonIn = Instance.getCache().open(url, this, false);
110 try {
111 json = IOUtils.readSmallStream(jsonIn);
112 } finally {
113 jsonIn.close();
114 }
115 }
116
117 @Override
118 protected InputStream openInput(URL source) throws IOException {
119 return null;
120 }
121
122 @Override
123 protected MetaData getMeta(URL source, InputStream in) throws IOException {
124 MetaData meta = new MetaData();
125
126 meta.setTitle(getKeyJson(json, 0, "type", "story", "title"));
127 meta.setAuthor(getKeyJson(json, 0, "type", "user", "name"));
128 meta.setDate(getKeyJson(json, 0, "type", "story", "date_published"));
129 meta.setTags(getTags());
130 meta.setSource(getSourceName());
131 meta.setUrl(source.toString());
132 meta.setPublisher(getSourceName());
133 meta.setUuid(source.toString());
134 meta.setLuid("");
135 meta.setLang("EN");
136 meta.setSubject("MLP");
137 meta.setType(getType().toString());
138 meta.setImageDocument(false);
139 meta.setCover(getImage(this, null,
140 getKeyJson(json, 0, "type", "story", "cover_image", "full")));
141
142 return meta;
143 }
144
145 private List<String> getTags() {
146 List<String> tags = new ArrayList<String>();
147 tags.add("MLP");
148
149 int pos = 0;
150 while (pos >= 0) {
151 pos = indexOfJsonAfter(json, pos, "type", "story_tag");
152 if (pos >= 0) {
153 tags.add(getKeyJson(json, pos, "name"));
154 }
155 }
156
157 return tags;
158 }
159
160 @Override
161 protected String getDesc(URL source, InputStream in) {
162 return getKeyJson(json, 0, "type", "story", "description");
163 }
164
165 @Override
166 protected List<Entry<String, URL>> getChapters(URL source, InputStream in,
167 Progress pg) {
168 List<Entry<String, URL>> urls = new ArrayList<Entry<String, URL>>();
169
170 chapterNames = new HashMap<Integer, String>();
171 chapterContents = new HashMap<Integer, String>();
172
173 int pos = 0;
174 while (pos >= 0) {
175 pos = indexOfJsonAfter(json, pos, "type", "chapter");
176 if (pos >= 0) {
177 int posNumber = indexOfJsonAfter(json, pos, "chapter_number");
178 int posComa = json.indexOf(",", posNumber);
179 final int number = Integer.parseInt(json.substring(posNumber,
180 posComa).trim());
181 final String title = getKeyJson(json, pos, "title");
182 String notes = getKeyJson(json, pos, "authors_note", "html");
183 String content = getKeyJson(json, pos, "content", "html");
184
185 chapterNames.put(number, title);
186 chapterContents
187 .put(number, content + "<br/>* * *<br/>" + notes);
188
189 urls.add(new Entry<String, URL>() {
190 @Override
191 public URL setValue(URL value) {
192 return null;
193 }
194
195 @Override
196 public String getKey() {
197 return title;
198 }
199
200 @Override
201 public URL getValue() {
202 return null;
203 }
204 });
205 }
206 }
207
208 return urls;
209 }
210
211 @Override
212 protected String getChapterContent(URL source, InputStream in, int number,
213 Progress pg) {
214 return chapterContents.get(number);
215 }
216
217 @Override
218 protected boolean supports(URL url) {
219 return "fimfiction.net".equals(url.getHost())
220 || "www.fimfiction.net".equals(url.getHost());
221 }
222
223 static private String generateOAuth(String clientId, String clientSecret)
224 throws IOException {
225 URL url = new URL("https://www.fimfiction.net/api/v2/token");
226 Map<String, String> params = new HashMap<String, String>();
227 params.put("client_id", clientId);
228 params.put("client_secret", clientSecret);
229 params.put("grant_type", "client_credentials");
230 InputStream in = Instance.getCache().openNoCache(url, null, params,
231 null, null);
232
233 String jsonToken = IOUtils.readSmallStream(in);
234
235 // Extract token type and token from: {
236 // token_type = "bearer",
237 // access_token = "xxxxxxxxxxxxxx"
238 // }
239
240 String token = getKeyText(jsonToken, "\"access_token\"", "\"", "\"");
241 String tokenType = getKeyText(jsonToken, "\"token_type\"", "\"", "\"");
242
243 // TODO: remove this once the bug is fixed on the server side
244 if ("bearer".equals(tokenType)) {
245 tokenType = "Bearer";
246 }
247
248 return tokenType + " " + token;
249 }
250
251 // afters: [name, value] pairs (or "" for any of them), can end without
252 // value
253 static private int indexOfJsonAfter(String json, int startAt,
254 String... afterKeys) {
255 ArrayList<String> afters = new ArrayList<String>();
256 boolean name = true;
257 for (String key : afterKeys) {
258 if (key != null && !key.isEmpty()) {
259 afters.add("\"" + key + "\"");
260 } else {
261 afters.add("\"");
262 afters.add("\"");
263 }
264
265 if (name) {
266 afters.add(":");
267 }
268
269 name = !name;
270 }
271
272 return indexOfAfter(json, startAt, afters.toArray(new String[] {}));
273 }
274
275 // afters: [name, value] pairs (or "" for any of them), can end without
276 // value
277 static private String getKeyJson(String json, int startAt,
278 String... afterKeys) {
279 int pos = indexOfJsonAfter(json, startAt, afterKeys);
280 if (pos < 0) {
281 return null;
282 }
283
37fdbdef
NR
284 String result = null;
285 String wip = json.substring(pos);
286
287 pos = nextUnescapedQuote(wip, 0);
288 if (pos >= 0) {
289 wip = wip.substring(pos + 1);
290 pos = nextUnescapedQuote(wip, 0);
291 if (pos >= 0) {
292 result = wip.substring(0, pos);
293 }
294 }
295
296 return result;
297 }
298
299 // next " but don't take \" into account
300 static private int nextUnescapedQuote(String result, int pos) {
301 while (pos >= 0) {
302 pos = result.indexOf("\"", pos);
303 if (pos == 0 || (pos > 0 && result.charAt(pos - 1) != '\\')) {
304 break;
305 }
306
307 if (pos < result.length()) {
308 pos++;
309 }
310 }
311
312 return pos;
315f14ae
NR
313 }
314}