-
Notifications
You must be signed in to change notification settings - Fork 38
/
httprequest.cpp
221 lines (180 loc) · 5.5 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
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
/**
* vim: set ts=4 :
* =============================================================================
* SourceMod REST in Pawn Extension
* Copyright 2017-2022 Erik Minekus
* =============================================================================
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "httprequest.h"
#include "httprequestcontext.h"
#include "httpfilecontext.h"
#include "httpformcontext.h"
HTTPRequest::HTTPRequest(const std::string &url)
: url(url)
{
SetHeader("Accept", "application/json");
SetHeader("Content-Type", "application/json");
}
void HTTPRequest::Perform(const char *method, json_t *data, IChangeableForward *forward, cell_t value)
{
HTTPRequestContext *context = new HTTPRequestContext(method, BuildURL(), data, BuildHeaders(), forward, value,
connectTimeout, maxRedirects, timeout, maxSendSpeed, maxRecvSpeed, useBasicAuth, username, password);
g_RipExt.AddRequestToQueue(context);
}
void HTTPRequest::DownloadFile(const char *path, IChangeableForward *forward, cell_t value)
{
SetHeader("Accept", "*/*");
SetHeader("Content-Type", "application/octet-stream");
HTTPFileContext *context = new HTTPFileContext(false, BuildURL(), path, BuildHeaders(), forward, value,
connectTimeout, maxRedirects, timeout, maxSendSpeed, maxRecvSpeed, useBasicAuth, username, password);
g_RipExt.AddRequestToQueue(context);
}
void HTTPRequest::UploadFile(const char *path, IChangeableForward *forward, cell_t value)
{
SetHeader("Accept", "*/*");
SetHeader("Content-Type", "application/octet-stream");
HTTPFileContext *context = new HTTPFileContext(true, BuildURL(), path, BuildHeaders(), forward, value,
connectTimeout, maxRedirects, timeout, maxSendSpeed, maxRecvSpeed, useBasicAuth, username, password);
g_RipExt.AddRequestToQueue(context);
}
void HTTPRequest::PostForm(IChangeableForward *forward, cell_t value)
{
SetHeader("Accept", "application/json");
SetHeader("Content-Type", "application/x-www-form-urlencoded");
HTTPFormContext *context = new HTTPFormContext(BuildURL(), formData, BuildHeaders(), forward, value,
connectTimeout, maxRedirects, timeout, maxSendSpeed, maxRecvSpeed, useBasicAuth, username, password);
g_RipExt.AddRequestToQueue(context);
}
const std::string HTTPRequest::BuildURL() const
{
std::string url(this->url);
url.append(query);
return url;
}
void HTTPRequest::AppendQueryParam(const char *name, const char *value)
{
CURL *curl = curl_easy_init();
if (curl == NULL)
{
return;
}
char *escapedName = curl_easy_escape(curl, name, 0);
char *escapedValue = curl_easy_escape(curl, value, 0);
if (escapedName != NULL && escapedValue != NULL)
{
query.append(query.size() == 0 ? "?" : "&");
query.append(escapedName);
query.append("=");
query.append(escapedValue);
}
curl_free(escapedName);
curl_free(escapedValue);
curl_easy_cleanup(curl);
}
void HTTPRequest::AppendFormParam(const char *name, const char *value)
{
CURL *curl = curl_easy_init();
if (curl == NULL)
{
return;
}
char *escapedName = curl_easy_escape(curl, name, 0);
char *escapedValue = curl_easy_escape(curl, value, 0);
if (escapedName != NULL && escapedValue != NULL)
{
formData.append(formData.size() == 0 ? "" : "&");
formData.append(escapedName);
formData.append("=");
formData.append(escapedValue);
}
curl_free(escapedName);
curl_free(escapedValue);
curl_easy_cleanup(curl);
}
struct curl_slist *HTTPRequest::BuildHeaders()
{
struct curl_slist *headers = NULL;
char header[8192];
for (HTTPHeaderMap::iterator iter = this->headers.iter(); !iter.empty(); iter.next())
{
snprintf(header, sizeof(header), "%s: %s", iter->key.chars(), iter->value.c_str());
headers = curl_slist_append(headers, header);
}
return headers;
}
void HTTPRequest::SetHeader(const char *name, const char *value)
{
std::string vstr(value);
headers.replace(name, std::move(vstr));
}
bool HTTPRequest::UseBasicAuth() const
{
return useBasicAuth;
}
const std::string HTTPRequest::GetUsername() const
{
return username;
}
const std::string HTTPRequest::GetPassword() const
{
return password;
}
void HTTPRequest::SetBasicAuth(const char *username, const char *password)
{
this->useBasicAuth = true;
this->username = username;
this->password = password;
}
int HTTPRequest::GetConnectTimeout() const
{
return connectTimeout;
}
void HTTPRequest::SetConnectTimeout(int connectTimeout)
{
this->connectTimeout = connectTimeout;
}
int HTTPRequest::GetMaxRedirects() const
{
return maxRedirects;
}
void HTTPRequest::SetMaxRedirects(int maxRedirects)
{
this->maxRedirects = maxRedirects;
}
int HTTPRequest::GetMaxRecvSpeed() const
{
return maxRecvSpeed;
}
void HTTPRequest::SetMaxRecvSpeed(int maxSpeed)
{
this->maxRecvSpeed = maxSpeed;
}
int HTTPRequest::GetMaxSendSpeed() const
{
return maxSendSpeed;
}
void HTTPRequest::SetMaxSendSpeed(int maxSpeed)
{
this->maxSendSpeed = maxSpeed;
}
int HTTPRequest::GetTimeout() const
{
return timeout;
}
void HTTPRequest::SetTimeout(int timeout)
{
this->timeout = timeout;
}