Remote: now with a pin code
[nikiroo-utils.git] / src / be / nikiroo / fanfix / library / RemoteLibraryServer.java
CommitLineData
e42573a0 1package be.nikiroo.fanfix.library;
b0e88ebd 2
b0e88ebd 3import java.io.IOException;
085a2f9a 4import java.security.InvalidParameterException;
68e2c6d2 5import java.util.List;
b0e88ebd 6
e42573a0 7import be.nikiroo.fanfix.Instance;
b0e88ebd 8import be.nikiroo.fanfix.data.MetaData;
085a2f9a 9import be.nikiroo.fanfix.data.Story;
b0e88ebd
NR
10import be.nikiroo.utils.Version;
11import be.nikiroo.utils.serial.ConnectActionServer;
12import be.nikiroo.utils.serial.Server;
13
a85e8077
NR
14/**
15 * Create a new remote server that will listen for order on the given port.
16 * <p>
2070ced5
NR
17 * The available commands are given as String arrays (first item is the key,
18 * second is the command, the rest are the arguments):
a85e8077 19 * <ul>
2070ced5 20 * <li>KEY GET_METADATA *: will return the metadata of all the stories in the
085a2f9a 21 * library</li>
2070ced5
NR
22 * <li>KEY GET_STORY [luid]: will return the given story if it exists (or NULL
23 * if not)</li>
24 * <li>KEY SAVE_STORY [story] [luid]: save the story with the given LUID</li>
25 * <li>KEY DELETE_STORY [luid]: delete the story of LUID luid</li>
26 * <li>KEY GET_COVER [luid]: return the cover of the story</li>
27 * <li>KEY GET_SOURCE_COVER [source]: return the cover for this source</li>
28 * <li>KEY SET_SOURCE_COVER [source], [luid]: set the default cover for the
29 * given source to the cover of the story denoted by luid</li>
30 * <li>KEY EXIT: stop the server</li>
a85e8077
NR
31 * </ul>
32 *
33 * @author niki
34 */
b0e88ebd 35public class RemoteLibraryServer extends Server {
2070ced5 36 private final String key;
b0e88ebd 37
a85e8077
NR
38 /**
39 * Create a new remote server (will not be active until
40 * {@link RemoteLibraryServer#start()} is called).
41 *
2070ced5
NR
42 * @param key
43 * the key that will restrict access to this server
a85e8077
NR
44 * @param port
45 * the port to listen on
46 *
47 * @throws IOException
48 * in case of I/O error
49 */
2070ced5 50 public RemoteLibraryServer(String key, int port) throws IOException {
a85e8077 51 super(port, true);
2070ced5 52 this.key = key;
b0e88ebd
NR
53 }
54
55 @Override
56 protected Object onRequest(ConnectActionServer action,
57 Version clientVersion, Object data) throws Exception {
085a2f9a 58
2070ced5 59 String key = "";
085a2f9a
NR
60 String command = "";
61 Object[] args = new Object[0];
62 if (data instanceof Object[]) {
2070ced5
NR
63 Object[] dataArray = (Object[]) data;
64 if (dataArray.length >= 2) {
65 args = new Object[dataArray.length - 2];
66 for (int i = 2; i < dataArray.length; i++) {
67 args[i] = dataArray[i];
68 }
69
70 key = "" + dataArray[0];
71 command = "" + dataArray[1];
b0e88ebd
NR
72 }
73 }
74
2070ced5 75 System.out.print("[" + command + "] ");
085a2f9a
NR
76 for (Object arg : args) {
77 System.out.print(arg + " ");
78 }
79 System.out.println("");
b0e88ebd 80
2070ced5
NR
81 if (!key.equals(this.key)) {
82 System.out.println("Key rejected.");
83 throw new SecurityException("Invalid key");
84 }
85
a85e8077
NR
86 // TODO: progress (+send name + %age info back to client)
87
88 if ("GET_METADATA".equals(command)) {
2070ced5 89 if (args[0].equals("*")) {
a85e8077
NR
90 List<MetaData> metas = Instance.getLibrary().getMetas(null);
91 return metas.toArray(new MetaData[] {});
92 }
085a2f9a 93 throw new InvalidParameterException(
2070ced5 94 "only * is valid here, but you passed: " + args[0]);
a85e8077 95 } else if ("GET_STORY".equals(command)) {
2070ced5 96 return Instance.getLibrary().getStory("" + args[0], null);
085a2f9a 97 } else if ("SAVE_STORY".equals(command)) {
2070ced5 98 Instance.getLibrary().save((Story) args[0], "" + args[1], null);
085a2f9a 99 } else if ("DELETE_STORY".equals(command)) {
2070ced5 100 Instance.getLibrary().delete("" + args[0]);
e604986c 101 } else if ("GET_COVER".equals(command)) {
2070ced5 102 return Instance.getLibrary().getCover("" + args[0]);
085a2f9a 103 } else if ("GET_SOURCE_COVER".equals(command)) {
2070ced5 104 return Instance.getLibrary().getSourceCover("" + args[0]);
085a2f9a 105 } else if ("SET_SOURCE_COVER".equals(command)) {
2070ced5 106 Instance.getLibrary().setSourceCover("" + args[0], "" + args[1]);
5e848e6a
NR
107 } else if ("EXIT".equals(command)) {
108 stop(0, false);
b0e88ebd
NR
109 }
110
111 return null;
112 }
113}