5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
24 * Class to handle concurrent HTTP requests
26 * HTTP request maps are arrays that use the following format:
27 * - method : GET/HEAD/PUT/POST/DELETE
28 * - url : HTTP/HTTPS URL
29 * - query : <query parameter field/value associative array> (uses RFC 3986)
30 * - headers : <header name/value associative array>
31 * - body : source to get the HTTP request body from;
32 * this can simply be a string (always), a resource for
33 * PUT requests, and a field/value array for POST request;
34 * array bodies are encoded as multipart/form-data and strings
35 * use application/x-www-form-urlencoded (headers sent automatically)
36 * - stream : resource to stream the HTTP response body to
37 * - proxy : HTTP proxy to use
38 * Request maps can use integer index 0 instead of 'method' and 1 instead of 'url'.
40 * @author Aaron Schulz
43 class MultiHttpClient
{
45 protected $multiHandle = null; // curl_multi handle
46 /** @var string|null SSL certificates path */
47 protected $caBundlePath;
49 protected $connTimeout = 10;
51 protected $reqTimeout = 300;
53 protected $usePipelining = false;
55 protected $maxConnsPerHost = 50;
56 /** @var string|null proxy */
59 protected $userAgent = 'wikimedia/multi-http-client v1.0';
62 * @param array $options
63 * - connTimeout : default connection timeout (seconds)
64 * - reqTimeout : default request timeout (seconds)
65 * - proxy : HTTP proxy to use
66 * - usePipelining : whether to use HTTP pipelining if possible (for all hosts)
67 * - maxConnsPerHost : maximum number of concurrent connections (per host)
68 * - userAgent : The User-Agent header value to send
71 public function __construct( array $options ) {
72 if ( isset( $options['caBundlePath'] ) ) {
73 $this->caBundlePath
= $options['caBundlePath'];
74 if ( !file_exists( $this->caBundlePath
) ) {
75 throw new Exception( "Cannot find CA bundle: " . $this->caBundlePath
);
79 'connTimeout', 'reqTimeout', 'usePipelining', 'maxConnsPerHost', 'proxy', 'userAgent'
81 foreach ( $opts as $key ) {
82 if ( isset( $options[$key] ) ) {
83 $this->$key = $options[$key];
89 * Execute an HTTP(S) request
91 * This method returns a response map of:
92 * - code : HTTP response code or 0 if there was a serious cURL error
93 * - reason : HTTP response reason (empty if there was a serious cURL error)
94 * - headers : <header name/value associative array>
95 * - body : HTTP response body or resource (if "stream" was set)
96 * - error : Any cURL error string
97 * The map also stores integer-indexed copies of these values. This lets callers do:
99 * list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $http->run( $req );
101 * @param array $req HTTP request array
103 * - connTimeout : connection timeout per request (seconds)
104 * - reqTimeout : post-connection timeout per request (seconds)
105 * @return array Response array for request
107 final public function run( array $req, array $opts = [] ) {
108 return $this->runMulti( [ $req ], $opts )[0]['response'];
112 * Execute a set of HTTP(S) requests concurrently
114 * The maps are returned by this method with the 'response' field set to a map of:
115 * - code : HTTP response code or 0 if there was a serious cURL error
116 * - reason : HTTP response reason (empty if there was a serious cURL error)
117 * - headers : <header name/value associative array>
118 * - body : HTTP response body or resource (if "stream" was set)
119 * - error : Any cURL error string
120 * The map also stores integer-indexed copies of these values. This lets callers do:
122 * list( $rcode, $rdesc, $rhdrs, $rbody, $rerr ) = $req['response'];
124 * All headers in the 'headers' field are normalized to use lower case names.
125 * This is true for the request headers and the response headers. Integer-indexed
126 * method/URL entries will also be changed to use the corresponding string keys.
128 * @param array $reqs Map of HTTP request arrays
130 * - connTimeout : connection timeout per request (seconds)
131 * - reqTimeout : post-connection timeout per request (seconds)
132 * - usePipelining : whether to use HTTP pipelining if possible
133 * - maxConnsPerHost : maximum number of concurrent connections (per host)
134 * @return array $reqs With response array populated for each
137 public function runMulti( array $reqs, array $opts = [] ) {
138 $chm = $this->getCurlMulti();
140 // Normalize $reqs and add all of the required cURL handles...
142 foreach ( $reqs as $index => &$req ) {
150 if ( isset( $req[0] ) ) {
151 $req['method'] = $req[0]; // short-form
154 if ( isset( $req[1] ) ) {
155 $req['url'] = $req[1]; // short-form
158 if ( !isset( $req['method'] ) ) {
159 throw new Exception( "Request has no 'method' field set." );
160 } elseif ( !isset( $req['url'] ) ) {
161 throw new Exception( "Request has no 'url' field set." );
163 $req['query'] = isset( $req['query'] ) ?
$req['query'] : [];
164 $headers = []; // normalized headers
165 if ( isset( $req['headers'] ) ) {
166 foreach ( $req['headers'] as $name => $value ) {
167 $headers[strtolower( $name )] = $value;
170 $req['headers'] = $headers;
171 if ( !isset( $req['body'] ) ) {
173 $req['headers']['content-length'] = 0;
175 $handles[$index] = $this->getCurlHandle( $req, $opts );
176 if ( count( $reqs ) > 1 ) {
177 // https://github.com/guzzle/guzzle/issues/349
178 curl_setopt( $handles[$index], CURLOPT_FORBID_REUSE
, true );
181 unset( $req ); // don't assign over this by accident
183 $indexes = array_keys( $reqs );
184 if ( function_exists( 'curl_multi_setopt' ) ) { // PHP 5.5
185 if ( isset( $opts['usePipelining'] ) ) {
186 curl_multi_setopt( $chm, CURLMOPT_PIPELINING
, (int)$opts['usePipelining'] );
188 if ( isset( $opts['maxConnsPerHost'] ) ) {
189 // Keep these sockets around as they may be needed later in the request
190 curl_multi_setopt( $chm, CURLMOPT_MAXCONNECTS
, (int)$opts['maxConnsPerHost'] );
194 // @TODO: use a per-host rolling handle window (e.g. CURLMOPT_MAX_HOST_CONNECTIONS)
195 $batches = array_chunk( $indexes, $this->maxConnsPerHost
);
198 foreach ( $batches as $batch ) {
199 // Attach all cURL handles for this batch
200 foreach ( $batch as $index ) {
201 curl_multi_add_handle( $chm, $handles[$index] );
203 // Execute the cURL handles concurrently...
204 $active = null; // handles still being processed
206 // Do any available work...
208 $mrc = curl_multi_exec( $chm, $active );
209 $info = curl_multi_info_read( $chm );
210 if ( $info !== false ) {
211 $infos[(int)$info['handle']] = $info;
213 } while ( $mrc == CURLM_CALL_MULTI_PERFORM
);
214 // Wait (if possible) for available work...
215 if ( $active > 0 && $mrc == CURLM_OK
) {
216 if ( curl_multi_select( $chm, 10 ) == -1 ) {
217 // PHP bug 63411; http://curl.haxx.se/libcurl/c/curl_multi_fdset.html
218 usleep( 5000 ); // 5ms
221 } while ( $active > 0 && $mrc == CURLM_OK
);
224 // Remove all of the added cURL handles and check for errors...
225 foreach ( $reqs as $index => &$req ) {
226 $ch = $handles[$index];
227 curl_multi_remove_handle( $chm, $ch );
229 if ( isset( $infos[(int)$ch] ) ) {
230 $info = $infos[(int)$ch];
231 $errno = $info['result'];
232 if ( $errno !== 0 ) {
233 $req['response']['error'] = "(curl error: $errno)";
234 if ( function_exists( 'curl_strerror' ) ) {
235 $req['response']['error'] .= " " . curl_strerror( $errno );
239 $req['response']['error'] = "(curl error: no status set)";
242 // For convenience with the list() operator
243 $req['response'][0] = $req['response']['code'];
244 $req['response'][1] = $req['response']['reason'];
245 $req['response'][2] = $req['response']['headers'];
246 $req['response'][3] = $req['response']['body'];
247 $req['response'][4] = $req['response']['error'];
249 // Close any string wrapper file handles
250 if ( isset( $req['_closeHandle'] ) ) {
251 fclose( $req['_closeHandle'] );
252 unset( $req['_closeHandle'] );
255 unset( $req ); // don't assign over this by accident
257 // Restore the default settings
258 if ( function_exists( 'curl_multi_setopt' ) ) { // PHP 5.5
259 curl_multi_setopt( $chm, CURLMOPT_PIPELINING
, (int)$this->usePipelining
);
260 curl_multi_setopt( $chm, CURLMOPT_MAXCONNECTS
, (int)$this->maxConnsPerHost
);
267 * @param array $req HTTP request map
269 * - connTimeout : default connection timeout
270 * - reqTimeout : default request timeout
274 protected function getCurlHandle( array &$req, array $opts = [] ) {
277 curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT
,
278 isset( $opts['connTimeout'] ) ?
$opts['connTimeout'] : $this->connTimeout
);
279 curl_setopt( $ch, CURLOPT_PROXY
, isset( $req['proxy'] ) ?
$req['proxy'] : $this->proxy
);
280 curl_setopt( $ch, CURLOPT_TIMEOUT
,
281 isset( $opts['reqTimeout'] ) ?
$opts['reqTimeout'] : $this->reqTimeout
);
282 curl_setopt( $ch, CURLOPT_FOLLOWLOCATION
, 1 );
283 curl_setopt( $ch, CURLOPT_MAXREDIRS
, 4 );
284 curl_setopt( $ch, CURLOPT_HEADER
, 0 );
285 if ( !is_null( $this->caBundlePath
) ) {
286 curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER
, true );
287 curl_setopt( $ch, CURLOPT_CAINFO
, $this->caBundlePath
);
289 curl_setopt( $ch, CURLOPT_RETURNTRANSFER
, 1 );
292 // PHP_QUERY_RFC3986 is PHP 5.4+ only
293 $query = str_replace(
296 http_build_query( $req['query'], '', '&' )
298 if ( $query != '' ) {
299 $url .= strpos( $req['url'], '?' ) === false ?
"?$query" : "&$query";
301 curl_setopt( $ch, CURLOPT_URL
, $url );
303 curl_setopt( $ch, CURLOPT_CUSTOMREQUEST
, $req['method'] );
304 if ( $req['method'] === 'HEAD' ) {
305 curl_setopt( $ch, CURLOPT_NOBODY
, 1 );
308 if ( $req['method'] === 'PUT' ) {
309 curl_setopt( $ch, CURLOPT_PUT
, 1 );
310 if ( is_resource( $req['body'] ) ) {
311 curl_setopt( $ch, CURLOPT_INFILE
, $req['body'] );
312 if ( isset( $req['headers']['content-length'] ) ) {
313 curl_setopt( $ch, CURLOPT_INFILESIZE
, $req['headers']['content-length'] );
314 } elseif ( isset( $req['headers']['transfer-encoding'] ) &&
315 $req['headers']['transfer-encoding'] === 'chunks'
317 curl_setopt( $ch, CURLOPT_UPLOAD
, true );
319 throw new Exception( "Missing 'Content-Length' or 'Transfer-Encoding' header." );
321 } elseif ( $req['body'] !== '' ) {
322 $fp = fopen( "php://temp", "wb+" );
323 fwrite( $fp, $req['body'], strlen( $req['body'] ) );
325 curl_setopt( $ch, CURLOPT_INFILE
, $fp );
326 curl_setopt( $ch, CURLOPT_INFILESIZE
, strlen( $req['body'] ) );
327 $req['_closeHandle'] = $fp; // remember to close this later
329 curl_setopt( $ch, CURLOPT_INFILESIZE
, 0 );
331 curl_setopt( $ch, CURLOPT_READFUNCTION
,
332 function ( $ch, $fd, $length ) {
333 $data = fread( $fd, $length );
334 $len = strlen( $data );
338 } elseif ( $req['method'] === 'POST' ) {
339 curl_setopt( $ch, CURLOPT_POST
, 1 );
340 // Don't interpret POST parameters starting with '@' as file uploads, because this
341 // makes it impossible to POST plain values starting with '@' (and causes security
342 // issues potentially exposing the contents of local files).
343 // The PHP manual says this option was introduced in PHP 5.5 defaults to true in PHP 5.6,
344 // but we support lower versions, and the option doesn't exist in HHVM 5.6.99.
345 if ( defined( 'CURLOPT_SAFE_UPLOAD' ) ) {
346 curl_setopt( $ch, CURLOPT_SAFE_UPLOAD
, true );
347 } elseif ( is_array( $req['body'] ) ) {
348 // In PHP 5.2 and later, '@' is interpreted as a file upload if POSTFIELDS
349 // is an array, but not if it's a string. So convert $req['body'] to a string
351 $req['body'] = wfArrayToCgi( $req['body'] );
353 curl_setopt( $ch, CURLOPT_POSTFIELDS
, $req['body'] );
355 if ( is_resource( $req['body'] ) ||
$req['body'] !== '' ) {
356 throw new Exception( "HTTP body specified for a non PUT/POST request." );
358 $req['headers']['content-length'] = 0;
361 if ( !isset( $req['headers']['user-agent'] ) ) {
362 $req['headers']['user-agent'] = $this->userAgent
;
366 foreach ( $req['headers'] as $name => $value ) {
367 if ( strpos( $name, ': ' ) ) {
368 throw new Exception( "Headers cannot have ':' in the name." );
370 $headers[] = $name . ': ' . trim( $value );
372 curl_setopt( $ch, CURLOPT_HTTPHEADER
, $headers );
374 curl_setopt( $ch, CURLOPT_HEADERFUNCTION
,
375 function ( $ch, $header ) use ( &$req ) {
376 $length = strlen( $header );
378 if ( preg_match( "/^(HTTP\/1\.[01]) (\d{3}) (.*)/", $header, $matches ) ) {
379 $req['response']['code'] = (int)$matches[2];
380 $req['response']['reason'] = trim( $matches[3] );
383 if ( strpos( $header, ":" ) === false ) {
386 list( $name, $value ) = explode( ":", $header, 2 );
387 $req['response']['headers'][strtolower( $name )] = trim( $value );
392 if ( isset( $req['stream'] ) ) {
393 // Don't just use CURLOPT_FILE as that might give:
394 // curl_setopt(): cannot represent a stream of type Output as a STDIO FILE*
395 // The callback here handles both normal files and php://temp handles.
396 curl_setopt( $ch, CURLOPT_WRITEFUNCTION
,
397 function ( $ch, $data ) use ( &$req ) {
398 return fwrite( $req['stream'], $data );
402 curl_setopt( $ch, CURLOPT_WRITEFUNCTION
,
403 function ( $ch, $data ) use ( &$req ) {
404 $req['response']['body'] .= $data;
405 return strlen( $data );
416 protected function getCurlMulti() {
417 if ( !$this->multiHandle
) {
418 $cmh = curl_multi_init();
419 if ( function_exists( 'curl_multi_setopt' ) ) { // PHP 5.5
420 curl_multi_setopt( $cmh, CURLMOPT_PIPELINING
, (int)$this->usePipelining
);
421 curl_multi_setopt( $cmh, CURLMOPT_MAXCONNECTS
, (int)$this->maxConnsPerHost
);
423 $this->multiHandle
= $cmh;
425 return $this->multiHandle
;
428 function __destruct() {
429 if ( $this->multiHandle
) {
430 curl_multi_close( $this->multiHandle
);