Merge from master
[nikiroo-utils.git] / library / WebLibrary.java
CommitLineData
f433d153
NR
1package be.nikiroo.fanfix.library;
2
3import java.io.File;
4import java.io.IOException;
5import java.io.InputStream;
6import java.net.URL;
7import java.util.ArrayList;
8import java.util.HashMap;
9import java.util.List;
10import java.util.Map;
11
12import org.json.JSONArray;
13import org.json.JSONObject;
14
15import be.nikiroo.fanfix.Instance;
4b3d19dc 16import be.nikiroo.fanfix.data.Chapter;
f433d153
NR
17import be.nikiroo.fanfix.data.JsonIO;
18import be.nikiroo.fanfix.data.MetaData;
4b3d19dc
NR
19import be.nikiroo.fanfix.data.Paragraph;
20import be.nikiroo.fanfix.data.Paragraph.ParagraphType;
f433d153
NR
21import be.nikiroo.fanfix.data.Story;
22import be.nikiroo.utils.IOUtils;
23import be.nikiroo.utils.Image;
24import be.nikiroo.utils.Progress;
c91f1830 25import be.nikiroo.utils.Version;
f433d153
NR
26
27/**
28 * This {@link BasicLibrary} will access a remote server to list the available
29 * stories, and download the ones you try to load to the local directory
30 * specified in the configuration.
31 * <p>
32 * This remote library uses http:// or https://.
33 *
34 * @author niki
35 */
36public class WebLibrary extends BasicLibrary {
37 private String host;
38 private int port;
39 private final String key;
40 private final String subkey;
41
42 // informative only (server will make the actual checks)
43 private boolean rw;
44
45 /**
46 * Create a {@link RemoteLibrary} linked to the given server.
47 * <p>
48 * Note that the key is structured:
49 * <tt><b><i>xxx</i></b>(|<b><i>yyy</i></b>|<b>wl</b>)(|<b>rw</b>)</tt>
50 * <p>
51 * Note that anything before the first pipe (<tt>|</tt>) character is
52 * considered to be the encryption key, anything after that character is
53 * called the subkey (including the other pipe characters and flags!).
54 * <p>
55 * This is important because the subkey (including the pipe characters and
56 * flags) must be present as-is in the server configuration file to be
57 * allowed.
58 * <ul>
59 * <li><b><i>xxx</i></b>: the encryption key used to communicate with the
60 * server</li>
61 * <li><b><i>yyy</i></b>: the secondary key</li>
62 * <li><b>rw</b>: flag to allow read and write access if it is not the
63 * default on this server</li>
64 * <li><b>wl</b>: flag to allow access to all the stories (bypassing the
65 * whitelist if it exists)</li>
66 * </ul>
67 * <p>
68 * Some examples:
69 * <ul>
70 * <li><b>my_key</b>: normal connection, will take the default server
71 * options</li>
72 * <li><b>my_key|agzyzz|wl</b>: will ask to bypass the white list (if it
73 * exists)</li>
74 * <li><b>my_key|agzyzz|rw</b>: will ask read-write access (if the default
75 * is read-only)</li>
76 * <li><b>my_key|agzyzz|wl|rw</b>: will ask both read-write access and white
77 * list bypass</li>
78 * </ul>
79 *
80 * @param key
81 * the key that will allow us to exchange information with the
82 * server
83 * @param host
84 * the host to contact or NULL for localhost
85 * @param port
86 * the port to contact it on
87 */
88 public WebLibrary(String key, String host, int port) {
89 int index = -1;
90 if (key != null) {
91 index = key.indexOf('|');
92 }
93
94 if (index >= 0) {
95 this.key = key.substring(0, index);
96 this.subkey = key.substring(index + 1);
97 } else {
98 this.key = key;
99 this.subkey = "";
100 }
101
102 this.rw = subkey.contains("|rw");
103
104 this.host = host;
105 this.port = port;
f433d153
NR
106 }
107
4536c5cf
NR
108 /**
109 * Return the version of the program running server-side.
110 * <p>
111 * Never returns NULL.
112 *
113 * @return the version or an empty {@link Version} if not known
114 */
c91f1830
NR
115 public Version getVersion() {
116 try {
4536c5cf 117 InputStream in = post(WebLibraryUrls.VERSION_URL);
c91f1830
NR
118 try {
119 return new Version(IOUtils.readSmallStream(in));
120 } finally {
121 in.close();
122 }
123 } catch (IOException e) {
124 }
125
126 return new Version();
127 }
128
f433d153
NR
129 @Override
130 public Status getStatus() {
131 try {
4536c5cf 132 post(WebLibraryUrls.INDEX_URL).close();
f433d153
NR
133 } catch (IOException e) {
134 try {
4536c5cf 135 post("/style.css").close();
f433d153
NR
136 return Status.UNAUTHORIZED;
137 } catch (IOException ioe) {
c91f1830 138 return Status.UNAVAILABLE;
f433d153
NR
139 }
140 }
141
142 return rw ? Status.READ_WRITE : Status.READ_ONLY;
143 }
144
145 @Override
146 public String getLibraryName() {
c91f1830
NR
147 return (rw ? "[READ-ONLY] " : "") + host + ":" + port + " ("
148 + getVersion() + ")";
f433d153
NR
149 }
150
151 @Override
152 public Image getCover(String luid) throws IOException {
4536c5cf 153 InputStream in = post(WebLibraryUrls.getStoryUrlCover(luid));
c91f1830 154 try {
f433d153 155 return new Image(in);
c91f1830
NR
156 } finally {
157 in.close();
f433d153 158 }
f433d153
NR
159 }
160
4b3d19dc 161 @Override
4536c5cf
NR
162 public Image getCustomSourceCover(String source) throws IOException {
163 InputStream in = post(WebLibraryUrls.getCoverUrlSource(source));
164 try {
165 return new Image(in);
166 } finally {
167 in.close();
168 }
4b3d19dc
NR
169 }
170
171 @Override
4536c5cf
NR
172 public Image getCustomAuthorCover(String author) throws IOException {
173 InputStream in = post(WebLibraryUrls.getCoverUrlAuthor(author));
174 try {
175 return new Image(in);
176 } finally {
177 in.close();
178 }
4b3d19dc
NR
179 }
180
f433d153
NR
181 @Override
182 public void setSourceCover(String source, String luid) throws IOException {
4536c5cf
NR
183 Map<String, String> post = new HashMap<String, String>();
184 post.put("luid", luid);
185 post(WebLibraryUrls.getCoverUrlSource(source), post).close();
f433d153
NR
186 }
187
188 @Override
189 public void setAuthorCover(String author, String luid) throws IOException {
4536c5cf
NR
190 Map<String, String> post = new HashMap<String, String>();
191 post.put("luid", luid);
192 post(WebLibraryUrls.getCoverUrlAuthor(author), post).close();
f433d153
NR
193 }
194
4b3d19dc
NR
195 @Override
196 public synchronized Story getStory(final String luid, Progress pg)
197 throws IOException {
4536c5cf
NR
198 if (pg == null) {
199 pg = new Progress();
200 }
4b3d19dc
NR
201
202 Story story;
4536c5cf 203 InputStream in = post(WebLibraryUrls.getStoryUrlJson(luid));
4b3d19dc
NR
204 try {
205 JSONObject json = new JSONObject(IOUtils.readSmallStream(in));
206 story = JsonIO.toStory(json);
207 } finally {
208 in.close();
209 }
210
4536c5cf
NR
211 int max = 0;
212 for (Chapter chap : story) {
213 max += chap.getParagraphs().size();
214 }
215 pg.setMinMax(0, max);
216
4b3d19dc
NR
217 story.getMeta().setCover(getCover(luid));
218 int chapNum = 1;
219 for (Chapter chap : story) {
220 int number = 1;
221 for (Paragraph para : chap) {
222 if (para.getType() == ParagraphType.IMAGE) {
4536c5cf 223 InputStream subin = post(
c91f1830 224 WebLibraryUrls.getStoryUrl(luid, chapNum, number));
4b3d19dc
NR
225 try {
226 para.setContentImage(new Image(subin));
227 } finally {
228 subin.close();
229 }
230 }
231
4536c5cf 232 pg.add(1);
4b3d19dc
NR
233 number++;
234 }
235
236 chapNum++;
237 }
238
4536c5cf 239 pg.done();
4b3d19dc
NR
240 return story;
241 }
242
f433d153
NR
243 @Override
244 protected List<MetaData> getMetas(Progress pg) throws IOException {
245 List<MetaData> metas = new ArrayList<MetaData>();
4536c5cf 246 InputStream in = post(WebLibraryUrls.LIST_URL_METADATA);
f433d153
NR
247 JSONArray jsonArr = new JSONArray(IOUtils.readSmallStream(in));
248 for (int i = 0; i < jsonArr.length(); i++) {
249 JSONObject json = jsonArr.getJSONObject(i);
250 metas.add(JsonIO.toMetaData(json));
251 }
252
253 return metas;
254 }
255
256 @Override
257 // Could work (more slowly) without it
258 public MetaData imprt(final URL url, Progress pg) throws IOException {
4536c5cf
NR
259 if (pg == null) {
260 pg = new Progress();
261 }
f433d153
NR
262
263 // Import the file locally if it is actually a file
264
265 if (url == null || url.getProtocol().equalsIgnoreCase("file")) {
266 return super.imprt(url, pg);
267 }
268
269 // Import it remotely if it is an URL
270
4536c5cf
NR
271 try {
272 String luid = null;
273
274 Map<String, String> post = new HashMap<String, String>();
275 post.put("url", url.toString());
276 InputStream in = post(WebLibraryUrls.IMPRT_URL_IMPORT, post);
277 try {
278 luid = IOUtils.readSmallStream(in);
279 } finally {
280 in.close();
281 }
282
283 Progress subPg = null;
284 do {
285 try {
286 Thread.sleep(2000);
287 } catch (InterruptedException e) {
288 }
289
290 in = post(WebLibraryUrls.getImprtProgressUrl(luid));
291 try {
292 subPg = JsonIO.toProgress(
293 new JSONObject(IOUtils.readSmallStream(in)));
294 } finally {
295 in.close();
296 }
297 } while (subPg != null);
298
299 in = post(WebLibraryUrls.getStoryUrlMetadata(luid));
300 try {
301 return JsonIO.toMetaData(
302 new JSONObject(IOUtils.readSmallStream(in)));
303 } finally {
304 in.close();
305 }
306 } finally {
307 pg.done();
308 }
f433d153
NR
309 }
310
311 @Override
312 // Could work (more slowly) without it
313 protected synchronized void changeSTA(final String luid,
314 final String newSource, final String newTitle,
315 final String newAuthor, Progress pg) throws IOException {
4536c5cf
NR
316 MetaData meta = getInfo(luid);
317 if (meta != null) {
318 if (!meta.getSource().equals(newSource)) {
319 Map<String, String> post = new HashMap<String, String>();
320 post.put("value", newSource);
321 post(WebLibraryUrls.getStoryUrlSource(luid), post).close();
322 }
323 if (!meta.getTitle().equals(newTitle)) {
324 Map<String, String> post = new HashMap<String, String>();
325 post.put("value", newTitle);
326 post(WebLibraryUrls.getStoryUrlTitle(luid), post).close();
327 }
328 if (!meta.getAuthor().equals(newAuthor)) {
329 Map<String, String> post = new HashMap<String, String>();
330 post.put("value", newAuthor);
331 post(WebLibraryUrls.getStoryUrlAuthor(luid), post).close();
332 }
333 }
f433d153
NR
334 }
335
336 @Override
337 protected void updateInfo(MetaData meta) {
338 // Will be taken care of directly server side
339 }
340
341 @Override
342 protected void invalidateInfo(String luid) {
343 // Will be taken care of directly server side
344 }
345
346 // The following methods are only used by Save and Delete in BasicLibrary:
347
348 @Override
4536c5cf 349 protected String getNextId() {
f433d153
NR
350 throw new java.lang.InternalError("Should not have been called");
351 }
352
353 @Override
354 protected void doDelete(String luid) throws IOException {
355 throw new java.lang.InternalError("Should not have been called");
356 }
357
358 @Override
359 protected Story doSave(Story story, Progress pg) throws IOException {
360 throw new java.lang.InternalError("Should not have been called");
361 }
362
363 //
364
365 @Override
366 public File getFile(final String luid, Progress pg) {
367 throw new java.lang.InternalError(
368 "Operation not supportorted on remote Libraries");
369 }
370
c91f1830 371 // starts with "/", never NULL
4536c5cf
NR
372 private InputStream post(String path) throws IOException {
373 return post(path, null);
374 }
375
376 // starts with "/", never NULL
377 private InputStream post(String path, Map<String, String> post)
378 throws IOException {
f433d153
NR
379 URL url = new URL(host + ":" + port + path);
380
4536c5cf
NR
381 if (post == null) {
382 post = new HashMap<String, String>();
383 }
f433d153
NR
384 post.put("login", subkey);
385 post.put("password", key);
386
387 return Instance.getInstance().getCache().openNoCache(url, null, post,
388 null, null);
389 }
390}