forked from jannotti/cpp-algorand-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclients.cpp
387 lines (325 loc) · 10 KB
/
clients.cpp
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
#include "algorand.h"
#include <iostream>
#include <sstream>
#include <curl/curl.h>
#include <rapidjson/ostreamwrapper.h>
#include <rapidjson/prettywriter.h>
typedef std::map<std::string, std::string> string_map;
static std::string
url_escape(const std::string& s) {
// passing nullptr is something that is done in the curl source for
// this function, so it seems safe.
auto encoded = curl_easy_escape(nullptr, s.c_str(), s.length());
auto as_string(encoded);
curl_free(encoded);
return as_string;
}
static std::string
url_parameters(const string_map& map) {
std::string params;
for (auto const& kv : map) {
params += (params.empty() ? "?" : "&");
params += url_escape(kv.first) + "=" + url_escape(kv.second);
}
return params;
}
static int
curl_request(const std::string& url,
const std::string& method = "GET",
const std::vector<std::string>& headers = {},
const std::string& request_body = "",
const std::string* response_body = nullptr);
std::string
maybe_env(std::string name, std::string def) {
const char* found = getenv(name.c_str());
if (found)
return found;
return def;
}
std::string
require_env(std::string name) {
const char* found = getenv(name.c_str());
if (!found) {
std::cerr << name << " is not set in the environment." << std::endl;
exit(1);
}
return found;
}
AlgodClient::AlgodClient() :
AlgodClient(require_env("ALGOD_ADDRESS"), require_env("ALGOD_TOKEN")) {
}
AlgodClient::AlgodClient(std::string address, std::string token) :
RestClient(address, "X-Algo-API-Token: "+token) {
}
bool
AlgodClient::healthy(void) {
auto resp(get("/health"));
return resp.status == 200;
}
JsonResponse
AlgodClient::genesis(void) {
return get("/genesis");
}
std::string
AlgodClient::metrics(void) {
// Candidate for refactoring to avoid repetition
std::string response_body;
int status = curl_request(prefix + "/metrics", "GET",
{authorization},
"", &response_body);
if (status == 200)
return response_body;
return "";
}
std::string
AlgodClient::account_url(std::string address) {
return "/v2/accounts/" + address + "?format=json";
}
JsonResponse
AlgodClient::account(std::string address) {
assert(!address.empty());
return get(account_url(address));
}
JsonResponse
AlgodClient::transactions_pending(std::string address, unsigned max) {
assert(!address.empty());
return get("/v2/accounts/" + address +
"/transactions/pending?format=json&max=" + std::to_string(max));
}
JsonResponse
AlgodClient::application(std::string id) {
assert(!id.empty());
return get("/v2/applications/" + id);
}
std::string
AlgodClient::asset_url(std::string id) {
return "/v2/assets/" + id;
}
JsonResponse
AlgodClient::asset(std::string id) {
assert(!id.empty());
return get(asset_url(id));
}
JsonResponse
AlgodClient::block(uint64_t round) {
return get("/v2/blocks/" + std::to_string(round) + "?format=json");
}
JsonResponse
AlgodClient::catchup(std::string catchpoint) {
return post("/v2/catchup/" + catchpoint);
}
JsonResponse
AlgodClient::abort_catchup(std::string catchpoint) {
return api("/v2/catchup/" + catchpoint, "DELETE");
}
JsonResponse AlgodClient::supply() {
return get("/v2/ledger/supply");
}
JsonResponse
AlgodClient::register_participation_key(std::string address,
uint64_t fee,
uint64_t kd,
bool nw,
uint64_t lv) {
string_map params = {{"fee", std::to_string(fee)},
{"key-dilution", std::to_string(kd)},
{"no-wait", std::to_string(nw)},
{"round-last-valid", std::to_string(lv)}};
return post("/v2/register-participation-keys/"+address+url_parameters(params));
}
JsonResponse
AlgodClient::status() {
return get("/v2/status");
}
JsonResponse
AlgodClient::status_after(uint64_t block) {
return get("/v2/status/wait-for-block-after/"+std::to_string(block));
}
JsonResponse
AlgodClient::teal_compile(std::string source) {
return post("/v2/teal/compile", source);
}
JsonResponse
AlgodClient::teal_dryrun(rapidjson::Value& request) {
return post("/v2/teal/dryrun", json_to_string(request));
}
std::string
AlgodClient::submit_url() {
return "/v2/transactions";
}
JsonResponse
AlgodClient::submit(std::string rawtxn) {
return post(submit_url(), rawtxn);
}
JsonResponse
AlgodClient::submit(const SignedTransaction& stxn) {
std::stringstream buffer;
msgpack::pack(buffer, stxn);
return submit(buffer.str());
}
JsonResponse
AlgodClient::submit(std::vector <SignedTransaction> txgroup) {
std::stringstream buffer;
for (auto& txn : txgroup)
msgpack::pack(buffer, txn);
return submit(buffer.str());
}
std::string
AlgodClient::params_url() {
return "/v2/transactions/params";
}
JsonResponse
AlgodClient::params() {
return get(params_url());
}
JsonResponse
AlgodClient::transaction_pending(std::string txid) {
if (txid.empty())
return get("/v2/transactions/pending");
return get("/v2/transactions/pending/"+txid);
}
std::ostream&
operator<<(std::ostream& os, const rapidjson::Value& val) {
rapidjson::OStreamWrapper osw(os);
rapidjson::PrettyWriter<rapidjson::OStreamWrapper> writer(osw);
val.Accept(writer);
return os;
}
std::ostream&
operator<<(std::ostream& os, const JsonResponse& jr) {
return os << jr.status << std::endl << *jr.json;
}
std::string
json_to_string(const rapidjson::Value& val) {
std::stringstream ss;
ss << val;
return ss.str();
}
static size_t
accumulate_response(void *contents, size_t size, size_t nmemb, std::string *s) {
size_t len = size*nmemb;
s->append((char*)contents, len);
return len;
}
static size_t
dispense_request(char *dest, size_t size, size_t nmemb, std::string* s) {
size_t len = std::min(s->size(), size*nmemb);
if (!len)
return 0;
memcpy(dest, s->c_str(), len);
s->erase(0, len);
return len;
}
static int
curl_request(const std::string& url,
const std::string& method,
const std::vector<std::string>& headers,
const std::string& request_body,
const std::string* response_body) {
CURL *curl = curl_easy_init();
if (!curl)
return 200;
curl_easy_setopt(curl, CURLOPT_VERBOSE, !!getenv("CURL_VERBOSE"));
curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, method.c_str());
struct curl_slist *header_slist = NULL;
for (auto header : headers)
header_slist = curl_slist_append(header_slist, header.c_str());
curl_easy_setopt(curl, CURLOPT_HTTPHEADER, header_slist);
if (request_body.size()) {
// I'm not sure how CURLOPT_POST interacts with CUSTOMREQUEST, but
// it's needed to send data. So if another method requires data...?
curl_easy_setopt(curl, CURLOPT_POST, 1L);
curl_easy_setopt(curl, CURLOPT_READFUNCTION, dispense_request);
curl_easy_setopt(curl, CURLOPT_READDATA, &request_body);
curl_easy_setopt(curl, CURLOPT_POSTFIELDSIZE, request_body.size());
}
if (response_body) {
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, accumulate_response);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, response_body);
}
CURLcode res = curl_easy_perform(curl);
if (res != CURLE_OK) {
std::cerr << "curl_easy_perform() failed: "
<< curl_easy_strerror(res) << std::endl;
assert(false);
}
long http_code = 0;
curl_easy_getinfo (curl, CURLINFO_RESPONSE_CODE, &http_code);
curl_slist_free_all(header_slist);
curl_easy_cleanup(curl);
return http_code;
}
std::unique_ptr<rapidjson::Document>
json_parse(std::string body) {
auto doc = std::make_unique<rapidjson::Document>();
doc->Parse(body);
return doc;
}
JsonResponse
RestClient::api(const std::string& route,
const std::string& method,
const std::string& request_body) {
std::string response_body;
int status = curl_request(prefix + route, method,
{"Accept: application/json",
authorization},
request_body, &response_body);
if (response_body.empty())
return JsonResponse{status, nullptr};
return JsonResponse{status, json_parse(response_body)};
}
JsonResponse RestClient::get(const std::string& route) {
return api(route, "GET", "");
}
JsonResponse RestClient::post(const std::string& route, const std::string& body) {
return api(route, "POST", body);
}
IndexerClient::IndexerClient() :
IndexerClient(require_env("INDEXER_ADDRESS"), require_env("INDEXER_TOKEN")) {
}
IndexerClient::IndexerClient(std::string address, std::string token) :
RestClient(address, "X-Indexer-API-Token: " + token) {
}
JsonResponse
IndexerClient::accounts(uint64_t limit, std::string next_page,
uint64_t held_asset, uint64_t min_bal, uint64_t max_bal,
uint64_t optedin_app,
Address auth_addr, uint64_t as_of) {
string_map params;
if (limit != 0)
params["limit"] = std::to_string(limit);
if (next_page.size())
params["next"] = next_page;
// asset related
if (held_asset != 0)
params["asset-id"] = std::to_string(held_asset);
if (min_bal > 0)
params["currency-greater-than"] = std::to_string(min_bal);
if (max_bal > 0)
params["currency-less-than"] = std::to_string(max_bal);
// app related
if (optedin_app != 0)
params["application-id"] = std::to_string(optedin_app);
// rekeying
if (!auth_addr.is_zero())
params["auth-addr"] = auth_addr.as_string;
// time travel
if (as_of > 0)
params["round"] = std::to_string(as_of);
return get("/v2/accounts"+url_parameters(params));
}
JsonResponse IndexerClient::account(Address addr, uint64_t round) {
std::string url("/v2/accounts/"+addr.as_string);
if (round > 0)
url += "?round=" + std::to_string(round);
return get(url);
}
JsonResponse IndexerClient::block(uint64_t round) {
return get("/v2/blocks/"+std::to_string(round));
}
bool
IndexerClient::healthy(void) {
auto resp(get("/health"));
return resp.status == 200;
}