1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
#ifndef _DROPBOX_API_OPERATIONS_H_
#define _DROPBOX_API_OPERATIONS_H_
class ShareRequest : public HttpRequest
{
public:
ShareRequest(const char *token, const char *path, time_t expires = 0) :
HttpRequest(REQUEST_POST, DROPBOX_API_RPC "/sharing/create_shared_link_with_settings")
{
AddBearerAuthHeader(token);
AddHeader("Content-Type", "application/json");
JSONNode root(JSON_NODE);
root << JSONNode("path", path);
if (expires)
root << JSONNode("expires", (unsigned int)expires);
json_string data = root.write();
SetData(data.c_str(), data.length());
}
};
class DeleteRequest : public HttpRequest
{
public:
DeleteRequest(const char *token, const char *path) :
HttpRequest(REQUEST_POST, DROPBOX_API_RPC "/files/delete")
{
AddBearerAuthHeader(token);
AddHeader("Content-Type", "application/json");
JSONNode root(JSON_NODE);
root << JSONNode("path", path);
json_string data = root.write();
SetData(data.c_str(), data.length());
}
};
class CreateFolderRequest : public HttpRequest
{
public:
CreateFolderRequest(const char *token, const char *path) :
HttpRequest(REQUEST_POST, DROPBOX_API_RPC "/files/create_folder")
{
AddBearerAuthHeader(token);
AddHeader("Content-Type", "application/json");
JSONNode root(JSON_NODE);
root << JSONNode("path", path);
json_string data = root.write();
SetData(data.c_str(), data.length());
}
};
class GetMetadataRequest : public HttpRequest
{
public:
GetMetadataRequest(const char *token, const char *path) :
HttpRequest(REQUEST_POST, DROPBOX_API_RPC "/files/get_metadata")
{
AddBearerAuthHeader(token);
AddHeader("Content-Type", "application/json");
JSONNode root(JSON_NODE);
root << JSONNode("path", path);
json_string data = root.write();
SetData(data.c_str(), data.length());
}
};
class ListFolderRequest : public HttpRequest
{
public:
ListFolderRequest(const char *token, const char *path) :
HttpRequest(REQUEST_POST, DROPBOX_API_RPC "/files/list_folder")
{
AddBearerAuthHeader(token);
AddHeader("Content-Type", "application/json");
JSONNode root(JSON_NODE);
root << JSONNode("path", path);
json_string data = root.write();
SetData(data.c_str(), data.length());
}
};
#endif //_DROPBOX_API_OPERATIONS_H_
|