mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-23 04:41:16 +00:00
Improved handling of query parameters
This commit is contained in:
parent
28407d2e94
commit
2646205620
7 changed files with 130 additions and 85 deletions
|
@ -1,10 +1,15 @@
|
||||||
package com.nutomic.syncthingandroid.http;
|
package com.nutomic.syncthingandroid.http;
|
||||||
|
|
||||||
|
import android.support.annotation.Nullable;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
import android.util.Pair;
|
import android.util.Pair;
|
||||||
|
|
||||||
|
import com.google.common.base.Optional;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
import javax.net.ssl.HttpsURLConnection;
|
import javax.net.ssl.HttpsURLConnection;
|
||||||
|
|
||||||
|
@ -13,7 +18,7 @@ import javax.net.ssl.HttpsURLConnection;
|
||||||
* Performs a GET request with no parameters to the URL in uri[0] with the path in uri[1] and
|
* Performs a GET request with no parameters to the URL in uri[0] with the path in uri[1] and
|
||||||
* returns the result as a String.
|
* returns the result as a String.
|
||||||
*/
|
*/
|
||||||
public class GetTask extends RestTask<String, Void> {
|
public class GetTask extends RestTask<Void, Void> {
|
||||||
|
|
||||||
private static final String TAG = "GetTask";
|
private static final String TAG = "GetTask";
|
||||||
|
|
||||||
|
@ -26,18 +31,18 @@ public class GetTask extends RestTask<String, Void> {
|
||||||
public static final String URI_REPORT = "/rest/svc/report";
|
public static final String URI_REPORT = "/rest/svc/report";
|
||||||
public static final String URI_EVENTS = "/rest/events";
|
public static final String URI_EVENTS = "/rest/events";
|
||||||
|
|
||||||
|
private final Map<String, String> mParams;
|
||||||
|
|
||||||
public GetTask(URL url, String path, String httpsCertPath, String apiKey,
|
public GetTask(URL url, String path, String httpsCertPath, String apiKey,
|
||||||
OnSuccessListener listener) {
|
@Nullable Map<String, String> params, OnSuccessListener listener) {
|
||||||
super(url, path, httpsCertPath, apiKey, listener);
|
super(url, path, httpsCertPath, apiKey, listener);
|
||||||
|
mParams = Optional.fromNullable(params).or(Collections.emptyMap());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param params Keys and values for the query string.
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
protected Pair<Boolean, String> doInBackground(String... params) {
|
protected Pair<Boolean, String> doInBackground(Void... aVoid) {
|
||||||
try {
|
try {
|
||||||
HttpsURLConnection connection = openConnection(params);
|
HttpsURLConnection connection = openConnection(mParams);
|
||||||
Log.v(TAG, "Calling Rest API at " + connection.getURL());
|
Log.v(TAG, "Calling Rest API at " + connection.getURL());
|
||||||
return connect(connection);
|
return connect(connection);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
|
|
@ -4,8 +4,11 @@ package com.nutomic.syncthingandroid.http;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
import android.util.Pair;
|
import android.util.Pair;
|
||||||
|
|
||||||
|
import com.google.common.collect.Maps;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
|
import java.util.Collections;
|
||||||
|
|
||||||
import javax.net.ssl.HttpsURLConnection;
|
import javax.net.ssl.HttpsURLConnection;
|
||||||
|
|
||||||
|
@ -32,7 +35,7 @@ public class PollWebGuiAvailableTask extends RestTask<Void, Void> {
|
||||||
int status = 0;
|
int status = 0;
|
||||||
do {
|
do {
|
||||||
try {
|
try {
|
||||||
HttpsURLConnection connection = openConnection();
|
HttpsURLConnection connection = openConnection(Collections.emptyMap());
|
||||||
connection.connect();
|
connection.connect();
|
||||||
status = connection.getResponseCode();
|
status = connection.getResponseCode();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
|
|
@ -0,0 +1,43 @@
|
||||||
|
package com.nutomic.syncthingandroid.http;
|
||||||
|
|
||||||
|
import android.util.Log;
|
||||||
|
import android.util.Pair;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.OutputStream;
|
||||||
|
import java.net.URL;
|
||||||
|
import java.util.Collections;
|
||||||
|
|
||||||
|
import javax.net.ssl.HttpsURLConnection;
|
||||||
|
|
||||||
|
public class PostConfigTask extends RestTask<Void, Void> {
|
||||||
|
|
||||||
|
private static final String TAG = "PostConfigTask";
|
||||||
|
|
||||||
|
private static final String URI_CONFIG = "/rest/system/config";
|
||||||
|
|
||||||
|
private final String mConfig;
|
||||||
|
|
||||||
|
public PostConfigTask(URL url, String httpsCertPath, String apiKey, String config,
|
||||||
|
OnSuccessListener listener) {
|
||||||
|
super(url, URI_CONFIG, httpsCertPath, apiKey, listener);
|
||||||
|
mConfig = config;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Pair<Boolean, String> doInBackground(Void... params) {
|
||||||
|
try {
|
||||||
|
HttpsURLConnection connection = openConnection(Collections.emptyMap());
|
||||||
|
connection.setRequestMethod("POST");
|
||||||
|
Log.v(TAG, "Calling Rest API at " + connection.getURL());
|
||||||
|
|
||||||
|
OutputStream os = connection.getOutputStream();
|
||||||
|
os.write(mConfig.getBytes("UTF-8"));
|
||||||
|
return connect(connection);
|
||||||
|
} catch (IOException e) {
|
||||||
|
Log.w(TAG, "Failed to call rest api", e);
|
||||||
|
return new Pair<>(false, null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,40 @@
|
||||||
|
package com.nutomic.syncthingandroid.http;
|
||||||
|
|
||||||
|
import android.util.Log;
|
||||||
|
import android.util.Pair;
|
||||||
|
|
||||||
|
import com.google.common.collect.ImmutableMap;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.net.URL;
|
||||||
|
|
||||||
|
import javax.net.ssl.HttpsURLConnection;
|
||||||
|
|
||||||
|
public class PostScanTask extends RestTask<Void, Void> {
|
||||||
|
|
||||||
|
private static final String TAG = "PostScanTask";
|
||||||
|
|
||||||
|
private static final String URI_SCAN = "/rest/db/scan";
|
||||||
|
|
||||||
|
private final String mFolder;
|
||||||
|
private final String mSub;
|
||||||
|
|
||||||
|
public PostScanTask(URL url, String httpsCertPath, String apiKey, String folder, String sub) {
|
||||||
|
super(url, URI_SCAN, httpsCertPath, apiKey, null);
|
||||||
|
mFolder = folder;
|
||||||
|
mSub = sub;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Pair<Boolean, String> doInBackground(Void... params) {
|
||||||
|
try {
|
||||||
|
HttpsURLConnection connection = openConnection(ImmutableMap.of("folder", mFolder, "sub", mSub));
|
||||||
|
connection.setRequestMethod("POST");
|
||||||
|
return connect(connection);
|
||||||
|
} catch (IOException e) {
|
||||||
|
Log.w(TAG, "Failed to call rest api", e);
|
||||||
|
return new Pair<>(false, null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -1,52 +0,0 @@
|
||||||
package com.nutomic.syncthingandroid.http;
|
|
||||||
|
|
||||||
import android.util.Log;
|
|
||||||
import android.util.Pair;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.OutputStream;
|
|
||||||
import java.net.URL;
|
|
||||||
|
|
||||||
import javax.net.ssl.HttpsURLConnection;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sends a POST request to the Syncthing API.
|
|
||||||
*/
|
|
||||||
public class PostTask extends RestTask<String, Void> {
|
|
||||||
|
|
||||||
private static final String TAG = "PostTask";
|
|
||||||
|
|
||||||
public static final String URI_CONFIG = "/rest/system/config";
|
|
||||||
public static final String URI_SCAN = "/rest/db/scan";
|
|
||||||
|
|
||||||
public PostTask(URL url, String path, String httpsCertPath, String apiKey,
|
|
||||||
OnSuccessListener listener) {
|
|
||||||
super(url, path, httpsCertPath, apiKey, listener);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* For {@link #URI_CONFIG}, params[0] must contain the config.
|
|
||||||
*
|
|
||||||
* For {@link #URI_SCAN}, params[0] must contain the folder, and params[1] the subfolder.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
protected Pair<Boolean, String> doInBackground(String... params) {
|
|
||||||
try {
|
|
||||||
HttpsURLConnection connection = (mPath.equals(URI_SCAN))
|
|
||||||
? openConnection("folder", params[0], "sub", params[1])
|
|
||||||
: openConnection();
|
|
||||||
connection.setRequestMethod("POST");
|
|
||||||
Log.v(TAG, "Calling Rest API at " + connection.getURL());
|
|
||||||
|
|
||||||
if (mPath.equals(URI_CONFIG)) {
|
|
||||||
OutputStream os = connection.getOutputStream();
|
|
||||||
os.write(params[0].getBytes("UTF-8"));
|
|
||||||
}
|
|
||||||
return connect(connection);
|
|
||||||
} catch (IOException e) {
|
|
||||||
Log.w(TAG, "Failed to call rest api", e);
|
|
||||||
return new Pair<>(false, null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -4,6 +4,7 @@ package com.nutomic.syncthingandroid.http;
|
||||||
import android.annotation.SuppressLint;
|
import android.annotation.SuppressLint;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.AsyncTask;
|
import android.os.AsyncTask;
|
||||||
|
import android.support.annotation.Nullable;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
import android.util.Pair;
|
import android.util.Pair;
|
||||||
|
|
||||||
|
@ -26,6 +27,7 @@ import java.security.SignatureException;
|
||||||
import java.security.cert.CertificateException;
|
import java.security.cert.CertificateException;
|
||||||
import java.security.cert.CertificateFactory;
|
import java.security.cert.CertificateFactory;
|
||||||
import java.security.cert.X509Certificate;
|
import java.security.cert.X509Certificate;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
import javax.net.ssl.HttpsURLConnection;
|
import javax.net.ssl.HttpsURLConnection;
|
||||||
import javax.net.ssl.SSLContext;
|
import javax.net.ssl.SSLContext;
|
||||||
|
@ -62,14 +64,15 @@ public abstract class RestTask<Params, Progress> extends
|
||||||
mListener = listener;
|
mListener = listener;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected HttpsURLConnection openConnection(String... params) throws IOException {
|
protected HttpsURLConnection openConnection(Map<String, String> params) throws IOException {
|
||||||
Uri.Builder uriBuilder = Uri.parse(mUrl.toString())
|
Uri.Builder uriBuilder = Uri.parse(mUrl.toString())
|
||||||
.buildUpon()
|
.buildUpon()
|
||||||
.path(mPath);
|
.path(mPath);
|
||||||
for (int paramCounter = 0; paramCounter + 1 < params.length; ) {
|
for (Map.Entry<String, String> entry : params.entrySet()) {
|
||||||
uriBuilder.appendQueryParameter(params[paramCounter++], params[paramCounter++]);
|
uriBuilder.appendQueryParameter(entry.getKey(), entry.getValue());
|
||||||
}
|
}
|
||||||
URL url = new URL(uriBuilder.build().toString());
|
URL url = new URL(uriBuilder.build().toString());
|
||||||
|
Log.v(TAG, "Calling Rest API at " + url);
|
||||||
|
|
||||||
HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();
|
HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();
|
||||||
connection.setRequestProperty(HEADER_API_KEY, mApiKey);
|
connection.setRequestProperty(HEADER_API_KEY, mApiKey);
|
||||||
|
|
|
@ -4,10 +4,10 @@ import android.app.Activity;
|
||||||
import android.app.NotificationManager;
|
import android.app.NotificationManager;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.os.AsyncTask;
|
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
|
||||||
import com.google.common.base.Objects;
|
import com.google.common.base.Objects;
|
||||||
|
import com.google.common.collect.ImmutableMap;
|
||||||
import com.google.common.reflect.TypeToken;
|
import com.google.common.reflect.TypeToken;
|
||||||
import com.google.gson.Gson;
|
import com.google.gson.Gson;
|
||||||
import com.google.gson.GsonBuilder;
|
import com.google.gson.GsonBuilder;
|
||||||
|
@ -18,7 +18,8 @@ import com.google.gson.JsonParser;
|
||||||
import com.nutomic.syncthingandroid.BuildConfig;
|
import com.nutomic.syncthingandroid.BuildConfig;
|
||||||
import com.nutomic.syncthingandroid.activities.RestartActivity;
|
import com.nutomic.syncthingandroid.activities.RestartActivity;
|
||||||
import com.nutomic.syncthingandroid.http.GetTask;
|
import com.nutomic.syncthingandroid.http.GetTask;
|
||||||
import com.nutomic.syncthingandroid.http.PostTask;
|
import com.nutomic.syncthingandroid.http.PostConfigTask;
|
||||||
|
import com.nutomic.syncthingandroid.http.PostScanTask;
|
||||||
import com.nutomic.syncthingandroid.model.Config;
|
import com.nutomic.syncthingandroid.model.Config;
|
||||||
import com.nutomic.syncthingandroid.model.Connection;
|
import com.nutomic.syncthingandroid.model.Connection;
|
||||||
import com.nutomic.syncthingandroid.model.Device;
|
import com.nutomic.syncthingandroid.model.Device;
|
||||||
|
@ -29,7 +30,6 @@ import com.nutomic.syncthingandroid.model.Options;
|
||||||
import com.nutomic.syncthingandroid.model.SystemInfo;
|
import com.nutomic.syncthingandroid.model.SystemInfo;
|
||||||
import com.nutomic.syncthingandroid.model.SystemVersion;
|
import com.nutomic.syncthingandroid.model.SystemVersion;
|
||||||
import com.nutomic.syncthingandroid.util.FolderObserver;
|
import com.nutomic.syncthingandroid.util.FolderObserver;
|
||||||
import com.nutomic.syncthingandroid.util.Util;
|
|
||||||
|
|
||||||
import org.json.JSONArray;
|
import org.json.JSONArray;
|
||||||
import org.json.JSONException;
|
import org.json.JSONException;
|
||||||
|
@ -130,13 +130,13 @@ public class RestApi implements SyncthingService.OnWebGuiAvailableListener,
|
||||||
@Override
|
@Override
|
||||||
public void onWebGuiAvailable() {
|
public void onWebGuiAvailable() {
|
||||||
mAvailableCount.set(0);
|
mAvailableCount.set(0);
|
||||||
new GetTask(mUrl, GetTask.URI_VERSION, mHttpsCertPath, mApiKey, result -> {
|
new GetTask(mUrl, GetTask.URI_VERSION, mHttpsCertPath, mApiKey, null, result -> {
|
||||||
JsonObject json = new JsonParser().parse(result).getAsJsonObject();
|
JsonObject json = new JsonParser().parse(result).getAsJsonObject();
|
||||||
mVersion = json.get("version").getAsString();
|
mVersion = json.get("version").getAsString();
|
||||||
Log.i(TAG, "Syncthing version is " + mVersion);
|
Log.i(TAG, "Syncthing version is " + mVersion);
|
||||||
tryIsAvailable();
|
tryIsAvailable();
|
||||||
}).execute();
|
}).execute();
|
||||||
new GetTask(mUrl, GetTask.URI_CONFIG, mHttpsCertPath, mApiKey, result -> {
|
new GetTask(mUrl, GetTask.URI_CONFIG, mHttpsCertPath, mApiKey, null, result -> {
|
||||||
mConfig = new Gson().fromJson(result, Config.class);
|
mConfig = new Gson().fromJson(result, Config.class);
|
||||||
tryIsAvailable();
|
tryIsAvailable();
|
||||||
}).execute();
|
}).execute();
|
||||||
|
@ -194,19 +194,19 @@ public class RestApi implements SyncthingService.OnWebGuiAvailableListener,
|
||||||
* Sends current config to Syncthing.
|
* Sends current config to Syncthing.
|
||||||
*/
|
*/
|
||||||
private void sendConfig() {
|
private void sendConfig() {
|
||||||
new PostTask(mUrl, PostTask.URI_CONFIG, mHttpsCertPath, mApiKey, null)
|
new PostConfigTask(mUrl, mHttpsCertPath, mApiKey, new Gson().toJson(mConfig), null)
|
||||||
.execute(new Gson().toJson(mConfig));
|
.execute();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sends current config and restarts Syncthing.
|
* Sends current config and restarts Syncthing.
|
||||||
*/
|
*/
|
||||||
public void restart() {
|
public void restart() {
|
||||||
new PostTask(mUrl, PostTask.URI_CONFIG, mHttpsCertPath, mApiKey, result -> {
|
new PostConfigTask(mUrl, mHttpsCertPath, mApiKey, new Gson().toJson(mConfig), result -> {
|
||||||
Intent intent = new Intent(mContext, SyncthingService.class)
|
Intent intent = new Intent(mContext, SyncthingService.class)
|
||||||
.setAction(SyncthingService.ACTION_RESTART);
|
.setAction(SyncthingService.ACTION_RESTART);
|
||||||
mContext.startService(intent);
|
mContext.startService(intent);
|
||||||
}).execute(new Gson().toJson(mConfig));
|
}).execute();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -310,7 +310,7 @@ public class RestApi implements SyncthingService.OnWebGuiAvailableListener,
|
||||||
* @param listener Callback invoked when the result is received.
|
* @param listener Callback invoked when the result is received.
|
||||||
*/
|
*/
|
||||||
public void getSystemInfo(OnResultListener1<SystemInfo> listener) {
|
public void getSystemInfo(OnResultListener1<SystemInfo> listener) {
|
||||||
new GetTask(mUrl, GetTask.URI_SYSTEM, mHttpsCertPath, mApiKey, result -> {
|
new GetTask(mUrl, GetTask.URI_SYSTEM, mHttpsCertPath, mApiKey, null, result -> {
|
||||||
listener.onResult(new Gson().fromJson(result, SystemInfo.class));
|
listener.onResult(new Gson().fromJson(result, SystemInfo.class));
|
||||||
}).execute();
|
}).execute();
|
||||||
}
|
}
|
||||||
|
@ -321,7 +321,7 @@ public class RestApi implements SyncthingService.OnWebGuiAvailableListener,
|
||||||
* @param listener Callback invoked when the result is received.
|
* @param listener Callback invoked when the result is received.
|
||||||
*/
|
*/
|
||||||
public void getSystemVersion(OnResultListener1<SystemVersion> listener) {
|
public void getSystemVersion(OnResultListener1<SystemVersion> listener) {
|
||||||
new GetTask(mUrl, GetTask.URI_VERSION, mHttpsCertPath, mApiKey, result -> {
|
new GetTask(mUrl, GetTask.URI_VERSION, mHttpsCertPath, mApiKey, null, result -> {
|
||||||
SystemVersion systemVersion = new Gson().fromJson(result, SystemVersion.class);
|
SystemVersion systemVersion = new Gson().fromJson(result, SystemVersion.class);
|
||||||
listener.onResult(systemVersion);
|
listener.onResult(systemVersion);
|
||||||
}).execute();
|
}).execute();
|
||||||
|
@ -342,7 +342,7 @@ public class RestApi implements SyncthingService.OnWebGuiAvailableListener,
|
||||||
* The result is cached internally. Do not modify it or any of its contents.
|
* The result is cached internally. Do not modify it or any of its contents.
|
||||||
*/
|
*/
|
||||||
public void getConnections(final OnResultListener1<Map<String, Connection>> listener) {
|
public void getConnections(final OnResultListener1<Map<String, Connection>> listener) {
|
||||||
new GetTask(mUrl, GetTask.URI_CONNECTIONS, mHttpsCertPath, mApiKey, result -> {
|
new GetTask(mUrl, GetTask.URI_CONNECTIONS, mHttpsCertPath, mApiKey, null, result -> {
|
||||||
Long now = System.currentTimeMillis();
|
Long now = System.currentTimeMillis();
|
||||||
Long timeElapsed = (now - mPreviousConnectionTime) / 1000;
|
Long timeElapsed = (now - mPreviousConnectionTime) / 1000;
|
||||||
if (timeElapsed < 1) {
|
if (timeElapsed < 1) {
|
||||||
|
@ -451,11 +451,12 @@ public class RestApi implements SyncthingService.OnWebGuiAvailableListener,
|
||||||
* Returns status information about the folder with the given id.
|
* Returns status information about the folder with the given id.
|
||||||
*/
|
*/
|
||||||
public void getModel(final String folderId, final OnResultListener2<String, Model> listener) {
|
public void getModel(final String folderId, final OnResultListener2<String, Model> listener) {
|
||||||
new GetTask(mUrl, GetTask.URI_MODEL, mHttpsCertPath, mApiKey, result -> {
|
new GetTask(mUrl, GetTask.URI_MODEL, mHttpsCertPath, mApiKey,
|
||||||
|
ImmutableMap.of("folder", folderId), result -> {
|
||||||
Model m = new Gson().fromJson(result, Model.class);
|
Model m = new Gson().fromJson(result, Model.class);
|
||||||
mCachedModelInfo.put(folderId, m);
|
mCachedModelInfo.put(folderId, m);
|
||||||
listener.onResult(folderId, m);
|
listener.onResult(folderId, m);
|
||||||
}).execute("folder", folderId);
|
}).execute();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -464,7 +465,9 @@ public class RestApi implements SyncthingService.OnWebGuiAvailableListener,
|
||||||
* The OnReceiveEventListeners onEvent method is called for each event.
|
* The OnReceiveEventListeners onEvent method is called for each event.
|
||||||
*/
|
*/
|
||||||
public final void getEvents(final long sinceId, final long limit, final OnReceiveEventListener listener) {
|
public final void getEvents(final long sinceId, final long limit, final OnReceiveEventListener listener) {
|
||||||
new GetTask(mUrl, GetTask.URI_EVENTS, mHttpsCertPath, mApiKey, result -> {
|
Map<String, String> params =
|
||||||
|
ImmutableMap.of("since", String.valueOf(sinceId), "limit", String.valueOf(limit));
|
||||||
|
new GetTask(mUrl, GetTask.URI_EVENTS, mHttpsCertPath, mApiKey, params, result -> {
|
||||||
JsonArray jsonEvents = new JsonParser().parse(result).getAsJsonArray();
|
JsonArray jsonEvents = new JsonParser().parse(result).getAsJsonArray();
|
||||||
long lastId = 0;
|
long lastId = 0;
|
||||||
|
|
||||||
|
@ -479,8 +482,7 @@ public class RestApi implements SyncthingService.OnWebGuiAvailableListener,
|
||||||
}
|
}
|
||||||
|
|
||||||
listener.onDone(lastId);
|
listener.onDone(lastId);
|
||||||
}).executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR,
|
}).execute();
|
||||||
"since", String.valueOf(sinceId), "limit", String.valueOf(limit));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -488,7 +490,8 @@ public class RestApi implements SyncthingService.OnWebGuiAvailableListener,
|
||||||
*/
|
*/
|
||||||
public void normalizeDeviceId(String id, OnResultListener1<String> listener,
|
public void normalizeDeviceId(String id, OnResultListener1<String> listener,
|
||||||
OnResultListener1<String> errorListener) {
|
OnResultListener1<String> errorListener) {
|
||||||
new GetTask(mUrl, GetTask.URI_DEVICEID, mHttpsCertPath, mApiKey, result -> {
|
new GetTask(mUrl, GetTask.URI_DEVICEID, mHttpsCertPath, mApiKey, ImmutableMap.of("id", id),
|
||||||
|
result -> {
|
||||||
JsonObject json = new JsonParser().parse(result).getAsJsonObject();
|
JsonObject json = new JsonParser().parse(result).getAsJsonObject();
|
||||||
JsonElement normalizedId = json.get("id");
|
JsonElement normalizedId = json.get("id");
|
||||||
JsonElement error = json.get("error");
|
JsonElement error = json.get("error");
|
||||||
|
@ -496,7 +499,7 @@ public class RestApi implements SyncthingService.OnWebGuiAvailableListener,
|
||||||
listener.onResult(normalizedId.getAsString());
|
listener.onResult(normalizedId.getAsString());
|
||||||
if (error != null)
|
if (error != null)
|
||||||
errorListener.onResult(error.getAsString());
|
errorListener.onResult(error.getAsString());
|
||||||
}).execute("id", id);
|
}).execute();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -504,8 +507,8 @@ public class RestApi implements SyncthingService.OnWebGuiAvailableListener,
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void onFolderFileChange(String folderId, String relativePath) {
|
public void onFolderFileChange(String folderId, String relativePath) {
|
||||||
new PostTask(mUrl, PostTask.URI_SCAN, mHttpsCertPath, mApiKey, null)
|
new PostScanTask(mUrl, mHttpsCertPath, mApiKey, folderId, relativePath)
|
||||||
.execute(folderId, relativePath);
|
.execute();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -524,7 +527,7 @@ public class RestApi implements SyncthingService.OnWebGuiAvailableListener,
|
||||||
* Returns prettyfied usage report.
|
* Returns prettyfied usage report.
|
||||||
*/
|
*/
|
||||||
public void getUsageReport(final OnResultListener1<String> listener) {
|
public void getUsageReport(final OnResultListener1<String> listener) {
|
||||||
new GetTask(mUrl, GetTask.URI_REPORT, mHttpsCertPath, mApiKey, result -> {
|
new GetTask(mUrl, GetTask.URI_REPORT, mHttpsCertPath, mApiKey, null, result -> {
|
||||||
JsonElement json = new JsonParser().parse(result);
|
JsonElement json = new JsonParser().parse(result);
|
||||||
Gson gson = new GsonBuilder().setPrettyPrinting().create();
|
Gson gson = new GsonBuilder().setPrettyPrinting().create();
|
||||||
listener.onResult(gson.toJson(json));
|
listener.onResult(gson.toJson(json));
|
||||||
|
|
Loading…
Reference in a new issue