import be.nikiroo.fanfix.data.Story;
import be.nikiroo.utils.Image;
import be.nikiroo.utils.Progress;
-import be.nikiroo.utils.StringUtils;
import be.nikiroo.utils.Version;
import be.nikiroo.utils.serial.server.ConnectActionClientObject;
@Override
public void action(Version serverVersion) throws Exception {
try {
- Object rep = sendCmd(this, new Object[] { "PING" });
+ Object rep = send(new Object[] { "PING" });
if ("PONG".equals(rep)) {
result[0] = Status.READY;
new ConnectActionClientObject(host, port, key) {
@Override
public void action(Version serverVersion) throws Exception {
- Object rep = sendCmd(this,
- new Object[] { "GET_COVER", luid });
+ Object rep = send(new Object[] { "GET_COVER", luid });
result[0] = (Image) rep;
}
new ConnectActionClientObject(host, port, key) {
@Override
public void action(Version serverVersion) throws Exception {
- Object rep = sendCmd(this, new Object[] {
- "GET_CUSTOM_COVER", type, source });
+ Object rep = send(new Object[] { "GET_CUSTOM_COVER", type,
+ source });
result[0] = (Image) rep;
}
pg = new Progress();
}
- Object rep = sendCmd(this,
- new Object[] { "GET_STORY", luid });
+ Object rep = send(new Object[] { "GET_STORY", luid });
MetaData meta = null;
if (rep instanceof MetaData) {
pg.setMinMax(0, (int) story.getMeta().getWords());
}
- sendCmd(this, new Object[] { "SAVE_STORY", luid });
+ send(new Object[] { "SAVE_STORY", luid });
List<Object> list = RemoteLibraryServer.breakStory(story);
for (Object obj : list) {
new ConnectActionClientObject(host, port, key) {
@Override
public void action(Version serverVersion) throws Exception {
- sendCmd(this, new Object[] { "DELETE_STORY", luid });
+ send(new Object[] { "DELETE_STORY", luid });
}
@Override
new ConnectActionClientObject(host, port, key) {
@Override
public void action(Version serverVersion) throws Exception {
- sendCmd(this,
- new Object[] { "SET_COVER", type, value, luid });
+ send(new Object[] { "SET_COVER", type, value, luid });
}
@Override
public void action(Version serverVersion) throws Exception {
Progress pg = pgF;
- Object rep = sendCmd(this,
- new Object[] { "IMPORT", url.toString() });
+ Object rep = send(new Object[] { "IMPORT", url.toString() });
while (true) {
if (!RemoteLibraryServer.updateProgress(pg, rep)) {
public void action(Version serverVersion) throws Exception {
Progress pg = pgF;
- Object rep = sendCmd(this, new Object[] { "CHANGE_STA",
- luid, newSource, newTitle, newAuthor });
+ Object rep = send(new Object[] { "CHANGE_STA", luid,
+ newSource, newTitle, newAuthor });
while (true) {
if (!RemoteLibraryServer.updateProgress(pg, rep)) {
break;
new ConnectActionClientObject(host, port, key) {
@Override
public void action(Version serverVersion) throws Exception {
- sendCmd(this, new Object[] { "EXIT" });
+ send(new Object[] { "EXIT" });
}
@Override
pg = new Progress();
}
- Object rep = sendCmd(this, new Object[] { "GET_METADATA",
- luid });
+ Object rep = send(new Object[] { "GET_METADATA", luid });
while (true) {
if (!RemoteLibraryServer.updateProgress(pg, rep)) {
return metas;
}
-
- // IllegalArgumentException if key is bad
- private Object sendCmd(ConnectActionClientObject action, Object[] params)
- throws IOException, NoSuchFieldException, NoSuchMethodException,
- ClassNotFoundException {
- Object rep = action.send(params);
-
- String hash = hashKey(key, "" + rep);
- return action.send(hash);
- }
-
- /**
- * Return a hash that corresponds to the given key and the given random
- * value.
- *
- * @param key
- * the key (the secret)
- *
- * @param random
- * the random value
- *
- * @return a hash that was computed using both
- */
- static String hashKey(String key, String random) {
- return StringUtils.getMd5Hash(key + " <==> " + random);
- }
}
* The available commands are given as arrays of objects (first item is the
* command, the rest are the arguments).
* <p>
- * All commands, including PING, will first return a random value to you that
- * you must hash with your key and return before processing the rest; if the
- * value not correct, the connection will be closed.
- * <p>
- * BTW: this system <b>is by no means secure</b>. It is just slightly
- * obfuscated, and operate on clear text (because Google decided not to support
- * anonymous SSL exchanges on Android, and the main use case for this server is
- * Android).
* <ul>
* <li>PING: will return PONG if the key is accepted</li>
* <li>GET_METADATA *: will return the metadata of all the stories in the
* @author niki
*/
public class RemoteLibraryServer extends ServerObject {
- private final String key;
-
/**
* Create a new remote server (will not be active until
* {@link RemoteLibraryServer#start()} is called).
*/
public RemoteLibraryServer(String key, int port) throws IOException {
super("Fanfix remote library", port, key);
- this.key = key;
setTraceHandler(Instance.getTraceHandler());
}
}
System.out.println(trace);
- // Authentication:
- String random = StringUtils.getMd5Hash(Double.toString(Math.random()));
- action.send(random);
- String answer = "" + action.rec();
-
- if (!answer.equals(RemoteLibrary.hashKey(key, random))) {
- System.out.println("Key rejected.");
- action.close();
- return null;
- }
- //
-
Object rep = doRequest(action, command, args);
String rec = StringUtils.formatNumber(action.getBytesReceived()) + "b";