allow subkeys, step 2
[fanfix.git] / src / be / nikiroo / fanfix / library / RemoteLibraryServer.java
CommitLineData
e42573a0 1package be.nikiroo.fanfix.library;
b0e88ebd 2
b0e88ebd 3import java.io.IOException;
edf79e5e 4import java.net.URL;
651072f3 5import java.nio.file.AccessDeniedException;
74a40dfb 6import java.util.ArrayList;
9b863b20 7import java.util.Date;
9b558341 8import java.util.HashMap;
68e2c6d2 9import java.util.List;
9b558341 10import java.util.Map;
b0e88ebd 11
7e51d91c
NR
12import javax.net.ssl.SSLException;
13
e42573a0 14import be.nikiroo.fanfix.Instance;
fb25273c 15import be.nikiroo.fanfix.bundles.Config;
74a40dfb 16import be.nikiroo.fanfix.data.Chapter;
b0e88ebd 17import be.nikiroo.fanfix.data.MetaData;
74a40dfb 18import be.nikiroo.fanfix.data.Paragraph;
085a2f9a 19import be.nikiroo.fanfix.data.Story;
b9ce9cad
NR
20import be.nikiroo.utils.Progress;
21import be.nikiroo.utils.Progress.ProgressListener;
416c54f8 22import be.nikiroo.utils.StringUtils;
fb25273c 23import be.nikiroo.utils.Version;
62c63b07
NR
24import be.nikiroo.utils.serial.server.ConnectActionServerObject;
25import be.nikiroo.utils.serial.server.ServerObject;
b0e88ebd 26
a85e8077 27/**
ea734ab4 28 * Create a new remote server that will listen for orders on the given port.
a85e8077 29 * <p>
ea734ab4
N
30 * The available commands are given as arrays of objects (first item is the
31 * command, the rest are the arguments).
2a25f781 32 * <p>
fb25273c
NR
33 * All the commands are always prefixed by the subkey (which can be EMPTY if
34 * none).
35 * <p>
a85e8077 36 * <ul>
fb25273c
NR
37 * <li>PING: will return the mode if the key is accepted (mode can be: "r/o" or
38 * "r/w")</li>
ea734ab4
N
39 * <li>GET_METADATA *: will return the metadata of all the stories in the
40 * library (array)</li> *
37abe20c 41 * <li>GET_METADATA [luid]: will return the metadata of the story of LUID luid</li>
ea734ab4
N
42 * <li>GET_STORY [luid]: will return the given story if it exists (or NULL if
43 * not)</li>
44 * <li>SAVE_STORY [luid]: save the story (that must be sent just after the
0fa0fe95 45 * command) with the given LUID, then return the LUID</li>
37abe20c
NR
46 * <li>IMPORT [url]: save the story found at the given URL, then return the LUID
47 * </li>
ea734ab4
N
48 * <li>DELETE_STORY [luid]: delete the story of LUID luid</li>
49 * <li>GET_COVER [luid]: return the cover of the story</li>
50 * <li>GET_CUSTOM_COVER ["SOURCE"|"AUTHOR"] [source]: return the cover for this
51 * source/author</li>
52 * <li>SET_COVER ["SOURCE"|"AUTHOR"] [value] [luid]: set the default cover for
53 * the given source/author to the cover of the story denoted by luid</li>
54 * <li>CHANGE_SOURCE [luid] [new source]: change the source of the story of LUID
55 * luid</li>
56 * <li>EXIT: stop the server</li>
a85e8077
NR
57 * </ul>
58 *
59 * @author niki
60 */
62c63b07 61public class RemoteLibraryServer extends ServerObject {
9b558341
NR
62 private Map<Long, String> commands = new HashMap<Long, String>();
63 private Map<Long, Long> times = new HashMap<Long, Long>();
fb25273c
NR
64 private Map<Long, Boolean> wls = new HashMap<Long, Boolean>();
65 private Map<Long, Boolean> rws = new HashMap<Long, Boolean>();
9b558341 66
a85e8077
NR
67 /**
68 * Create a new remote server (will not be active until
69 * {@link RemoteLibraryServer#start()} is called).
fb25273c
NR
70 * <p>
71 * Note: the key we use here is the encryption key (it must not contain a
72 * subkey).
a85e8077 73 *
2070ced5
NR
74 * @param key
75 * the key that will restrict access to this server
a85e8077
NR
76 * @param port
77 * the port to listen on
78 *
79 * @throws IOException
80 * in case of I/O error
81 */
2070ced5 82 public RemoteLibraryServer(String key, int port) throws IOException {
3040c4f0 83 super("Fanfix remote library", port, key);
b9ce9cad 84 setTraceHandler(Instance.getTraceHandler());
b0e88ebd
NR
85 }
86
87 @Override
fb25273c
NR
88 protected Object onRequest(ConnectActionServerObject action,
89 Version clientVersion, Object data, long id) throws Exception {
ea734ab4
N
90 long start = new Date().getTime();
91
fb25273c
NR
92 // defaults are positive (as previous versions without the feature)
93 boolean rw = true;
94 boolean wl = true;
95
96 String subkey = "";
085a2f9a
NR
97 String command = "";
98 Object[] args = new Object[0];
99 if (data instanceof Object[]) {
2070ced5 100 Object[] dataArray = (Object[]) data;
27eba894 101 if (dataArray.length > 0) {
fb25273c
NR
102 subkey = "" + dataArray[0];
103 }
104 if (dataArray.length > 1) {
105 command = "" + dataArray[1];
106
107 args = new Object[dataArray.length - 2];
108 for (int i = 2; i < dataArray.length; i++) {
109 args[i - 2] = dataArray[i];
110 }
111 }
112 }
113
114 List<String> whitelist = Instance.getConfig().getList(
115 Config.SERVER_WHITELIST);
116 if (whitelist == null) {
117 whitelist = new ArrayList<String>();
118 }
119
120 if (whitelist.isEmpty()) {
121 wl = false;
122 }
edf79e5e 123
fb25273c
NR
124 rw = Instance.getConfig().getBoolean(Config.SERVER_RW, rw);
125 if (!subkey.isEmpty()) {
126 List<String> allowed = Instance.getConfig().getList(
127 Config.SERVER_ALLOWED_SUBKEYS);
128 if (allowed.contains(subkey)) {
129 if ((subkey + "|").contains("|rw|")) {
130 rw = true;
131 }
132 if ((subkey + "|").contains("|wl|")) {
133 wl = false; // |wl| = bypass whitelist
651072f3 134 whitelist = new ArrayList<String>();
2070ced5 135 }
b0e88ebd
NR
136 }
137 }
138
fb25273c
NR
139 String mode = display(wl, rw);
140
141 String trace = mode + "[ " + command + "] ";
085a2f9a 142 for (Object arg : args) {
b9ce9cad 143 trace += arg + " ";
085a2f9a 144 }
49f3dec5 145 System.out.println(trace);
b0e88ebd 146
fb25273c 147 Object rep = doRequest(action, command, args, rw, whitelist);
9f51d8ab 148
9b558341 149 commands.put(id, command);
fb25273c
NR
150 wls.put(id, wl);
151 rws.put(id, rw);
9b558341 152 times.put(id, (new Date().getTime() - start));
9f51d8ab
NR
153
154 return rep;
155 }
156
fb25273c
NR
157 private String display(boolean whitelist, boolean rw) {
158 String mode = "";
159 if (!rw) {
160 mode += "RO: ";
161 }
162 if (whitelist) {
163 mode += "WL: ";
164 }
165
166 return mode;
167 }
168
9b558341
NR
169 @Override
170 protected void onRequestDone(long id, long bytesReceived, long bytesSent) {
fb25273c
NR
171 boolean whitelist = wls.get(id);
172 boolean rw = rws.get(id);
173 wls.remove(id);
174 rws.remove(id);
175
9b558341
NR
176 String rec = StringUtils.formatNumber(bytesReceived) + "b";
177 String sent = StringUtils.formatNumber(bytesSent) + "b";
fb25273c
NR
178 System.out.println(String.format("%s[>%s]: (%s sent, %s rec) in %d ms",
179 display(whitelist, rw), commands.get(id), sent, rec,
180 times.get(id)));
181
9b558341
NR
182 commands.remove(id);
183 times.remove(id);
184 }
185
9f51d8ab 186 private Object doRequest(ConnectActionServerObject action, String command,
fb25273c
NR
187 Object[] args, boolean rw, List<String> whitelist)
188 throws NoSuchFieldException, NoSuchMethodException,
9f51d8ab 189 ClassNotFoundException, IOException {
3bbc86a5 190 if ("PING".equals(command)) {
fb25273c 191 return rw ? "r/w" : "r/o";
3bbc86a5 192 } else if ("GET_METADATA".equals(command)) {
651072f3
NR
193 List<MetaData> metas = new ArrayList<MetaData>();
194
7efece85 195 if ("*".equals(args[0])) {
9b863b20 196 Progress pg = createPgForwarder(action);
9f51d8ab 197
9f51d8ab
NR
198 for (MetaData meta : Instance.getLibrary().getMetas(pg)) {
199 MetaData light;
200 if (meta.getCover() == null) {
201 light = meta;
202 } else {
203 light = meta.clone();
204 light.setCover(null);
205 }
206
207 metas.add(light);
208 }
209
9b863b20 210 forcePgDoneSent(pg);
651072f3
NR
211 } else {
212 metas.add(Instance.getLibrary().getInfo((String) args[0]));
213 }
214
215 if (!whitelist.isEmpty()) {
216 for (int i = 0; i < metas.size(); i++) {
217 if (!whitelist.contains(metas.get(i).getSource())) {
218 metas.remove(i);
219 i--;
220 }
221 }
a85e8077 222 }
e272f05f 223
651072f3 224 return metas.toArray(new MetaData[0]);
a85e8077 225 } else if ("GET_STORY".equals(command)) {
7efece85 226 MetaData meta = Instance.getLibrary().getInfo((String) args[0]);
651072f3
NR
227 if (meta == null) {
228 return null;
229 }
230
231 if (!whitelist.isEmpty()) {
232 if (!whitelist.contains(meta.getSource())) {
233 return null;
234 }
235 }
236
b9ce9cad
NR
237 meta = meta.clone();
238 meta.setCover(null);
239
240 action.send(meta);
241 action.rec();
242
37abe20c
NR
243 Story story = Instance.getLibrary()
244 .getStory((String) args[0], null);
b9ce9cad
NR
245 for (Object obj : breakStory(story)) {
246 action.send(obj);
247 action.rec();
248 }
085a2f9a 249 } else if ("SAVE_STORY".equals(command)) {
651072f3
NR
250 if (!rw) {
251 throw new AccessDeniedException("" + args[0], null,
252 "Read-Only remote library");
253 }
254
b9ce9cad
NR
255 List<Object> list = new ArrayList<Object>();
256
257 action.send(null);
258 Object obj = action.rec();
259 while (obj != null) {
260 list.add(obj);
261 action.send(null);
262 obj = action.rec();
263 }
264
265 Story story = rebuildStory(list);
7efece85 266 Instance.getLibrary().save(story, (String) args[0], null);
0fa0fe95 267 return story.getMeta().getLuid();
edf79e5e 268 } else if ("IMPORT".equals(command)) {
651072f3
NR
269 if (!rw) {
270 throw new AccessDeniedException("" + args[0], null,
271 "Read-Only remote library");
272 }
273
9b863b20 274 Progress pg = createPgForwarder(action);
37abe20c
NR
275 Story story = Instance.getLibrary().imprt(
276 new URL((String) args[0]), pg);
9b863b20 277 forcePgDoneSent(pg);
edf79e5e 278 return story.getMeta().getLuid();
085a2f9a 279 } else if ("DELETE_STORY".equals(command)) {
651072f3
NR
280 if (!rw) {
281 throw new AccessDeniedException("" + args[0], null,
282 "Read-Only remote library");
283 }
284
7efece85 285 Instance.getLibrary().delete((String) args[0]);
e604986c 286 } else if ("GET_COVER".equals(command)) {
7efece85 287 return Instance.getLibrary().getCover((String) args[0]);
3989dfc5
NR
288 } else if ("GET_CUSTOM_COVER".equals(command)) {
289 if ("SOURCE".equals(args[0])) {
37abe20c
NR
290 return Instance.getLibrary().getCustomSourceCover(
291 (String) args[1]);
3989dfc5 292 } else if ("AUTHOR".equals(args[0])) {
37abe20c
NR
293 return Instance.getLibrary().getCustomAuthorCover(
294 (String) args[1]);
3989dfc5
NR
295 } else {
296 return null;
297 }
298 } else if ("SET_COVER".equals(command)) {
651072f3
NR
299 if (!rw) {
300 throw new AccessDeniedException("" + args[0], "" + args[1],
301 "Read-Only remote library");
302 }
303
3989dfc5
NR
304 if ("SOURCE".equals(args[0])) {
305 Instance.getLibrary().setSourceCover((String) args[1],
306 (String) args[2]);
307 } else if ("AUTHOR".equals(args[0])) {
308 Instance.getLibrary().setAuthorCover((String) args[1],
309 (String) args[2]);
310 }
c8d48938 311 } else if ("CHANGE_STA".equals(command)) {
651072f3
NR
312 if (!rw) {
313 throw new AccessDeniedException("" + args[0], "" + args[1],
314 "Read-Only remote library");
315 }
316
9b863b20 317 Progress pg = createPgForwarder(action);
c8d48938
NR
318 Instance.getLibrary().changeSTA((String) args[0], (String) args[1],
319 (String) args[2], (String) args[3], pg);
9b863b20 320 forcePgDoneSent(pg);
5e848e6a 321 } else if ("EXIT".equals(command)) {
651072f3
NR
322 if (!rw) {
323 throw new AccessDeniedException("EXIT", "",
324 "Read-Only remote library, cannot close it");
325 }
326
5e848e6a 327 stop(0, false);
b0e88ebd
NR
328 }
329
330 return null;
331 }
74a40dfb 332
b9ce9cad
NR
333 @Override
334 protected void onError(Exception e) {
7e51d91c
NR
335 if (e instanceof SSLException) {
336 System.out.println("[Client connection refused (bad key)]");
337 } else {
338 getTraceHandler().error(e);
339 }
b9ce9cad 340 }
74a40dfb 341
b9ce9cad
NR
342 /**
343 * Break a story in multiple {@link Object}s for easier serialisation.
344 *
345 * @param story
346 * the {@link Story} to break
347 *
348 * @return the list of {@link Object}s
349 */
350 static List<Object> breakStory(Story story) {
351 List<Object> list = new ArrayList<Object>();
74a40dfb
NR
352
353 story = story.clone();
b9ce9cad 354 list.add(story);
74a40dfb 355
b9ce9cad
NR
356 if (story.getMeta().isImageDocument()) {
357 for (Chapter chap : story) {
358 list.add(chap);
359 list.addAll(chap.getParagraphs());
360 chap.setParagraphs(new ArrayList<Paragraph>());
74a40dfb 361 }
b9ce9cad 362 story.setChapters(new ArrayList<Chapter>());
74a40dfb 363 }
74a40dfb 364
b9ce9cad
NR
365 return list;
366 }
74a40dfb 367
b9ce9cad
NR
368 /**
369 * Rebuild a story from a list of broke up {@link Story} parts.
370 *
371 * @param list
372 * the list of {@link Story} parts
373 *
374 * @return the reconstructed {@link Story}
375 */
376 static Story rebuildStory(List<Object> list) {
74a40dfb 377 Story story = null;
b9ce9cad 378 Chapter chap = null;
74a40dfb 379
b9ce9cad
NR
380 for (Object obj : list) {
381 if (obj instanceof Story) {
382 story = (Story) obj;
383 } else if (obj instanceof Chapter) {
384 chap = (Chapter) obj;
385 story.getChapters().add(chap);
386 } else if (obj instanceof Paragraph) {
387 chap.getParagraphs().add((Paragraph) obj);
74a40dfb
NR
388 }
389 }
390
391 return story;
392 }
393
b9ce9cad
NR
394 /**
395 * Update the {@link Progress} with the adequate {@link Object} received
396 * from the network via {@link RemoteLibraryServer}.
397 *
398 * @param pg
399 * the {@link Progress} to update
400 * @param rep
401 * the object received from the network
402 *
403 * @return TRUE if it was a progress event, FALSE if not
404 */
405 static boolean updateProgress(Progress pg, Object rep) {
406 if (rep instanceof Integer[]) {
407 Integer[] a = (Integer[]) rep;
408 if (a.length == 3) {
409 int min = a[0];
410 int max = a[1];
411 int progress = a[2];
412
413 if (min >= 0 && min <= max) {
414 pg.setMinMax(min, max);
415 pg.setProgress(progress);
416
417 return true;
418 }
419 }
74a40dfb 420 }
b9ce9cad
NR
421
422 return false;
74a40dfb
NR
423 }
424
b9ce9cad
NR
425 /**
426 * Create a {@link Progress} that will forward its progress over the
427 * network.
428 *
429 * @param action
430 * the {@link ConnectActionServerObject} to use to forward it
431 *
432 * @return the {@link Progress}
433 */
49f3dec5 434 private Progress createPgForwarder(final ConnectActionServerObject action) {
9b863b20
NR
435 final Boolean[] isDoneForwarded = new Boolean[] { false };
436 final Progress pg = new Progress() {
437 @Override
438 public boolean isDone() {
439 return isDoneForwarded[0];
440 }
441 };
442
b9ce9cad 443 final Integer[] p = new Integer[] { -1, -1, -1 };
9b863b20 444 final Long[] lastTime = new Long[] { new Date().getTime() };
b9ce9cad
NR
445 pg.addProgressListener(new ProgressListener() {
446 @Override
447 public void progress(Progress progress, String name) {
448 int min = pg.getMin();
449 int max = pg.getMax();
37abe20c
NR
450 int relativeProgress = min
451 + (int) Math.round(pg.getRelativeProgress()
452 * (max - min));
b9ce9cad 453
9b863b20
NR
454 // Do not re-send the same value twice over the wire,
455 // unless more than 2 seconds have elapsed (to maintain the
456 // connection)
457 if ((p[0] != min || p[1] != max || p[2] != relativeProgress)
458 || (new Date().getTime() - lastTime[0] > 2000)) {
b9ce9cad
NR
459 p[0] = min;
460 p[1] = max;
461 p[2] = relativeProgress;
462
463 try {
37abe20c 464 action.send(new Integer[] { min, max, relativeProgress });
b9ce9cad
NR
465 action.rec();
466 } catch (Exception e) {
49f3dec5 467 getTraceHandler().error(e);
b9ce9cad 468 }
9b863b20 469
9b863b20 470 lastTime[0] = new Date().getTime();
b9ce9cad 471 }
652fd9b0
NR
472
473 isDoneForwarded[0] = (pg.getProgress() >= pg.getMax());
b9ce9cad
NR
474 }
475 });
476
477 return pg;
74a40dfb 478 }
9b863b20
NR
479
480 // with 30 seconds timeout
49f3dec5 481 private void forcePgDoneSent(Progress pg) {
9b863b20
NR
482 long start = new Date().getTime();
483 pg.done();
484 while (!pg.isDone() && new Date().getTime() - start < 30000) {
485 try {
486 Thread.sleep(100);
487 } catch (InterruptedException e) {
49f3dec5 488 getTraceHandler().error(e);
9b863b20
NR
489 }
490 }
491 }
b0e88ebd 492}