update nikiroo-utils
[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;
ce297a79 6import java.util.AbstractMap;
315f14ae
NR
7import java.util.ArrayList;
8import java.util.HashMap;
9import java.util.List;
10import java.util.Map;
11import java.util.Map.Entry;
ce297a79 12import java.util.TreeMap;
315f14ae 13
826e4569
NR
14import org.jsoup.nodes.Document;
15
315f14ae
NR
16import be.nikiroo.fanfix.Instance;
17import be.nikiroo.fanfix.bundles.Config;
18import be.nikiroo.fanfix.data.MetaData;
826e4569 19import be.nikiroo.fanfix.data.Story;
315f14ae 20import be.nikiroo.utils.IOUtils;
826e4569 21import be.nikiroo.utils.Image;
315f14ae
NR
22import be.nikiroo.utils.Progress;
23
24/**
25 * Support class for <a href="http://www.fimfiction.net/">FimFiction.net</a>
26 * stories, a website dedicated to My Little Pony.
27 * <p>
28 * This version uses the new, official API of FimFiction.
29 *
30 * @author niki
31 */
826e4569 32class FimfictionApi extends BasicSupport {
315f14ae 33 private String oauth;
315f14ae
NR
34 private String json;
35
36 private Map<Integer, String> chapterNames;
37 private Map<Integer, String> chapterContents;
38
39 public FimfictionApi() throws IOException {
40 if (Instance.getConfig().getBoolean(
41 Config.LOGIN_FIMFICTION_APIKEY_FORCE_HTML, false)) {
42 throw new IOException(
43 "Configuration is set to force HTML scrapping");
44 }
45
46 String oauth = Instance.getConfig().getString(
47 Config.LOGIN_FIMFICTION_APIKEY_TOKEN);
48
49 if (oauth == null || oauth.isEmpty()) {
50 String clientId = Instance.getConfig().getString(
51 Config.LOGIN_FIMFICTION_APIKEY_CLIENT_ID)
52 + "";
53 String clientSecret = Instance.getConfig().getString(
54 Config.LOGIN_FIMFICTION_APIKEY_CLIENT_SECRET)
55 + "";
56
57 if (clientId.trim().isEmpty() || clientSecret.trim().isEmpty()) {
58 throw new IOException("API key required for the beta API v2");
59 }
60
61 oauth = generateOAuth(clientId, clientSecret);
62
63 Instance.getConfig().setString(
64 Config.LOGIN_FIMFICTION_APIKEY_TOKEN, oauth);
65 Instance.getConfig().updateFile();
66 }
67
68 this.oauth = oauth;
69 }
70
826e4569
NR
71 @Override
72 protected Document loadDocument(URL source) throws IOException {
73 json = getJsonData();
74 return null;
75 }
76
315f14ae
NR
77 @Override
78 public String getOAuth() {
79 return oauth;
80 }
81
82 @Override
83 protected boolean isHtml() {
84 return true;
85 }
86
826e4569
NR
87 /**
88 * Extract the full JSON data we will later use to build the {@link Story}.
89 *
90 * @return the data in a JSON format
91 *
92 * @throws IOException
93 * in case of I/O error
94 */
95 private String getJsonData() throws IOException {
315f14ae
NR
96 // extract the ID from:
97 // https://www.fimfiction.net/story/123456/name-of-story
826e4569
NR
98 String storyId = getKeyText(getSource().toString(), "/story/", null,
99 "/");
315f14ae
NR
100
101 // Selectors, so to download all I need and only what I need
102 String storyContent = "fields[story]=title,description,date_published,cover_image";
103 String authorContent = "fields[author]=name";
77e28d38 104 String chapterContent = "fields[chapter]=chapter_number,title,content_html,authors_note_html";
315f14ae
NR
105 String includes = "author,chapters,tags";
106
107 String urlString = String.format(
108 "https://www.fimfiction.net/api/v2/stories/%s?" //
315f14ae
NR
109 + "%s&%s&%s&" //
110 + "include=%s", //
111 storyId, //
77e28d38 112 storyContent, authorContent, chapterContent,//
315f14ae
NR
113 includes);
114
115 // URL params must be URL-encoded: "[ ]" <-> "%5B %5D"
116 urlString = urlString.replace("[", "%5B").replace("]", "%5D");
117
118 URL url = new URL(urlString);
119 InputStream jsonIn = Instance.getCache().open(url, this, false);
120 try {
826e4569 121 return IOUtils.readSmallStream(jsonIn);
315f14ae
NR
122 } finally {
123 jsonIn.close();
124 }
125 }
126
127 @Override
826e4569 128 protected MetaData getMeta() throws IOException {
315f14ae
NR
129 MetaData meta = new MetaData();
130
131 meta.setTitle(getKeyJson(json, 0, "type", "story", "title"));
132 meta.setAuthor(getKeyJson(json, 0, "type", "user", "name"));
133 meta.setDate(getKeyJson(json, 0, "type", "story", "date_published"));
134 meta.setTags(getTags());
727108fe 135 meta.setSource(getType().getSourceName());
826e4569 136 meta.setUrl(getSource().toString());
727108fe 137 meta.setPublisher(getType().getSourceName());
826e4569 138 meta.setUuid(getSource().toString());
315f14ae 139 meta.setLuid("");
276f95c6 140 meta.setLang("en");
315f14ae
NR
141 meta.setSubject("MLP");
142 meta.setType(getType().toString());
143 meta.setImageDocument(false);
ce297a79
NR
144
145 String coverImageLink = getKeyJson(json, 0, "type", "story",
146 "cover_image", "full");
fce43164 147 if (!coverImageLink.trim().isEmpty()) {
a5b42441
NR
148 URL coverImageUrl = new URL(coverImageLink.trim());
149
150 InputStream in = Instance.getCache()
151 .open(coverImageUrl, this, true);
826e4569 152 try {
826e4569
NR
153 meta.setCover(new Image(in));
154 } finally {
155 in.close();
156 }
fce43164 157 }
315f14ae
NR
158
159 return meta;
160 }
161
162 private List<String> getTags() {
163 List<String> tags = new ArrayList<String>();
164 tags.add("MLP");
165
166 int pos = 0;
167 while (pos >= 0) {
168 pos = indexOfJsonAfter(json, pos, "type", "story_tag");
169 if (pos >= 0) {
fce43164 170 tags.add(getKeyJson(json, pos, "name").trim());
315f14ae
NR
171 }
172 }
173
174 return tags;
175 }
176
177 @Override
826e4569 178 protected String getDesc() {
d9a94285 179 String desc = getKeyJson(json, 0, "type", "story", "description");
a8209dd0 180 return unbbcode(desc);
315f14ae
NR
181 }
182
183 @Override
826e4569 184 protected List<Entry<String, URL>> getChapters(Progress pg) {
ce297a79
NR
185 chapterNames = new TreeMap<Integer, String>();
186 chapterContents = new TreeMap<Integer, String>();
315f14ae
NR
187
188 int pos = 0;
189 while (pos >= 0) {
190 pos = indexOfJsonAfter(json, pos, "type", "chapter");
191 if (pos >= 0) {
192 int posNumber = indexOfJsonAfter(json, pos, "chapter_number");
193 int posComa = json.indexOf(",", posNumber);
194 final int number = Integer.parseInt(json.substring(posNumber,
195 posComa).trim());
196 final String title = getKeyJson(json, pos, "title");
77e28d38
NR
197 String notes = getKeyJson(json, pos, "authors_note_html");
198 String content = getKeyJson(json, pos, "content_html");
ce297a79 199
fce43164
NR
200 if (!notes.trim().isEmpty()) {
201 notes = "<br/>* * *<br/>" + notes;
202 }
ce297a79 203
315f14ae 204 chapterNames.put(number, title);
ce297a79 205 chapterContents.put(number, content + notes);
315f14ae
NR
206 }
207 }
208
ce297a79
NR
209 List<Entry<String, URL>> urls = new ArrayList<Entry<String, URL>>();
210 for (String title : chapterNames.values()) {
1c0d0058 211 urls.add(new AbstractMap.SimpleEntry<String, URL>(title, null));
ce297a79
NR
212 }
213
315f14ae
NR
214 return urls;
215 }
216
217 @Override
826e4569 218 protected String getChapterContent(URL source, int number, Progress pg) {
315f14ae
NR
219 return chapterContents.get(number);
220 }
221
222 @Override
223 protected boolean supports(URL url) {
224 return "fimfiction.net".equals(url.getHost())
225 || "www.fimfiction.net".equals(url.getHost());
226 }
227
a8209dd0
NR
228 /**
229 * Generate a new token from the client ID and secret.
230 * <p>
231 * Note that those tokens are long-lived, and it would be badly seen to
232 * create a lot of them without due cause.
233 * <p>
234 * So, please cache and re-use them.
235 *
236 * @param clientId
237 * the client ID offered on FimFiction
238 * @param clientSecret
239 * the client secret that goes with it
240 *
241 * @return a new generated token linked to that client ID
242 *
243 * @throws IOException
244 * in case of I/O errors
245 */
315f14ae
NR
246 static private String generateOAuth(String clientId, String clientSecret)
247 throws IOException {
248 URL url = new URL("https://www.fimfiction.net/api/v2/token");
249 Map<String, String> params = new HashMap<String, String>();
250 params.put("client_id", clientId);
251 params.put("client_secret", clientSecret);
252 params.put("grant_type", "client_credentials");
253 InputStream in = Instance.getCache().openNoCache(url, null, params,
254 null, null);
255
256 String jsonToken = IOUtils.readSmallStream(in);
581d42c0 257 in.close();
315f14ae
NR
258
259 // Extract token type and token from: {
a8209dd0 260 // token_type = "Bearer",
315f14ae
NR
261 // access_token = "xxxxxxxxxxxxxx"
262 // }
263
315f14ae 264 String tokenType = getKeyText(jsonToken, "\"token_type\"", "\"", "\"");
826e4569 265 String token = getKeyText(jsonToken, "\"access_token\"", "\"", "\"");
315f14ae 266
315f14ae
NR
267 return tokenType + " " + token;
268 }
269
270 // afters: [name, value] pairs (or "" for any of them), can end without
271 // value
272 static private int indexOfJsonAfter(String json, int startAt,
273 String... afterKeys) {
274 ArrayList<String> afters = new ArrayList<String>();
275 boolean name = true;
276 for (String key : afterKeys) {
277 if (key != null && !key.isEmpty()) {
278 afters.add("\"" + key + "\"");
279 } else {
280 afters.add("\"");
281 afters.add("\"");
282 }
283
284 if (name) {
285 afters.add(":");
286 }
287
288 name = !name;
289 }
290
291 return indexOfAfter(json, startAt, afters.toArray(new String[] {}));
292 }
293
294 // afters: [name, value] pairs (or "" for any of them), can end without
fce43164 295 // value but will then be empty, not NULL
315f14ae
NR
296 static private String getKeyJson(String json, int startAt,
297 String... afterKeys) {
298 int pos = indexOfJsonAfter(json, startAt, afterKeys);
299 if (pos < 0) {
fce43164 300 return "";
315f14ae
NR
301 }
302
fce43164 303 String result = "";
37fdbdef
NR
304 String wip = json.substring(pos);
305
306 pos = nextUnescapedQuote(wip, 0);
307 if (pos >= 0) {
308 wip = wip.substring(pos + 1);
309 pos = nextUnescapedQuote(wip, 0);
310 if (pos >= 0) {
311 result = wip.substring(0, pos);
312 }
313 }
ce297a79
NR
314
315 result = result.replace("\\t", "\t").replace("\\\"", "\"");
316
37fdbdef
NR
317 return result;
318 }
319
320 // next " but don't take \" into account
321 static private int nextUnescapedQuote(String result, int pos) {
322 while (pos >= 0) {
323 pos = result.indexOf("\"", pos);
324 if (pos == 0 || (pos > 0 && result.charAt(pos - 1) != '\\')) {
325 break;
326 }
327
328 if (pos < result.length()) {
329 pos++;
330 }
331 }
332
333 return pos;
315f14ae 334 }
a8209dd0
NR
335
336 // quick & dirty filter
337 static private String unbbcode(String bbcode) {
338 String text = bbcode.replace("\\r\\n", "<br/>") //
339 .replace("[i]", "_").replace("[/i]", "_") //
340 .replace("[b]", "*").replace("[/b]", "*") //
341 .replaceAll("\\[[^\\]]*\\]", "");
342 return text;
343 }
826e4569
NR
344
345 /**
346 * Return the text between the key and the endKey (and optional subKey can
347 * be passed, in this case we will look for the key first, then take the
348 * text between the subKey and the endKey).
349 *
350 * @param in
351 * the input
352 * @param key
353 * the key to match (also supports "^" at start to say
354 * "only if it starts with" the key)
355 * @param subKey
356 * the sub key or NULL if none
357 * @param endKey
358 * the end key or NULL for "up to the end"
359 * @return the text or NULL if not found
360 */
361 static private String getKeyText(String in, String key, String subKey,
362 String endKey) {
363 String result = null;
364
365 String line = in;
366 if (line != null && line.contains(key)) {
367 line = line.substring(line.indexOf(key) + key.length());
368 if (subKey == null || subKey.isEmpty() || line.contains(subKey)) {
369 if (subKey != null) {
370 line = line.substring(line.indexOf(subKey)
371 + subKey.length());
372 }
373 if (endKey == null || line.contains(endKey)) {
374 if (endKey != null) {
375 line = line.substring(0, line.indexOf(endKey));
376 result = line;
377 }
378 }
379 }
380 }
381
382 return result;
383 }
384
385 /**
386 * Return the first index after all the given "afters" have been found in
387 * the {@link String}, or -1 if it was not possible.
388 *
389 * @param in
390 * the input
391 * @param startAt
392 * start at this position in the string
393 * @param afters
394 * the sub-keys to find before checking for key/endKey
395 *
396 * @return the text or NULL if not found
397 */
398 static private int indexOfAfter(String in, int startAt, String... afters) {
399 int pos = -1;
400 if (in != null && !in.isEmpty()) {
401 pos = startAt;
402 if (afters != null) {
403 for (int i = 0; pos >= 0 && i < afters.length; i++) {
404 String subKey = afters[i];
405 if (!subKey.isEmpty()) {
406 pos = in.indexOf(subKey, pos);
407 if (pos >= 0) {
408 pos += subKey.length();
409 }
410 }
411 }
412 }
413 }
414
415 return pos;
416 }
315f14ae 417}