forked from DaKaZ/esp8266-restclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RestClient.cpp
345 lines (288 loc) · 9.13 KB
/
RestClient.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
#include "RestClient.h"
#ifdef HTTP_DEBUG
#define HTTP_DEBUG_PRINT(string) (Serial.print(string))
#endif
#ifndef HTTP_DEBUG
#define HTTP_DEBUG_PRINT(string)
#endif
RestClient::RestClient(const char* _host){
host = _host;
port = 80;
ssl = 0;
fingerprint = NULL;
num_headers = 0;
if (contentType != NULL) {
contentType = "application/x-www-form-urlencoded"; // default
}
}
RestClient::RestClient(const char* _host, int _port){
host = _host;
port = _port;
ssl = 0;
fingerprint = NULL;
num_headers = 0;
if (contentType != NULL) {
contentType = "application/x-www-form-urlencoded"; // default
}
}
bool RestClient::dhcp(){
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
if (begin(mac) == 0) {
Serial.println("Failed to configure Ethernet using DHCP");
return false;
}
//give it time to initialize
delay(1000);
return true;
}
RestClient::RestClient(const char* _host, int _port, const char* _fingerprint){
host = _host;
port = _port;
ssl = 1;
fingerprint = _fingerprint;
num_headers = 0;
if (contentType != NULL) {
contentType = "application/x-www-form-urlencoded"; // default
}
}
RestClient::RestClient(const char* _host, int _port, int _ssl) {
host = _host;
port = _port;
ssl = (_ssl) ? 1 : 0;
fingerprint = NULL;
num_headers = 0;
if (contentType != NULL) {
contentType = "application/x-www-form-urlencoded"; // default
}
}
// GET path
int RestClient::get(const char* path){
return request("GET", path, NULL, NULL);
}
//GET path with response
int RestClient::get(const char* path, String* response){
return request("GET", path, NULL, response);
}
// POST path and body
int RestClient::post(const char* path, const char* body){
return request("POST", path, body, NULL);
}
// POST path and body with response
int RestClient::post(const char* path, const char* body, String* response){
return request("POST", path, body, response);
}
// PATCH path and body
int RestClient::patch(const char* path, const char* body){
return request("PATCH", path, body, NULL);
}
// PATCH path and body with response
int RestClient::patch(const char* path, const char* body, String* response){
return request("PATCH", path, body, response);
}
// PUT path and body
int RestClient::put(const char* path, const char* body){
return request("PUT", path, body, NULL);
}
// PUT path and body with response
int RestClient::put(const char* path, const char* body, String* response){
return request("PUT", path, body, response);
}
// DELETE path
int RestClient::del(const char* path){
return request("DELETE", path, NULL, NULL);
}
// DELETE path and response
int RestClient::del(const char* path, String* response){
return request("DELETE", path, NULL, response);
}
// DELETE path and body
int RestClient::del(const char* path, const char* body ){
return request("DELETE", path, body, NULL);
}
// DELETE path and body with response
int RestClient::del(const char* path, const char* body, String* response){
return request("DELETE", path, body, response);
}
void RestClient::write(const char* string){
if(ssl) {
HTTP_DEBUG_PRINT("\nSSL Print: ");
HTTP_DEBUG_PRINT(string);
sslClient.print(string);
} else {
HTTP_DEBUG_PRINT("\nHTTP Print: ");
HTTP_DEBUG_PRINT(string);
client.print(string);
}
}
void RestClient::setHeader(const char* header){
headers[num_headers] = header;
num_headers++;
}
void RestClient::setContentType(const char* contentTypeValue){
contentType = contentTypeValue;
}
void RestClient::setSSL(int _ssl){
ssl = (_ssl) ? 1 : 0;
}
// The mother- generic request method.
//
int RestClient::request(const char* method, const char* path,
const char* body, String* response){
HTTP_DEBUG_PRINT("HTTP: connect\n");
if (ssl) {
if(!sslClient.connect(host, port)){
HTTP_DEBUG_PRINT("HTTPS Connection failed\n");
return 0;
}
if (fingerprint) {
HTTP_DEBUG_PRINT("Verifiying SSL certificate\n");
if (sslClient.verify(fingerprint, host)) {
HTTP_DEBUG_PRINT("SSL certificate matches\n");
} else {
HTTP_DEBUG_PRINT("SSL certificate does not match\n");
return 0;
}
}
} else {
if(!client.connect(host, port)){
HTTP_DEBUG_PRINT("HTTP Connection failed\n");
return 0;
}
}
HTTP_DEBUG_PRINT("HTTP: connected\n");
HTTP_DEBUG_PRINT("REQUEST: \n");
String request = String(method) + " " + String(path) + " HTTP/1.1\r\n";
for(int i=0; i<num_headers; i++){
request += String(headers[i]) + "\r\n";
}
request += "Host: " + String(host) + ":" + String(port) + "\r\n";
request += "Connection: close\r\n";
if(body != NULL){
char contentLength[30];
sprintf(contentLength, "Content-Length: %d\r\n", strlen(body));
request += String(contentLength);
request += "Content-Type: " + String(contentType) + "\r\n";
}
if(method == "GET"){
request += "\r\n";
}
if(body != NULL){
request += String(body);
request += "\r\n\r\n";
}
write(request.c_str());
HTTP_DEBUG_PRINT("\nEND REQUEST\n");
//make sure you write all those bytes.
//delay(1000);
HTTP_DEBUG_PRINT("HTTP: call readResponse\n");
int statusCode = readResponse(response);
HTTP_DEBUG_PRINT("HTTP: return readResponse\n");
//cleanup
HTTP_DEBUG_PRINT("HTTP: stop client\n");
num_headers = 0;
if(ssl){
sslClient.stop();
} else {
client.stop();
}
delay(50);
HTTP_DEBUG_PRINT("HTTP: client stopped\n");
return statusCode;
}
int RestClient::readResponse(String* response) {
// an http request ends with a blank line
boolean currentLineIsBlank = true;
boolean httpBody = false;
boolean inStatus = false;
char statusCode[4];
int i = 0;
int code = 0;
if(response == NULL){
HTTP_DEBUG_PRINT("HTTP: NULL RESPONSE POINTER: \n");
}else{
HTTP_DEBUG_PRINT("HTTP: NON-NULL RESPONSE POINTER: \n");
}
HTTP_DEBUG_PRINT("HTTP: RESPONSE: \n");
void* http_client;
if(ssl) {
HTTP_DEBUG_PRINT("HTTP: Connect: " + String(sslClient.connected()) + " Available: " + String(sslClient.available()) + "\n");
while (sslClient.connected()) {
HTTP_DEBUG_PRINT(".");
if (sslClient.available()) {
HTTP_DEBUG_PRINT(",");
char c = sslClient.read();
HTTP_DEBUG_PRINT(c);
if(c == ' ' && !inStatus){
inStatus = true;
}
if(inStatus && i < 3 && c != ' '){
statusCode[i] = c;
i++;
}
if(i == 3){
statusCode[i] = '\0';
code = atoi(statusCode);
}
if(httpBody){
//only write response if its not null
if(response != NULL) response->concat(c);
}
else
{
if (c == '\n' && currentLineIsBlank) {
httpBody = true;
}
if (c == '\n') {
// you're starting a new line
currentLineIsBlank = true;
}
else if (c != '\r') {
// you've gotten a character on the current line
currentLineIsBlank = false;
}
}
}
}
HTTP_DEBUG_PRINT("HTTPS client closed \n");
}else {
while (client.connected()) {
HTTP_DEBUG_PRINT(".");
if (client.available()) {
HTTP_DEBUG_PRINT(",");
char c = client.read();
HTTP_DEBUG_PRINT(c);
if(c == ' ' && !inStatus){
inStatus = true;
}
if(inStatus && i < 3 && c != ' '){
statusCode[i] = c;
i++;
}
if(i == 3){
statusCode[i] = '\0';
code = atoi(statusCode);
}
if(httpBody){
//only write response if its not null
if(response != NULL) response->concat(c);
}
else
{
if (c == '\n' && currentLineIsBlank) {
httpBody = true;
}
if (c == '\n') {
// you're starting a new line
currentLineIsBlank = true;
}
else if (c != '\r') {
// you've gotten a character on the current line
currentLineIsBlank = false;
}
}
}
}
}
HTTP_DEBUG_PRINT("HTTP: return readResponse3\n");
return code;
}