aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
Diffstat (limited to 'backends')
-rw-r--r--backends/cloud/dropbox/dropboxstorage.cpp41
-rw-r--r--backends/cloud/dropbox/dropboxstorage.h4
-rw-r--r--backends/networking/curl/curljsonrequest.cpp2
-rw-r--r--backends/networking/curl/curljsonrequest.h2
-rw-r--r--backends/networking/curl/request.h6
5 files changed, 48 insertions, 7 deletions
diff --git a/backends/cloud/dropbox/dropboxstorage.cpp b/backends/cloud/dropbox/dropboxstorage.cpp
index f2270f79cd..94bdb43450 100644
--- a/backends/cloud/dropbox/dropboxstorage.cpp
+++ b/backends/cloud/dropbox/dropboxstorage.cpp
@@ -92,6 +92,30 @@ void infoCallback(Networking::Request* request, void *jsonPointer) {
}
}
+void info2Callback(Networking::Request* request, void *jsonPointer) {
+ if (!request) {
+ warning("infoCallback: got NULL instead of Request");
+
+ Common::JSONValue *json = (Common::JSONValue *)jsonPointer;
+ if (json) delete json; //yeah I know we can delete NULL safely
+ return;
+ }
+
+ Common::BaseCallback *callback = (Common::BaseCallback *)request->pointer();
+
+ Common::JSONValue *json = (Common::JSONValue *)jsonPointer;
+ if (json) {
+ //Common::JSONObject result = json->asObject();
+ if (callback) {
+ (*callback)(new StorageInfo(json->stringify()));
+ delete callback;
+ }
+ delete json;
+ } else {
+ warning("infoCallback: got NULL instead of JSON!");
+ }
+}
+
DropboxStorage::DropboxStorage(Common::String accessToken, Common::String userId): _token(accessToken), _uid(userId) {
curl_global_init(CURL_GLOBAL_ALL);
}
@@ -104,9 +128,14 @@ void syncSavesInfoCallback(StorageInfo info) {
debug("info: %s", info.info().c_str());
}
+void DropboxStorage::infoMethodCallback(void *storageInfo) {
+ StorageInfo *info = (StorageInfo *)storageInfo;
+ debug("info: %s", info->info().c_str());
+}
+
void DropboxStorage::syncSaves(OperationCallback callback) {
- //this is not the real syncSaves() implementation
- info(syncSavesInfoCallback);
+ //this is not the real syncSaves() implementation
+ info2(new Common::Callback<DropboxStorage>(this, &DropboxStorage::infoMethodCallback));
}
void DropboxStorage::info(InfoCallback callback) {
@@ -117,6 +146,14 @@ void DropboxStorage::info(InfoCallback callback) {
request->setPointer(callback);
}
+void DropboxStorage::info2(Common::Callback<DropboxStorage> *callback) {
+ Networking::CurlJsonRequest *request = new Networking::CurlJsonRequest(info2Callback, "https://api.dropboxapi.com/1/account/info");
+ request->addHeader("Authorization: Bearer " + _token);
+ ConnMan.addRequest(request);
+
+ request->setPointer(callback);
+}
+
DropboxStorage *DropboxStorage::loadFromConfig() {
KEY = ConfMan.get("DROPBOX_KEY", "cloud");
SECRET = ConfMan.get("DROPBOX_SECRET", "cloud");
diff --git a/backends/cloud/dropbox/dropboxstorage.h b/backends/cloud/dropbox/dropboxstorage.h
index d60dec29de..1cf657bc36 100644
--- a/backends/cloud/dropbox/dropboxstorage.h
+++ b/backends/cloud/dropbox/dropboxstorage.h
@@ -25,6 +25,7 @@
#include "backends/cloud/storage.h"
#include "backends/cloud/manager.h"
+#include "common/callback.h"
namespace Cloud {
namespace Dropbox {
@@ -39,6 +40,8 @@ class DropboxStorage: public Cloud::Storage {
static void getAccessToken(Common::String code);
+ void infoMethodCallback(void *serviceInfoPtr);
+
public:
virtual ~DropboxStorage();
@@ -65,6 +68,7 @@ public:
/** Returns pointer to the ServiceInfo struct. */
virtual void info(InfoCallback callback);
+ void info2(Common::Callback<DropboxStorage> *callback);
/** Returns whether saves sync process is running. */
virtual bool isSyncing() { return false; } //TODO
diff --git a/backends/networking/curl/curljsonrequest.cpp b/backends/networking/curl/curljsonrequest.cpp
index 929723c671..fe6e218269 100644
--- a/backends/networking/curl/curljsonrequest.cpp
+++ b/backends/networking/curl/curljsonrequest.cpp
@@ -31,7 +31,7 @@
namespace Networking {
-CurlJsonRequest::CurlJsonRequest(Callback cb, const char *url) : Request(cb), _stream(0), _headersList(0), _contentsStream(DisposeAfterUse::YES) {
+CurlJsonRequest::CurlJsonRequest(SimpleCallback cb, const char *url) : Request(cb), _stream(0), _headersList(0), _contentsStream(DisposeAfterUse::YES) {
_url = url;
}
diff --git a/backends/networking/curl/curljsonrequest.h b/backends/networking/curl/curljsonrequest.h
index cbf3f6dd56..56e7205512 100644
--- a/backends/networking/curl/curljsonrequest.h
+++ b/backends/networking/curl/curljsonrequest.h
@@ -43,7 +43,7 @@ class CurlJsonRequest : public Request {
char *getPreparedContents();
public:
- CurlJsonRequest(Callback cb, const char *url);
+ CurlJsonRequest(SimpleCallback cb, const char *url);
virtual ~CurlJsonRequest();
virtual bool handle();
diff --git a/backends/networking/curl/request.h b/backends/networking/curl/request.h
index d405ec8551..b9571075cb 100644
--- a/backends/networking/curl/request.h
+++ b/backends/networking/curl/request.h
@@ -27,14 +27,14 @@ namespace Networking {
class Request {
protected:
- typedef void(*Callback)(Request* request, void *result);
+ typedef void(*SimpleCallback)(Request* request, void *result);
/**
* Callback, which should be called before Request returns true in handle().
* That's the way Requests pass the result to the code which asked to create this request.
*/
- Callback _callback;
+ SimpleCallback _callback;
/**
* Pointer, which could be set by Request creating code. It might be accessed
@@ -44,7 +44,7 @@ protected:
void *_pointer;
public:
- Request(Callback cb): _callback(cb) {};
+ Request(SimpleCallback cb): _callback(cb) {};
virtual ~Request() {};
/**