forked from simulationcraft/simc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsc_http_curl.cpp
327 lines (264 loc) · 8.61 KB
/
sc_http_curl.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
#include "config.hpp"
#ifdef SC_USE_CURL
#include "sc_http_curl.hpp"
#include "util/generic.hpp"
#include "util/util.hpp"
#include "fmt/format.h"
#include <iostream>
namespace
{
const std::string UA_STR = "Simulationcraft+CURL/" + std::string( SC_VERSION );
} /* Namespace anonymous ends */
namespace http
{
void curl_handle_t::set_proxy()
{
const auto& proxy = http::get_proxy();
if ( m_handle == nullptr )
{
return;
}
bool ssl_proxy = util::str_compare_ci( proxy.type, "https" );
bool use_proxy = ssl_proxy || util::str_compare_ci( proxy.type, "http" );
if ( !use_proxy )
{
return;
}
// Note, won't cover the case where curl is compiled without USE_SSL
#ifdef CURL_VERSION_HTTPS_PROXY
auto ret = curl_easy_setopt( m_handle, CURLOPT_PROXYTYPE,
ssl_proxy ? CURLPROXY_HTTPS : CURLPROXY_HTTP );
#else
if ( ssl_proxy )
{
throw std::runtime_error( "Libcurl does not support HTTPS proxies" );
}
auto ret = curl_easy_setopt( m_handle, CURLOPT_PROXYTYPE, CURLPROXY_HTTP );
#endif /* CURL_VERSION_HTTPS_PROXY */
if ( ret != CURLE_OK )
{
throw std::runtime_error( fmt::format( "Unable to setup proxy: {}", m_error ) );
}
if ( curl_easy_setopt( m_handle, CURLOPT_PROXY, proxy.host.c_str() ) != CURLE_OK )
{
throw std::runtime_error( fmt::format( "Unable to setup proxy: {}", m_error ) );
}
if ( curl_easy_setopt( m_handle, CURLOPT_PROXYPORT, proxy.port ) != CURLE_OK )
{
throw std::runtime_error( fmt::format( "Unable to setup proxy: {}", m_error ) );
}
}
size_t curl_handle_t::read_data( const char* data_in, size_t total_bytes )
{
m_buffer.append( data_in, total_bytes );
return total_bytes;
}
size_t curl_handle_t::add_response_header( const char* header_str, size_t total_bytes )
{
std::string header = std::string( header_str, total_bytes );
// Find first ':'
auto pos = header.find( ':' );
// Don't support foldable headers since they are deprecated anyhow
if ( pos == std::string::npos || header[ 0 ] == ' ' )
{
return total_bytes;
}
std::string key = header.substr( 0, pos );
std::string value = header.substr( pos + 1 );
// Transform all header keys to lowercase to sanitize the input
std::transform( key.begin(), key.end(), key.begin(), tolower );
// Prune whitespaces from values
while ( !value.empty() && ( value.back() == ' ' || value.back() == '\n' ||
value.back() == '\t' || value.back() == '\r' ) )
{
value.pop_back();
}
while ( !value.empty() && ( value.front() == ' ' || value.front() == '\t' ) )
{
value.erase( value.begin() );
}
m_headers[ key ] = value;
return total_bytes;
}
size_t curl_handle_t::data_cb( void* contents, size_t size, size_t nmemb, void* usr )
{
curl_handle_t* obj = reinterpret_cast<curl_handle_t*>( usr );
return obj->read_data( reinterpret_cast<const char*>( contents ), size * nmemb );
}
size_t curl_handle_t::header_cb( char* contents, size_t size, size_t nmemb, void* usr )
{
curl_handle_t* obj = reinterpret_cast<curl_handle_t*>( usr );
return obj->add_response_header( contents, size * nmemb );
}
curl_handle_t::curl_handle_t() : http_handle_t(), m_handle( nullptr ), m_header_opts( nullptr )
{
m_error[ 0 ] = '\0';
}
curl_handle_t::curl_handle_t( CURL* handle ) :
http_handle_t(), m_handle( handle ), m_header_opts( nullptr )
{
m_error[ 0 ] = '\0';
auto ret = curl_easy_setopt( handle, CURLOPT_ERRORBUFFER, m_error );
if ( ret != CURLE_OK )
{
throw std::runtime_error( fmt::format( "Unable to setup CURL: {}", curl_easy_strerror( ret ) ) );
}
if ( curl_easy_setopt( handle, CURLOPT_TIMEOUT, 15L ) != CURLE_OK )
{
throw std::runtime_error( fmt::format( "Unable to setup CURL: {}", m_error ) );
}
if ( curl_easy_setopt( handle, CURLOPT_FOLLOWLOCATION, 1L ) != CURLE_OK )
{
throw std::runtime_error( fmt::format( "Unable to setup CURL: {}", m_error ) );
}
if ( curl_easy_setopt( handle, CURLOPT_MAXREDIRS, 5L ) != CURLE_OK )
{
throw std::runtime_error( fmt::format( "Unable to setup CURL: {}", m_error ) );
}
if ( curl_easy_setopt( handle, CURLOPT_ACCEPT_ENCODING, "" ) != CURLE_OK )
{
throw std::runtime_error( fmt::format( "Unable to setup CURL: {}", m_error ) );
}
if ( curl_easy_setopt( handle, CURLOPT_USERAGENT, UA_STR.c_str() ) != CURLE_OK )
{
throw std::runtime_error( fmt::format( "Unable to setup CURL: {}", m_error ) );
}
if ( curl_easy_setopt( handle, CURLOPT_HEADERFUNCTION, header_cb ) != CURLE_OK )
{
throw std::runtime_error( fmt::format( "Unable to setup CURL: {}", m_error ) );
}
if ( curl_easy_setopt( handle, CURLOPT_WRITEFUNCTION, data_cb ) != CURLE_OK )
{
throw std::runtime_error( fmt::format( "Unable to setup CURL: {}", m_error ) );
}
if ( curl_easy_setopt( handle, CURLOPT_HEADERDATA, reinterpret_cast<void*>( this ) ) != CURLE_OK )
{
throw std::runtime_error( fmt::format( "Unable to setup CURL: {}", m_error ) );
}
if ( curl_easy_setopt( handle, CURLOPT_WRITEDATA, reinterpret_cast<void*>( this ) ) != CURLE_OK )
{
throw std::runtime_error( fmt::format( "Unable to setup CURL: {}", m_error ) );
}
#ifdef CURL_DEBUG
if ( curl_easy_setopt( handle, CURLOPT_VERBOSE, 1L ) != CURLE_OK )
{
throw std::runtime_error( fmt::format( "Unable to setup CURL: {}", m_error ) );
}
#endif
set_proxy();
}
curl_handle_t::~curl_handle_t()
{
curl_easy_reset( m_handle );
curl_slist_free_all( m_header_opts );
}
bool curl_handle_t::initialized() const
{
return m_handle != nullptr;
}
// Curl descriptive error (when fetch() returns != CURLE_OK)
std::string curl_handle_t::error() const
{
return { m_error };
}
// Response body
const std::string& curl_handle_t::result() const
{
return m_buffer;
}
// Response headers
const std::unordered_map<std::string, std::string>& curl_handle_t::headers() const
{
return m_headers;
}
void curl_handle_t::add_request_headers( const std::vector<std::string>& headers )
{
range::for_each( headers, [ this ]( const std::string& header ) {
m_header_opts = curl_slist_append( m_header_opts, header.c_str() );
} );
curl_easy_setopt( m_handle, CURLOPT_HTTPHEADER, m_header_opts );
}
void curl_handle_t::add_request_header( const std::string& header )
{
m_header_opts = curl_slist_append( m_header_opts, header.c_str() );
curl_easy_setopt( m_handle, CURLOPT_HTTPHEADER, m_header_opts );
}
bool curl_handle_t::set_basic_auth( const std::string& userpwd )
{
return curl_easy_setopt( m_handle, CURLOPT_USERPWD, userpwd.c_str() ) == CURLE_OK;
}
bool curl_handle_t::set_basic_auth( const std::string& user, const std::string& pwd )
{
return set_basic_auth( user + ":" + pwd );
}
// Fetch an url
bool curl_handle_t::get( const std::string& url )
{
if ( url.empty() )
{
return false;
}
if ( curl_easy_setopt( m_handle, CURLOPT_URL, url.c_str() ) != CURLE_OK )
{
std::cerr << fmt::format( "Unable to set URL {}: {}", url, m_error ) << std::endl;
return false;
}
if ( curl_easy_perform( m_handle ) != CURLE_OK )
{
std::cerr << fmt::format( "Unable to perform operation: {}", m_error ) << std::endl;
return false;
}
return true;
}
bool curl_handle_t::post( const std::string& url, const std::string& data, const std::string& content_type )
{
if ( !content_type.empty() )
{
add_request_header( "Content-Type: " + content_type );
}
if ( curl_easy_setopt( m_handle, CURLOPT_POSTFIELDS, data.c_str() ) != CURLE_OK )
{
std::cerr << fmt::format( "Unable to set POST data \"{}\": {}", data, m_error ) << std::endl;
return false;
}
return get( url );
}
int curl_handle_t::response_code() const
{
long response_code = 0;
if ( curl_easy_getinfo( m_handle, CURLINFO_RESPONSE_CODE, &response_code ) != CURLE_OK )
{
std::cerr << fmt::format( "Unable to retrieve response code: {}", m_error ) << std::endl;
return -1;
}
return as<int>( response_code );
}
curl_connection_pool_t::curl_connection_pool_t() : http_connection_pool_t(), m_handle( nullptr )
{
auto ret = curl_global_init( CURL_GLOBAL_ALL );
if ( ret != CURLE_OK )
{
throw std::runtime_error( fmt::format( "Unable to initialize libcurl: {}",
curl_easy_strerror( ret ) ) );
}
}
curl_connection_pool_t::~curl_connection_pool_t()
{
curl_easy_cleanup( m_handle );
curl_global_cleanup();
}
std::unique_ptr<http_handle_t> curl_connection_pool_t::handle( const std::string& /* url */ )
{
if ( m_handle )
{
return std::unique_ptr<http_handle_t>( new curl_handle_t( m_handle ) );
}
m_handle = curl_easy_init();
if ( !m_handle )
{
throw std::runtime_error( "Unable to create CURL handle" );
}
return std::unique_ptr<http_handle_t>( new curl_handle_t( m_handle ) );
}
} /* Namespace http ends */
#endif /* SC_USE_CURL */