-
Notifications
You must be signed in to change notification settings - Fork 12
/
coins.cpp
256 lines (234 loc) · 5.82 KB
/
coins.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
#include "coins.h"
gecko::web::response gecko::coinsFunctions::listCoins(REQUIRED bool include_platform) {
cpr::Parameters p = gecko::web::buildParameters(
NULL,
NULL,
gecko::web::__buildBoolParameters(
Bools {
{"include_platform", include_platform}
}
),
NULL
);
cpr::Response r = this->request("coins/list", &p);
return {
{r.text},
{std::to_string(r.status_code)},
{r.url.str()},
{r}
};
}
gecko::web::response gecko::coinsFunctions::getMarkets(
REQUIRED std::string vs_currency, OPTIONAL const char* ids,
OPTIONAL const char* price_change_percentage, OPTIONAL const char* category,
OPTIONAL unsigned short page, OPTIONAL unsigned short per_page,
OPTIONAL bool sparkline, OPTIONAL std::string order) {
cpr::Parameters p = gecko::web::buildParameters(
gecko::web::__buildStringParameters(
Strings {
{"vs_currency", vs_currency},
{"order", order}
}
),
gecko::web::__buildCStringParameters(
cStrings {
{"category", category},
{"price_change_percentage", price_change_percentage},
{"ids", ids}
}
),
gecko::web::__buildBoolParameters(
Bools {
{"sparkline", sparkline}
}
),
gecko::web::__buildShortParameters(
Shorts {
{"per_page", per_page},
{"page", page}
}
)
);
cpr::Response r = this->request("coins/markets", &p);
return {
{r.text},
{std::to_string(r.status_code)},
{r.url.str()},
{r}
};
}
gecko::web::response gecko::coinsFunctions::getCoinData(
REQUIRED std::string id, OPTIONAL bool localization,
OPTIONAL bool tickers, OPTIONAL bool market_data,
OPTIONAL bool community_data, OPTIONAL bool developer_data,
OPTIONAL bool sparkline) {
cpr::Parameters p = gecko::web::buildParameters(
NULL,
NULL,
gecko::web::__buildBoolParameters(
Bools {
{"localization", localization},
{"tickers", tickers},
{"market_data", market_data},
{"community_data", community_data},
{"developer_data", developer_data},
{"sparkline", sparkline}
}
),
NULL
);
cpr::Response r = this->request("coins/" + id, &p);
return {
{r.text},
{std::to_string(r.status_code)},
{r.url.str()},
{r}
};
}
gecko::web::response gecko::coinsFunctions::getCoinTickers(
REQUIRED std::string id, OPTIONAL const char* exchange_ids,
OPTIONAL bool include_exchange_logo, OPTIONAL unsigned short page, OPTIONAL std::string order,
OPTIONAL bool depth) {
cpr::Parameters p = gecko::web::buildParameters(
gecko::web::__buildStringParameters(
Strings {
{"order", order}
}
),
gecko::web::__buildCStringParameters(
cStrings {
{"exchange_ids", exchange_ids}
}
),
gecko::web::__buildBoolParameters(
Bools {
{"include_exchange_logo", include_exchange_logo},
{"depth", depth}
}
),
gecko::web::__buildShortParameters(
Shorts {
{"page", page}
}
)
);
cpr::Response r = this->request("coins/" + id + "/tickers", &p);
return {
{r.text},
{std::to_string(r.status_code)},
{r.url.str()},
{r}
};
}
gecko::web::response gecko::coinsFunctions::getCoinHistory(REQUIRED std::string id, REQUIRED std::string date, OPTIONAL bool localization) {
cpr::Parameters p = gecko::web::buildParameters(
gecko::web::__buildStringParameters(
Strings {
{"date", date}
}
),
NULL,
gecko::web::__buildBoolParameters(
Bools {
{"localization", localization}
}
),
NULL
);
cpr::Response r = this->request("coins/" + id + "/history", &p);
return {
{r.text},
{std::to_string(r.status_code)},
{r.url.str()},
{r}
};
}
gecko::web::response gecko::coinsFunctions::getCoinMarketHistory(
REQUIRED std::string id, REQUIRED std::string vs_currency,
REQUIRED std::string days, OPTIONAL const char* interval) {
cpr::Parameters p = gecko::web::buildParameters(
gecko::web::__buildStringParameters(
Strings {
{"vs_currency", vs_currency},
{"days", days}
}
),
gecko::web::__buildCStringParameters(
cStrings {
{"interval", interval}
}
),
NULL,
NULL
);
cpr::Response r = this->request("coins/" + id + "/market_chart", &p);
return {
{r.text},
{std::to_string(r.status_code)},
{r.url.str()},
{r}
};
}
gecko::web::response gecko::coinsFunctions::getCoinMarketHistoryWithinRange(
REQUIRED std::string id, REQUIRED std::string vs_currency,
REQUIRED std::string to, REQUIRED std::string from) {
cpr::Parameters p = gecko::web::buildParameters(
gecko::web::__buildStringParameters(
Strings {
{"vs_currency", vs_currency},
{"to", to},
{"from", from}
}
),
NULL,
NULL,
NULL
);
cpr::Response r = this->request("coins/" + id + "/market_chart/range", &p);
return {
{r.text},
{std::to_string(r.status_code)},
{r.url.str()},
{r}
};
}
gecko::web::response gecko::coinsFunctions::getCoinStatusUpdates(REQUIRED std::string id, OPTIONAL unsigned short per_page, OPTIONAL unsigned short page) {
cpr::Parameters p = gecko::web::buildParameters(
NULL,
NULL,
NULL,
gecko::web::__buildShortParameters(
Shorts {
{"per_page", per_page},
{"page", page}
}
)
);
cpr::Response r = this->request("coins/" + id + "/status_updates", &p);
return {
{r.text},
{std::to_string(r.status_code)},
{r.url.str()},
{r}
};
}
gecko::web::response gecko::coinsFunctions::getCoinOHLC(REQUIRED std::string id, REQUIRED std::string vs_currency, REQUIRED std::string days) {
cpr::Parameters p = gecko::web::buildParameters(
gecko::web::__buildStringParameters(
Strings {
{"vs_currency", vs_currency},
{"days", days}
}
),
NULL,
NULL,
NULL
);
cpr::Response r = this->request("coins/" + id + "/ohlc", &p);
return {
{r.text},
{std::to_string(r.status_code)},
{r.url.str()},
{r}
};
}