1 package be
.nikiroo
.fanfix
.supported
;
3 import java
.io
.IOException
;
4 import java
.io
.InputStream
;
6 import java
.util
.ArrayList
;
7 import java
.util
.HashMap
;
10 import java
.util
.Map
.Entry
;
12 import be
.nikiroo
.fanfix
.Instance
;
13 import be
.nikiroo
.fanfix
.bundles
.Config
;
14 import be
.nikiroo
.fanfix
.data
.MetaData
;
15 import be
.nikiroo
.utils
.IOUtils
;
16 import be
.nikiroo
.utils
.Progress
;
19 * Support class for <a href="http://www.fimfiction.net/">FimFiction.net</a>
20 * stories, a website dedicated to My Little Pony.
22 * This version uses the new, official API of FimFiction.
26 class FimfictionApi
extends BasicSupport
{
28 private String storyId
;
31 private Map
<Integer
, String
> chapterNames
;
32 private Map
<Integer
, String
> chapterContents
;
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");
41 String oauth
= Instance
.getConfig().getString(
42 Config
.LOGIN_FIMFICTION_APIKEY_TOKEN
);
44 if (oauth
== null || oauth
.isEmpty()) {
45 String clientId
= Instance
.getConfig().getString(
46 Config
.LOGIN_FIMFICTION_APIKEY_CLIENT_ID
)
48 String clientSecret
= Instance
.getConfig().getString(
49 Config
.LOGIN_FIMFICTION_APIKEY_CLIENT_SECRET
)
52 if (clientId
.trim().isEmpty() || clientSecret
.trim().isEmpty()) {
53 throw new IOException("API key required for the beta API v2");
56 oauth
= generateOAuth(clientId
, clientSecret
);
58 Instance
.getConfig().setString(
59 Config
.LOGIN_FIMFICTION_APIKEY_TOKEN
, oauth
);
60 Instance
.getConfig().updateFile();
67 public String
getOAuth() {
72 protected boolean isHtml() {
77 public String
getSourceName() {
78 return "FimFiction.net";
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, "/");
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_html,authors_note_html";
91 String includes
= "author,chapters,tags";
93 String urlString
= String
.format(
94 "https://www.fimfiction.net/api/v2/stories/%s?" //
98 storyContent
, authorContent
, chapterContent
,//
101 // URL params must be URL-encoded: "[ ]" <-> "%5B %5D"
102 urlString
= urlString
.replace("[", "%5B").replace("]", "%5D");
104 URL url
= new URL(urlString
);
105 InputStream jsonIn
= Instance
.getCache().open(url
, this, false);
107 json
= IOUtils
.readSmallStream(jsonIn
);
114 protected InputStream
openInput(URL source
) throws IOException
{
119 protected MetaData
getMeta(URL source
, InputStream in
) throws IOException
{
120 MetaData meta
= new MetaData();
122 meta
.setTitle(getKeyJson(json
, 0, "type", "story", "title"));
123 meta
.setAuthor(getKeyJson(json
, 0, "type", "user", "name"));
124 meta
.setDate(getKeyJson(json
, 0, "type", "story", "date_published"));
125 meta
.setTags(getTags());
126 meta
.setSource(getSourceName());
127 meta
.setUrl(source
.toString());
128 meta
.setPublisher(getSourceName());
129 meta
.setUuid(source
.toString());
132 meta
.setSubject("MLP");
133 meta
.setType(getType().toString());
134 meta
.setImageDocument(false);
136 String coverImageLink
=
137 getKeyJson(json
, 0, "type", "story", "cover_image", "full");
138 if (!coverImageLink
.trim().isEmpty()) {
139 meta
.setCover(getImage(this, null, coverImageLink
.trim()));
145 private List
<String
> getTags() {
146 List
<String
> tags
= new ArrayList
<String
>();
151 pos
= indexOfJsonAfter(json
, pos
, "type", "story_tag");
153 tags
.add(getKeyJson(json
, pos
, "name").trim());
161 protected String
getDesc(URL source
, InputStream in
) {
162 String desc
= getKeyJson(json
, 0, "type", "story", "description");
163 return unbbcode(desc
);
167 protected List
<Entry
<String
, URL
>> getChapters(URL source
, InputStream in
,
169 List
<Entry
<String
, URL
>> urls
= new ArrayList
<Entry
<String
, URL
>>();
171 chapterNames
= new HashMap
<Integer
, String
>();
172 chapterContents
= new HashMap
<Integer
, String
>();
176 pos
= indexOfJsonAfter(json
, pos
, "type", "chapter");
178 int posNumber
= indexOfJsonAfter(json
, pos
, "chapter_number");
179 int posComa
= json
.indexOf(",", posNumber
);
180 final int number
= Integer
.parseInt(json
.substring(posNumber
,
182 final String title
= getKeyJson(json
, pos
, "title");
183 String notes
= getKeyJson(json
, pos
, "authors_note_html");
184 String content
= getKeyJson(json
, pos
, "content_html");
186 if (!notes
.trim().isEmpty()) {
187 notes
= "<br/>* * *<br/>" + notes
;
190 chapterNames
.put(number
, title
);
192 .put(number
, content
+ notes
);
194 urls
.add(new Entry
<String
, URL
>() {
196 public URL
setValue(URL value
) {
201 public String
getKey() {
206 public URL
getValue() {
217 protected String
getChapterContent(URL source
, InputStream in
, int number
,
219 return chapterContents
.get(number
);
223 protected boolean supports(URL url
) {
224 return "fimfiction.net".equals(url
.getHost())
225 || "www.fimfiction.net".equals(url
.getHost());
229 * Generate a new token from the client ID and secret.
231 * Note that those tokens are long-lived, and it would be badly seen to
232 * create a lot of them without due cause.
234 * So, please cache and re-use them.
237 * the client ID offered on FimFiction
238 * @param clientSecret
239 * the client secret that goes with it
241 * @return a new generated token linked to that client ID
243 * @throws IOException
244 * in case of I/O errors
246 static private String
generateOAuth(String clientId
, String clientSecret
)
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
,
256 String jsonToken
= IOUtils
.readSmallStream(in
);
258 // Extract token type and token from: {
259 // token_type = "Bearer",
260 // access_token = "xxxxxxxxxxxxxx"
263 String token
= getKeyText(jsonToken
, "\"access_token\"", "\"", "\"");
264 String tokenType
= getKeyText(jsonToken
, "\"token_type\"", "\"", "\"");
266 return tokenType
+ " " + token
;
269 // afters: [name, value] pairs (or "" for any of them), can end without
271 static private int indexOfJsonAfter(String json
, int startAt
,
272 String
... afterKeys
) {
273 ArrayList
<String
> afters
= new ArrayList
<String
>();
275 for (String key
: afterKeys
) {
276 if (key
!= null && !key
.isEmpty()) {
277 afters
.add("\"" + key
+ "\"");
290 return indexOfAfter(json
, startAt
, afters
.toArray(new String
[] {}));
293 // afters: [name, value] pairs (or "" for any of them), can end without
294 // value but will then be empty, not NULL
295 static private String
getKeyJson(String json
, int startAt
,
296 String
... afterKeys
) {
297 int pos
= indexOfJsonAfter(json
, startAt
, afterKeys
);
303 String wip
= json
.substring(pos
);
305 pos
= nextUnescapedQuote(wip
, 0);
307 wip
= wip
.substring(pos
+ 1);
308 pos
= nextUnescapedQuote(wip
, 0);
310 result
= wip
.substring(0, pos
);
314 result
= result
.replace("\\t", "\t")
315 .replace("\\\"", "\"");
320 // next " but don't take \" into account
321 static private int nextUnescapedQuote(String result
, int pos
) {
323 pos
= result
.indexOf("\"", pos
);
324 if (pos
== 0 || (pos
> 0 && result
.charAt(pos
- 1) != '\\')) {
328 if (pos
< result
.length()) {
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("\\[[^\\]]*\\]", "");