forked from fhessel/esp32_https_server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTTPNode.cpp
More file actions
69 lines (57 loc) · 1.78 KB
/
HTTPNode.cpp
File metadata and controls
69 lines (57 loc) · 1.78 KB
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
#include "HTTPNode.hpp"
namespace httpsserver {
HTTPNode::HTTPNode(const std::string path, const HTTPNodeType nodeType, const std::string tag):
_path(std::move(path)),
_tag(std::move(tag)),
_nodeType(nodeType) {
// Create vector for valdiators
_validators = new std::vector<HTTPValidator*>();
// Count the parameters
_urlParamCount = 0;
size_t idx = 0;
while((idx = path.find("/*", idx)) != std::string::npos) {
_urlParamCount+=1;
// If we don't do this, the same index will be found again... and again... and again...
idx+=1;
};
// Check if there are parameters
if (_urlParamCount > 0) {
// If there are parameters, store their indices
_urlParamIdx = new size_t[_urlParamCount];
for(int i = 0; i < _urlParamCount; i++) {
_urlParamIdx[i] = path.find("/*", i==0 ? 0 : _urlParamIdx[i-1])+1;
}
} else {
_urlParamIdx = NULL;
}
}
HTTPNode::~HTTPNode() {
if (_urlParamIdx != NULL) {
delete[] _urlParamIdx;
}
// Delete validator references
for(std::vector<HTTPValidator*>::iterator validator = _validators->begin(); validator != _validators->end(); ++validator) {
delete *validator;
}
delete _validators;
}
bool HTTPNode::hasUrlParameter() {
return _urlParamCount > 0;
}
size_t HTTPNode::getParamIdx(uint8_t idx) {
if (idx<_urlParamCount) {
return _urlParamIdx[idx];
} else {
return -1;
}
}
uint8_t HTTPNode::getUrlParamCount() {
return _urlParamCount;
}
void HTTPNode::addURLParamValidator(uint8_t paramIdx, const HTTPValidationFunction * validator) {
_validators->push_back(new HTTPValidator(paramIdx, validator));
}
std::vector<HTTPValidator*> * HTTPNode::getValidators() {
return _validators;
}
}