-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHttpRequest.cpp
63 lines (50 loc) · 1.75 KB
/
HttpRequest.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
#include "HttpRequest.hpp"
std::shared_ptr<HttpRequestDetails> HttpRequest::parse(ssize_t bytes_read, char * buffer) {
std::shared_ptr<HttpRequestDetails> output = std::make_shared<HttpRequestDetails>(false,0,"");
int total_length = static_cast<int> (bytes_read);
char * current_char = buffer;
bool isValid = false;
//Validate Request Method
int index = 0;
while (*(current_char + index) != SPACE && (current_char+index)< (current_char +total_length)) {
index++;
}
for (const std::string & method: methods) {
if (strncmp(method.c_str(),current_char,static_cast<size_t>(index)) == 0) {
isValid = true;
}
}
if (!isValid) {
return output;
}
index++;
current_char += index;
//Validate URL
if (strncmp(current_char,HTTP_START.c_str(),static_cast<size_t>(HTTP_START.size()))==0) {
current_char += HTTP_START.size();
}
char* start_host_name = current_char;
while (*current_char != SPACE && *current_char!=COLON && *current_char!=FORWARD_SLASH) {
current_char ++;
}
std::string host_name;
host_name.assign(start_host_name, current_char - start_host_name);
output->host_name = host_name;
if (*current_char == COLON) {
current_char++;
std::string port_number;
while (isdigit(*current_char)) {
port_number.push_back(*current_char);
current_char++;
}
try {
output->port_number = std::stoi(port_number);
} catch (std::exception const &e) {
return output;
}
} else {
output->port_number = 80;
}
output->is_valid = true;
return output;
}