X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Fsupported%2FFimfictionApi.java;h=b2d75df98b9c06437c21bf776843f32ad75b2675;hb=a8209dd0972f751e59153dd80a53f3062042897a;hp=59b593ec7aecedea5cb24c4f91b10f6819b172d6;hpb=d9a94285b568e80cba1d5b85d67829839d1d5029;p=nikiroo-utils.git diff --git a/src/be/nikiroo/fanfix/supported/FimfictionApi.java b/src/be/nikiroo/fanfix/supported/FimfictionApi.java index 59b593e..b2d75df 100644 --- a/src/be/nikiroo/fanfix/supported/FimfictionApi.java +++ b/src/be/nikiroo/fanfix/supported/FimfictionApi.java @@ -160,14 +160,7 @@ class FimfictionApi extends BasicSupport { @Override protected String getDesc(URL source, InputStream in) { String desc = getKeyJson(json, 0, "type", "story", "description"); - - // TODO: if the description becomes available in html, use it - desc = desc.replace("\\r\\n", "
"); - desc = desc.replace("[i]", "_").replace("[/i]", "_") - .replace("[b]", "*").replace("[/b]", "*"); - desc = desc.replaceAll("\\[[^\\]]*\\]", ""); - - return desc; + return unbbcode(desc); } @Override @@ -228,6 +221,24 @@ class FimfictionApi extends BasicSupport { || "www.fimfiction.net".equals(url.getHost()); } + /** + * Generate a new token from the client ID and secret. + *

+ * Note that those tokens are long-lived, and it would be badly seen to + * create a lot of them without due cause. + *

+ * So, please cache and re-use them. + * + * @param clientId + * the client ID offered on FimFiction + * @param clientSecret + * the client secret that goes with it + * + * @return a new generated token linked to that client ID + * + * @throws IOException + * in case of I/O errors + */ static private String generateOAuth(String clientId, String clientSecret) throws IOException { URL url = new URL("https://www.fimfiction.net/api/v2/token"); @@ -241,18 +252,13 @@ class FimfictionApi extends BasicSupport { String jsonToken = IOUtils.readSmallStream(in); // Extract token type and token from: { - // token_type = "bearer", + // token_type = "Bearer", // access_token = "xxxxxxxxxxxxxx" // } String token = getKeyText(jsonToken, "\"access_token\"", "\"", "\""); String tokenType = getKeyText(jsonToken, "\"token_type\"", "\"", "\""); - // TODO: remove this once the bug is fixed on the server side - if ("bearer".equals(tokenType)) { - tokenType = "Bearer"; - } - return tokenType + " " + token; } @@ -319,4 +325,13 @@ class FimfictionApi extends BasicSupport { return pos; } + + // quick & dirty filter + static private String unbbcode(String bbcode) { + String text = bbcode.replace("\\r\\n", "
") // + .replace("[i]", "_").replace("[/i]", "_") // + .replace("[b]", "*").replace("[/b]", "*") // + .replaceAll("\\[[^\\]]*\\]", ""); + return text; + } }