forked from jeremymlong/ESP8266-UPnP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HttpClient.cpp
85 lines (76 loc) · 1.67 KB
/
HttpClient.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
#include "HttpClient.h"
HttpClient::HttpClient() :
WiFiClient()
{
}
HttpClient::~HttpClient()
{
}
void HttpClient::openUrl(HttpRequest *request, HttpResponse *response)
{
#if defined(CONSOLE) && defined(DEBUG_HTTPCLIENT)
CONSOLE.println("Opening connection");
#endif
if (!connect(request->RemoteIP, request->RemotePort))
{
#if defined(CONSOLE) && defined(DEBUG_HTTPCLIENT)
CONSOLE.println("connection failed");
#endif
return;
}
request->printTo(this);
bool parsingHeaders = true;
while (connected())
{
if (available())
{
String line = readStringUntil('\r');
line.trim();
if (line.equals(""))
{
// End of HTTP header
parsingHeaders = false;
continue;
}
if (parsingHeaders)
{
parseHeaderLine(response, &line);
}
}
}
#if defined(CONSOLE) && defined(DEBUG_HTTPCLIENT)
CONSOLE.println("Connection closed");
#endif
return;
}
void HttpClient::parseHeaderLine(HttpResponse* response, String* line)
{
if (line->startsWith("HTTP"))
{
int spaceIndex = line->indexOf(' ');
String codeString = line->substring(line->indexOf(' '), line->lastIndexOf(' '));
codeString.trim();
response->ResponseCode = codeString.toInt();
#if defined(CONSOLE) && defined(DEBUG_HTTPCLIENT)
CONSOLE.print("Response Code: ");
CONSOLE.println(response->ResponseCode);
#endif
}
else
{
int colonIndex = line->indexOf(':');
if (colonIndex > -1)
{
String name = line->substring(0, colonIndex);
String value = line->substring(colonIndex + 1);
name.trim();
value.trim();
#if defined(CONSOLE) && defined(DEBUG_HTTPCLIENT)
CONSOLE.print(name);
CONSOLE.print(":");
CONSOLE.println(value);
#endif
response->setHeader(name, value);
}
}
}