MediaWiki  master
MultiHttpClient.php
Go to the documentation of this file.
1 <?php
47  protected $multiHandle = null; // curl_multi handle
49  protected $caBundlePath;
51  protected $connTimeout = 10;
53  protected $reqTimeout = 300;
55  protected $usePipelining = false;
57  protected $maxConnsPerHost = 50;
59  protected $proxy;
61  protected $userAgent = 'wikimedia/multi-http-client v1.0';
62 
73  public function __construct( array $options ) {
74  if ( isset( $options['caBundlePath'] ) ) {
75  $this->caBundlePath = $options['caBundlePath'];
76  if ( !file_exists( $this->caBundlePath ) ) {
77  throw new Exception( "Cannot find CA bundle: " . $this->caBundlePath );
78  }
79  }
80  static $opts = [
81  'connTimeout', 'reqTimeout', 'usePipelining', 'maxConnsPerHost', 'proxy', 'userAgent'
82  ];
83  foreach ( $opts as $key ) {
84  if ( isset( $options[$key] ) ) {
85  $this->$key = $options[$key];
86  }
87  }
88  }
89 
109  public function run( array $req, array $opts = [] ) {
110  return $this->runMulti( [ $req ], $opts )[0]['response'];
111  }
112 
139  public function runMulti( array $reqs, array $opts = [] ) {
140  $chm = $this->getCurlMulti();
141 
142  // Normalize $reqs and add all of the required cURL handles...
143  $handles = [];
144  foreach ( $reqs as $index => &$req ) {
145  $req['response'] = [
146  'code' => 0,
147  'reason' => '',
148  'headers' => [],
149  'body' => '',
150  'error' => ''
151  ];
152  if ( isset( $req[0] ) ) {
153  $req['method'] = $req[0]; // short-form
154  unset( $req[0] );
155  }
156  if ( isset( $req[1] ) ) {
157  $req['url'] = $req[1]; // short-form
158  unset( $req[1] );
159  }
160  if ( !isset( $req['method'] ) ) {
161  throw new Exception( "Request has no 'method' field set." );
162  } elseif ( !isset( $req['url'] ) ) {
163  throw new Exception( "Request has no 'url' field set." );
164  }
165  $req['query'] = isset( $req['query'] ) ? $req['query'] : [];
166  $headers = []; // normalized headers
167  if ( isset( $req['headers'] ) ) {
168  foreach ( $req['headers'] as $name => $value ) {
169  $headers[strtolower( $name )] = $value;
170  }
171  }
172  $req['headers'] = $headers;
173  if ( !isset( $req['body'] ) ) {
174  $req['body'] = '';
175  $req['headers']['content-length'] = 0;
176  }
177  $req['flags'] = isset( $req['flags'] ) ? $req['flags'] : [];
178  $handles[$index] = $this->getCurlHandle( $req, $opts );
179  if ( count( $reqs ) > 1 ) {
180  // https://github.com/guzzle/guzzle/issues/349
181  curl_setopt( $handles[$index], CURLOPT_FORBID_REUSE, true );
182  }
183  }
184  unset( $req ); // don't assign over this by accident
185 
186  $indexes = array_keys( $reqs );
187  if ( function_exists( 'curl_multi_setopt' ) ) { // PHP 5.5
188  if ( isset( $opts['usePipelining'] ) ) {
189  curl_multi_setopt( $chm, CURLMOPT_PIPELINING, (int)$opts['usePipelining'] );
190  }
191  if ( isset( $opts['maxConnsPerHost'] ) ) {
192  // Keep these sockets around as they may be needed later in the request
193  curl_multi_setopt( $chm, CURLMOPT_MAXCONNECTS, (int)$opts['maxConnsPerHost'] );
194  }
195  }
196 
197  // @TODO: use a per-host rolling handle window (e.g. CURLMOPT_MAX_HOST_CONNECTIONS)
198  $batches = array_chunk( $indexes, $this->maxConnsPerHost );
199  $infos = [];
200 
201  foreach ( $batches as $batch ) {
202  // Attach all cURL handles for this batch
203  foreach ( $batch as $index ) {
204  curl_multi_add_handle( $chm, $handles[$index] );
205  }
206  // Execute the cURL handles concurrently...
207  $active = null; // handles still being processed
208  do {
209  // Do any available work...
210  do {
211  $mrc = curl_multi_exec( $chm, $active );
212  $info = curl_multi_info_read( $chm );
213  if ( $info !== false ) {
214  $infos[(int)$info['handle']] = $info;
215  }
216  } while ( $mrc == CURLM_CALL_MULTI_PERFORM );
217  // Wait (if possible) for available work...
218  if ( $active > 0 && $mrc == CURLM_OK ) {
219  if ( curl_multi_select( $chm, 10 ) == -1 ) {
220  // PHP bug 63411; http://curl.haxx.se/libcurl/c/curl_multi_fdset.html
221  usleep( 5000 ); // 5ms
222  }
223  }
224  } while ( $active > 0 && $mrc == CURLM_OK );
225  }
226 
227  // Remove all of the added cURL handles and check for errors...
228  foreach ( $reqs as $index => &$req ) {
229  $ch = $handles[$index];
230  curl_multi_remove_handle( $chm, $ch );
231 
232  if ( isset( $infos[(int)$ch] ) ) {
233  $info = $infos[(int)$ch];
234  $errno = $info['result'];
235  if ( $errno !== 0 ) {
236  $req['response']['error'] = "(curl error: $errno)";
237  if ( function_exists( 'curl_strerror' ) ) {
238  $req['response']['error'] .= " " . curl_strerror( $errno );
239  }
240  }
241  } else {
242  $req['response']['error'] = "(curl error: no status set)";
243  }
244 
245  // For convenience with the list() operator
246  $req['response'][0] = $req['response']['code'];
247  $req['response'][1] = $req['response']['reason'];
248  $req['response'][2] = $req['response']['headers'];
249  $req['response'][3] = $req['response']['body'];
250  $req['response'][4] = $req['response']['error'];
251  curl_close( $ch );
252  // Close any string wrapper file handles
253  if ( isset( $req['_closeHandle'] ) ) {
254  fclose( $req['_closeHandle'] );
255  unset( $req['_closeHandle'] );
256  }
257  }
258  unset( $req ); // don't assign over this by accident
259 
260  // Restore the default settings
261  if ( function_exists( 'curl_multi_setopt' ) ) { // PHP 5.5
262  curl_multi_setopt( $chm, CURLMOPT_PIPELINING, (int)$this->usePipelining );
263  curl_multi_setopt( $chm, CURLMOPT_MAXCONNECTS, (int)$this->maxConnsPerHost );
264  }
265 
266  return $reqs;
267  }
268 
277  protected function getCurlHandle( array &$req, array $opts = [] ) {
278  $ch = curl_init();
279 
280  curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT,
281  isset( $opts['connTimeout'] ) ? $opts['connTimeout'] : $this->connTimeout );
282  curl_setopt( $ch, CURLOPT_PROXY, isset( $req['proxy'] ) ? $req['proxy'] : $this->proxy );
283  curl_setopt( $ch, CURLOPT_TIMEOUT,
284  isset( $opts['reqTimeout'] ) ? $opts['reqTimeout'] : $this->reqTimeout );
285  curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, 1 );
286  curl_setopt( $ch, CURLOPT_MAXREDIRS, 4 );
287  curl_setopt( $ch, CURLOPT_HEADER, 0 );
288  if ( !is_null( $this->caBundlePath ) ) {
289  curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, true );
290  curl_setopt( $ch, CURLOPT_CAINFO, $this->caBundlePath );
291  }
292  curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 );
293 
294  $url = $req['url'];
295  // PHP_QUERY_RFC3986 is PHP 5.4+ only
296  $query = str_replace(
297  [ '+', '%7E' ],
298  [ '%20', '~' ],
299  http_build_query( $req['query'], '', '&' )
300  );
301  if ( $query != '' ) {
302  $url .= strpos( $req['url'], '?' ) === false ? "?$query" : "&$query";
303  }
304  curl_setopt( $ch, CURLOPT_URL, $url );
305 
306  curl_setopt( $ch, CURLOPT_CUSTOMREQUEST, $req['method'] );
307  if ( $req['method'] === 'HEAD' ) {
308  curl_setopt( $ch, CURLOPT_NOBODY, 1 );
309  }
310 
311  if ( $req['method'] === 'PUT' ) {
312  curl_setopt( $ch, CURLOPT_PUT, 1 );
313  if ( is_resource( $req['body'] ) ) {
314  curl_setopt( $ch, CURLOPT_INFILE, $req['body'] );
315  if ( isset( $req['headers']['content-length'] ) ) {
316  curl_setopt( $ch, CURLOPT_INFILESIZE, $req['headers']['content-length'] );
317  } elseif ( isset( $req['headers']['transfer-encoding'] ) &&
318  $req['headers']['transfer-encoding'] === 'chunks'
319  ) {
320  curl_setopt( $ch, CURLOPT_UPLOAD, true );
321  } else {
322  throw new Exception( "Missing 'Content-Length' or 'Transfer-Encoding' header." );
323  }
324  } elseif ( $req['body'] !== '' ) {
325  $fp = fopen( "php://temp", "wb+" );
326  fwrite( $fp, $req['body'], strlen( $req['body'] ) );
327  rewind( $fp );
328  curl_setopt( $ch, CURLOPT_INFILE, $fp );
329  curl_setopt( $ch, CURLOPT_INFILESIZE, strlen( $req['body'] ) );
330  $req['_closeHandle'] = $fp; // remember to close this later
331  } else {
332  curl_setopt( $ch, CURLOPT_INFILESIZE, 0 );
333  }
334  curl_setopt( $ch, CURLOPT_READFUNCTION,
335  function ( $ch, $fd, $length ) {
336  $data = fread( $fd, $length );
337  $len = strlen( $data );
338  return $data;
339  }
340  );
341  } elseif ( $req['method'] === 'POST' ) {
342  curl_setopt( $ch, CURLOPT_POST, 1 );
343  // Don't interpret POST parameters starting with '@' as file uploads, because this
344  // makes it impossible to POST plain values starting with '@' (and causes security
345  // issues potentially exposing the contents of local files).
346  // The PHP manual says this option was introduced in PHP 5.5 defaults to true in PHP 5.6,
347  // but we support lower versions, and the option doesn't exist in HHVM 5.6.99.
348  if ( defined( 'CURLOPT_SAFE_UPLOAD' ) ) {
349  curl_setopt( $ch, CURLOPT_SAFE_UPLOAD, true );
350  } elseif ( is_array( $req['body'] ) ) {
351  // In PHP 5.2 and later, '@' is interpreted as a file upload if POSTFIELDS
352  // is an array, but not if it's a string. So convert $req['body'] to a string
353  // for safety.
354  $req['body'] = wfArrayToCgi( $req['body'] );
355  }
356  curl_setopt( $ch, CURLOPT_POSTFIELDS, $req['body'] );
357  } else {
358  if ( is_resource( $req['body'] ) || $req['body'] !== '' ) {
359  throw new Exception( "HTTP body specified for a non PUT/POST request." );
360  }
361  $req['headers']['content-length'] = 0;
362  }
363 
364  if ( !isset( $req['headers']['user-agent'] ) ) {
365  $req['headers']['user-agent'] = $this->userAgent;
366  }
367 
368  $headers = [];
369  foreach ( $req['headers'] as $name => $value ) {
370  if ( strpos( $name, ': ' ) ) {
371  throw new Exception( "Headers cannot have ':' in the name." );
372  }
373  $headers[] = $name . ': ' . trim( $value );
374  }
375  curl_setopt( $ch, CURLOPT_HTTPHEADER, $headers );
376 
377  curl_setopt( $ch, CURLOPT_HEADERFUNCTION,
378  function ( $ch, $header ) use ( &$req ) {
379  if ( !empty( $req['flags']['relayResponseHeaders'] ) ) {
380  header( $header );
381  }
382  $length = strlen( $header );
383  $matches = [];
384  if ( preg_match( "/^(HTTP\/1\.[01]) (\d{3}) (.*)/", $header, $matches ) ) {
385  $req['response']['code'] = (int)$matches[2];
386  $req['response']['reason'] = trim( $matches[3] );
387  return $length;
388  }
389  if ( strpos( $header, ":" ) === false ) {
390  return $length;
391  }
392  list( $name, $value ) = explode( ":", $header, 2 );
393  $req['response']['headers'][strtolower( $name )] = trim( $value );
394  return $length;
395  }
396  );
397 
398  if ( isset( $req['stream'] ) ) {
399  // Don't just use CURLOPT_FILE as that might give:
400  // curl_setopt(): cannot represent a stream of type Output as a STDIO FILE*
401  // The callback here handles both normal files and php://temp handles.
402  curl_setopt( $ch, CURLOPT_WRITEFUNCTION,
403  function ( $ch, $data ) use ( &$req ) {
404  return fwrite( $req['stream'], $data );
405  }
406  );
407  } else {
408  curl_setopt( $ch, CURLOPT_WRITEFUNCTION,
409  function ( $ch, $data ) use ( &$req ) {
410  $req['response']['body'] .= $data;
411  return strlen( $data );
412  }
413  );
414  }
415 
416  return $ch;
417  }
418 
422  protected function getCurlMulti() {
423  if ( !$this->multiHandle ) {
424  $cmh = curl_multi_init();
425  if ( function_exists( 'curl_multi_setopt' ) ) { // PHP 5.5
426  curl_multi_setopt( $cmh, CURLMOPT_PIPELINING, (int)$this->usePipelining );
427  curl_multi_setopt( $cmh, CURLMOPT_MAXCONNECTS, (int)$this->maxConnsPerHost );
428  }
429  $this->multiHandle = $cmh;
430  }
431  return $this->multiHandle;
432  }
433 
434  function __destruct() {
435  if ( $this->multiHandle ) {
436  curl_multi_close( $this->multiHandle );
437  }
438  }
439 }
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
string null $caBundlePath
SSL certificates path.
the array() calling protocol came about after MediaWiki 1.4rc1.
null for the local wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition: hooks.txt:1435
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
$value
__construct(array $options)
$batch
Definition: linkcache.txt:23
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
Definition: hooks.txt:1020
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
this hook is for auditing only $req
Definition: hooks.txt:981
string null $proxy
proxy
getCurlHandle(array &$req, array $opts=[])
wfArrayToCgi($array1, $array2=null, $prefix= '')
This function takes one or two arrays as input, and returns a CGI-style string, e.g.
integer $maxConnsPerHost
run(array $req, array $opts=[])
Execute an HTTP(S) request.
Class to handle concurrent HTTP requests.
runMulti(array $reqs, array $opts=[])
Execute a set of HTTP(S) requests concurrently.
$matches
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:310