Merge "Add a test for named vs. positional parameter whitespace stripping"
[lhc/web/wiklou.git] / includes / HttpFunctions.php
1 <?php
2 /**
3 * Various HTTP related functions.
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup HTTP
22 */
23
24 /**
25 * @defgroup HTTP HTTP
26 */
27
28 /**
29 * Various HTTP related functions
30 * @ingroup HTTP
31 */
32 class Http {
33 static $httpEngine = false;
34
35 /**
36 * Perform an HTTP request
37 *
38 * @param $method String: HTTP method. Usually GET/POST
39 * @param $url String: full URL to act on. If protocol-relative, will be expanded to an http:// URL
40 * @param $options Array: options to pass to MWHttpRequest object.
41 * Possible keys for the array:
42 * - timeout Timeout length in seconds
43 * - postData An array of key-value pairs or a url-encoded form data
44 * - proxy The proxy to use.
45 * Otherwise it will use $wgHTTPProxy (if set)
46 * Otherwise it will use the environment variable "http_proxy" (if set)
47 * - noProxy Don't use any proxy at all. Takes precedence over proxy value(s).
48 * - sslVerifyHost (curl only) Verify hostname against certificate
49 * - sslVerifyCert (curl only) Verify SSL certificate
50 * - caInfo (curl only) Provide CA information
51 * - maxRedirects Maximum number of redirects to follow (defaults to 5)
52 * - followRedirects Whether to follow redirects (defaults to false).
53 * Note: this should only be used when the target URL is trusted,
54 * to avoid attacks on intranet services accessible by HTTP.
55 * - userAgent A user agent, if you want to override the default
56 * MediaWiki/$wgVersion
57 * @return Mixed: (bool)false on failure or a string on success
58 */
59 public static function request( $method, $url, $options = array() ) {
60 wfDebug( "HTTP: $method: $url\n" );
61 $options['method'] = strtoupper( $method );
62
63 if ( !isset( $options['timeout'] ) ) {
64 $options['timeout'] = 'default';
65 }
66
67 $req = MWHttpRequest::factory( $url, $options );
68 $status = $req->execute();
69
70 if ( $status->isOK() ) {
71 return $req->getContent();
72 } else {
73 return false;
74 }
75 }
76
77 /**
78 * Simple wrapper for Http::request( 'GET' )
79 * @see Http::request()
80 *
81 * @param $url
82 * @param $timeout string
83 * @param $options array
84 * @return string
85 */
86 public static function get( $url, $timeout = 'default', $options = array() ) {
87 $options['timeout'] = $timeout;
88 return Http::request( 'GET', $url, $options );
89 }
90
91 /**
92 * Simple wrapper for Http::request( 'POST' )
93 * @see Http::request()
94 *
95 * @param $url
96 * @param $options array
97 * @return string
98 */
99 public static function post( $url, $options = array() ) {
100 return Http::request( 'POST', $url, $options );
101 }
102
103 /**
104 * Check if the URL can be served by localhost
105 *
106 * @param $url String: full url to check
107 * @return Boolean
108 */
109 public static function isLocalURL( $url ) {
110 global $wgCommandLineMode, $wgConf;
111
112 if ( $wgCommandLineMode ) {
113 return false;
114 }
115
116 // Extract host part
117 $matches = array();
118 if ( preg_match( '!^http://([\w.-]+)[/:].*$!', $url, $matches ) ) {
119 $host = $matches[1];
120 // Split up dotwise
121 $domainParts = explode( '.', $host );
122 // Check if this domain or any superdomain is listed in $wgConf as a local virtual host
123 $domainParts = array_reverse( $domainParts );
124
125 $domain = '';
126 for ( $i = 0; $i < count( $domainParts ); $i++ ) {
127 $domainPart = $domainParts[$i];
128 if ( $i == 0 ) {
129 $domain = $domainPart;
130 } else {
131 $domain = $domainPart . '.' . $domain;
132 }
133
134 if ( $wgConf->isLocalVHost( $domain ) ) {
135 return true;
136 }
137 }
138 }
139
140 return false;
141 }
142
143 /**
144 * A standard user-agent we can use for external requests.
145 * @return String
146 */
147 public static function userAgent() {
148 global $wgVersion;
149 return "MediaWiki/$wgVersion";
150 }
151
152 /**
153 * Checks that the given URI is a valid one. Hardcoding the
154 * protocols, because we only want protocols that both cURL
155 * and php support.
156 *
157 * file:// should not be allowed here for security purpose (r67684)
158 *
159 * @todo FIXME this is wildly inaccurate and fails to actually check most stuff
160 *
161 * @param $uri Mixed: URI to check for validity
162 * @return Boolean
163 */
164 public static function isValidURI( $uri ) {
165 return preg_match(
166 '/^https?:\/\/[^\/\s]\S*$/D',
167 $uri
168 );
169 }
170 }
171
172 /**
173 * This wrapper class will call out to curl (if available) or fallback
174 * to regular PHP if necessary for handling internal HTTP requests.
175 *
176 * Renamed from HttpRequest to MWHttpRequest to avoid conflict with
177 * PHP's HTTP extension.
178 */
179 class MWHttpRequest {
180 const SUPPORTS_FILE_POSTS = false;
181
182 protected $content;
183 protected $timeout = 'default';
184 protected $headersOnly = null;
185 protected $postData = null;
186 protected $proxy = null;
187 protected $noProxy = false;
188 protected $sslVerifyHost = true;
189 protected $sslVerifyCert = true;
190 protected $caInfo = null;
191 protected $method = "GET";
192 protected $reqHeaders = array();
193 protected $url;
194 protected $parsedUrl;
195 protected $callback;
196 protected $maxRedirects = 5;
197 protected $followRedirects = false;
198
199 /**
200 * @var CookieJar
201 */
202 protected $cookieJar;
203
204 protected $headerList = array();
205 protected $respVersion = "0.9";
206 protected $respStatus = "200 Ok";
207 protected $respHeaders = array();
208
209 public $status;
210
211 /**
212 * @param $url String: url to use. If protocol-relative, will be expanded to an http:// URL
213 * @param $options Array: (optional) extra params to pass (see Http::request())
214 */
215 protected function __construct( $url, $options = array() ) {
216 global $wgHTTPTimeout;
217
218 $this->url = wfExpandUrl( $url, PROTO_HTTP );
219 $this->parsedUrl = wfParseUrl( $this->url );
220
221 if ( !$this->parsedUrl || !Http::isValidURI( $this->url ) ) {
222 $this->status = Status::newFatal( 'http-invalid-url' );
223 } else {
224 $this->status = Status::newGood( 100 ); // continue
225 }
226
227 if ( isset( $options['timeout'] ) && $options['timeout'] != 'default' ) {
228 $this->timeout = $options['timeout'];
229 } else {
230 $this->timeout = $wgHTTPTimeout;
231 }
232 if( isset( $options['userAgent'] ) ) {
233 $this->setUserAgent( $options['userAgent'] );
234 }
235
236 $members = array( "postData", "proxy", "noProxy", "sslVerifyHost", "caInfo",
237 "method", "followRedirects", "maxRedirects", "sslVerifyCert", "callback" );
238
239 foreach ( $members as $o ) {
240 if ( isset( $options[$o] ) ) {
241 // ensure that MWHttpRequest::method is always
242 // uppercased. Bug 36137
243 if ( $o == 'method' ) {
244 $options[$o] = strtoupper( $options[$o] );
245 }
246 $this->$o = $options[$o];
247 }
248 }
249
250 if ( $this->noProxy ) {
251 $this->proxy = ''; // noProxy takes precedence
252 }
253 }
254
255 /**
256 * Simple function to test if we can make any sort of requests at all, using
257 * cURL or fopen()
258 * @return bool
259 */
260 public static function canMakeRequests() {
261 return function_exists( 'curl_init' ) || wfIniGetBool( 'allow_url_fopen' );
262 }
263
264 /**
265 * Generate a new request object
266 * @param $url String: url to use
267 * @param $options Array: (optional) extra params to pass (see Http::request())
268 * @throws MWException
269 * @return CurlHttpRequest|PhpHttpRequest
270 * @see MWHttpRequest::__construct
271 */
272 public static function factory( $url, $options = null ) {
273 if ( !Http::$httpEngine ) {
274 Http::$httpEngine = function_exists( 'curl_init' ) ? 'curl' : 'php';
275 } elseif ( Http::$httpEngine == 'curl' && !function_exists( 'curl_init' ) ) {
276 throw new MWException( __METHOD__ . ': curl (http://php.net/curl) is not installed, but' .
277 ' Http::$httpEngine is set to "curl"' );
278 }
279
280 switch( Http::$httpEngine ) {
281 case 'curl':
282 return new CurlHttpRequest( $url, $options );
283 case 'php':
284 if ( !wfIniGetBool( 'allow_url_fopen' ) ) {
285 throw new MWException( __METHOD__ . ': allow_url_fopen needs to be enabled for pure PHP' .
286 ' http requests to work. If possible, curl should be used instead. See http://php.net/curl.' );
287 }
288 return new PhpHttpRequest( $url, $options );
289 default:
290 throw new MWException( __METHOD__ . ': The setting of Http::$httpEngine is not valid.' );
291 }
292 }
293
294 /**
295 * Get the body, or content, of the response to the request
296 *
297 * @return String
298 */
299 public function getContent() {
300 return $this->content;
301 }
302
303 /**
304 * Set the parameters of the request
305
306 * @param $args Array
307 * @todo overload the args param
308 */
309 public function setData( $args ) {
310 $this->postData = $args;
311 }
312
313 /**
314 * Take care of setting up the proxy (do nothing if "noProxy" is set)
315 *
316 * @return void
317 */
318 public function proxySetup() {
319 global $wgHTTPProxy;
320
321 if ( $this->proxy || !$this->noProxy ) {
322 return;
323 }
324
325 if ( Http::isLocalURL( $this->url ) || $this->noProxy ) {
326 $this->proxy = '';
327 } elseif ( $wgHTTPProxy ) {
328 $this->proxy = $wgHTTPProxy ;
329 } elseif ( getenv( "http_proxy" ) ) {
330 $this->proxy = getenv( "http_proxy" );
331 }
332 }
333
334 /**
335 * Set the refererer header
336 */
337 public function setReferer( $url ) {
338 $this->setHeader( 'Referer', $url );
339 }
340
341 /**
342 * Set the user agent
343 * @param $UA string
344 */
345 public function setUserAgent( $UA ) {
346 $this->setHeader( 'User-Agent', $UA );
347 }
348
349 /**
350 * Set an arbitrary header
351 * @param $name
352 * @param $value
353 */
354 public function setHeader( $name, $value ) {
355 // I feel like I should normalize the case here...
356 $this->reqHeaders[$name] = $value;
357 }
358
359 /**
360 * Get an array of the headers
361 * @return array
362 */
363 public function getHeaderList() {
364 $list = array();
365
366 if ( $this->cookieJar ) {
367 $this->reqHeaders['Cookie'] =
368 $this->cookieJar->serializeToHttpRequest(
369 $this->parsedUrl['path'],
370 $this->parsedUrl['host']
371 );
372 }
373
374 foreach ( $this->reqHeaders as $name => $value ) {
375 $list[] = "$name: $value";
376 }
377
378 return $list;
379 }
380
381 /**
382 * Set a read callback to accept data read from the HTTP request.
383 * By default, data is appended to an internal buffer which can be
384 * retrieved through $req->getContent().
385 *
386 * To handle data as it comes in -- especially for large files that
387 * would not fit in memory -- you can instead set your own callback,
388 * in the form function($resource, $buffer) where the first parameter
389 * is the low-level resource being read (implementation specific),
390 * and the second parameter is the data buffer.
391 *
392 * You MUST return the number of bytes handled in the buffer; if fewer
393 * bytes are reported handled than were passed to you, the HTTP fetch
394 * will be aborted.
395 *
396 * @param $callback Callback
397 * @throws MWException
398 */
399 public function setCallback( $callback ) {
400 if ( !is_callable( $callback ) ) {
401 throw new MWException( 'Invalid MwHttpRequest callback' );
402 }
403 $this->callback = $callback;
404 }
405
406 /**
407 * A generic callback to read the body of the response from a remote
408 * server.
409 *
410 * @param $fh handle
411 * @param $content String
412 * @return int
413 */
414 public function read( $fh, $content ) {
415 $this->content .= $content;
416 return strlen( $content );
417 }
418
419 /**
420 * Take care of whatever is necessary to perform the URI request.
421 *
422 * @return Status
423 */
424 public function execute() {
425 global $wgTitle;
426
427 $this->content = "";
428
429 if ( strtoupper( $this->method ) == "HEAD" ) {
430 $this->headersOnly = true;
431 }
432
433 if ( is_object( $wgTitle ) && !isset( $this->reqHeaders['Referer'] ) ) {
434 $this->setReferer( wfExpandUrl( $wgTitle->getFullURL(), PROTO_CURRENT ) );
435 }
436
437 $this->proxySetup(); // set up any proxy as needed
438
439 if ( !$this->callback ) {
440 $this->setCallback( array( $this, 'read' ) );
441 }
442
443 if ( !isset( $this->reqHeaders['User-Agent'] ) ) {
444 $this->setUserAgent( Http::userAgent() );
445 }
446 }
447
448 /**
449 * Parses the headers, including the HTTP status code and any
450 * Set-Cookie headers. This function expectes the headers to be
451 * found in an array in the member variable headerList.
452 */
453 protected function parseHeader() {
454 $lastname = "";
455
456 foreach ( $this->headerList as $header ) {
457 if ( preg_match( "#^HTTP/([0-9.]+) (.*)#", $header, $match ) ) {
458 $this->respVersion = $match[1];
459 $this->respStatus = $match[2];
460 } elseif ( preg_match( "#^[ \t]#", $header ) ) {
461 $last = count( $this->respHeaders[$lastname] ) - 1;
462 $this->respHeaders[$lastname][$last] .= "\r\n$header";
463 } elseif ( preg_match( "#^([^:]*):[\t ]*(.*)#", $header, $match ) ) {
464 $this->respHeaders[strtolower( $match[1] )][] = $match[2];
465 $lastname = strtolower( $match[1] );
466 }
467 }
468
469 $this->parseCookies();
470 }
471
472 /**
473 * Sets HTTPRequest status member to a fatal value with the error
474 * message if the returned integer value of the status code was
475 * not successful (< 300) or a redirect (>=300 and < 400). (see
476 * RFC2616, section 10,
477 * http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html for a
478 * list of status codes.)
479 */
480 protected function setStatus() {
481 if ( !$this->respHeaders ) {
482 $this->parseHeader();
483 }
484
485 if ( (int)$this->respStatus > 399 ) {
486 list( $code, $message ) = explode( " ", $this->respStatus, 2 );
487 $this->status->fatal( "http-bad-status", $code, $message );
488 }
489 }
490
491 /**
492 * Get the integer value of the HTTP status code (e.g. 200 for "200 Ok")
493 * (see RFC2616, section 10, http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
494 * for a list of status codes.)
495 *
496 * @return Integer
497 */
498 public function getStatus() {
499 if ( !$this->respHeaders ) {
500 $this->parseHeader();
501 }
502
503 return (int)$this->respStatus;
504 }
505
506
507 /**
508 * Returns true if the last status code was a redirect.
509 *
510 * @return Boolean
511 */
512 public function isRedirect() {
513 if ( !$this->respHeaders ) {
514 $this->parseHeader();
515 }
516
517 $status = (int)$this->respStatus;
518
519 if ( $status >= 300 && $status <= 303 ) {
520 return true;
521 }
522
523 return false;
524 }
525
526 /**
527 * Returns an associative array of response headers after the
528 * request has been executed. Because some headers
529 * (e.g. Set-Cookie) can appear more than once the, each value of
530 * the associative array is an array of the values given.
531 *
532 * @return Array
533 */
534 public function getResponseHeaders() {
535 if ( !$this->respHeaders ) {
536 $this->parseHeader();
537 }
538
539 return $this->respHeaders;
540 }
541
542 /**
543 * Returns the value of the given response header.
544 *
545 * @param $header String
546 * @return String
547 */
548 public function getResponseHeader( $header ) {
549 if ( !$this->respHeaders ) {
550 $this->parseHeader();
551 }
552
553 if ( isset( $this->respHeaders[strtolower ( $header ) ] ) ) {
554 $v = $this->respHeaders[strtolower ( $header ) ];
555 return $v[count( $v ) - 1];
556 }
557
558 return null;
559 }
560
561 /**
562 * Tells the MWHttpRequest object to use this pre-loaded CookieJar.
563 *
564 * @param $jar CookieJar
565 */
566 public function setCookieJar( $jar ) {
567 $this->cookieJar = $jar;
568 }
569
570 /**
571 * Returns the cookie jar in use.
572 *
573 * @return CookieJar
574 */
575 public function getCookieJar() {
576 if ( !$this->respHeaders ) {
577 $this->parseHeader();
578 }
579
580 return $this->cookieJar;
581 }
582
583 /**
584 * Sets a cookie. Used before a request to set up any individual
585 * cookies. Used internally after a request to parse the
586 * Set-Cookie headers.
587 * @see Cookie::set
588 * @param $name
589 * @param $value null
590 * @param $attr null
591 */
592 public function setCookie( $name, $value = null, $attr = null ) {
593 if ( !$this->cookieJar ) {
594 $this->cookieJar = new CookieJar;
595 }
596
597 $this->cookieJar->setCookie( $name, $value, $attr );
598 }
599
600 /**
601 * Parse the cookies in the response headers and store them in the cookie jar.
602 */
603 protected function parseCookies() {
604 if ( !$this->cookieJar ) {
605 $this->cookieJar = new CookieJar;
606 }
607
608 if ( isset( $this->respHeaders['set-cookie'] ) ) {
609 $url = parse_url( $this->getFinalUrl() );
610 foreach ( $this->respHeaders['set-cookie'] as $cookie ) {
611 $this->cookieJar->parseCookieResponseHeader( $cookie, $url['host'] );
612 }
613 }
614 }
615
616 /**
617 * Returns the final URL after all redirections.
618 *
619 * Relative values of the "Location" header are incorrect as stated in RFC, however they do happen and modern browsers support them.
620 * This function loops backwards through all locations in order to build the proper absolute URI - Marooned at wikia-inc.com
621 *
622 * Note that the multiple Location: headers are an artifact of CURL -- they
623 * shouldn't actually get returned this way. Rewrite this when bug 29232 is
624 * taken care of (high-level redirect handling rewrite).
625 *
626 * @return string
627 */
628 public function getFinalUrl() {
629 $headers = $this->getResponseHeaders();
630
631 //return full url (fix for incorrect but handled relative location)
632 if ( isset( $headers[ 'location' ] ) ) {
633 $locations = $headers[ 'location' ];
634 $domain = '';
635 $foundRelativeURI = false;
636 $countLocations = count($locations);
637
638 for ( $i = $countLocations - 1; $i >= 0; $i-- ) {
639 $url = parse_url( $locations[ $i ] );
640
641 if ( isset($url[ 'host' ]) ) {
642 $domain = $url[ 'scheme' ] . '://' . $url[ 'host' ];
643 break; //found correct URI (with host)
644 } else {
645 $foundRelativeURI = true;
646 }
647 }
648
649 if ( $foundRelativeURI ) {
650 if ( $domain ) {
651 return $domain . $locations[ $countLocations - 1 ];
652 } else {
653 $url = parse_url( $this->url );
654 if ( isset($url[ 'host' ]) ) {
655 return $url[ 'scheme' ] . '://' . $url[ 'host' ] . $locations[ $countLocations - 1 ];
656 }
657 }
658 } else {
659 return $locations[ $countLocations - 1 ];
660 }
661 }
662
663 return $this->url;
664 }
665
666 /**
667 * Returns true if the backend can follow redirects. Overridden by the
668 * child classes.
669 * @return bool
670 */
671 public function canFollowRedirects() {
672 return true;
673 }
674 }
675
676 /**
677 * MWHttpRequest implemented using internal curl compiled into PHP
678 */
679 class CurlHttpRequest extends MWHttpRequest {
680 const SUPPORTS_FILE_POSTS = true;
681
682 static $curlMessageMap = array(
683 6 => 'http-host-unreachable',
684 28 => 'http-timed-out'
685 );
686
687 protected $curlOptions = array();
688 protected $headerText = "";
689
690 /**
691 * @param $fh
692 * @param $content
693 * @return int
694 */
695 protected function readHeader( $fh, $content ) {
696 $this->headerText .= $content;
697 return strlen( $content );
698 }
699
700 public function execute() {
701 parent::execute();
702
703 if ( !$this->status->isOK() ) {
704 return $this->status;
705 }
706
707 $this->curlOptions[CURLOPT_PROXY] = $this->proxy;
708 $this->curlOptions[CURLOPT_TIMEOUT] = $this->timeout;
709 $this->curlOptions[CURLOPT_HTTP_VERSION] = CURL_HTTP_VERSION_1_0;
710 $this->curlOptions[CURLOPT_WRITEFUNCTION] = $this->callback;
711 $this->curlOptions[CURLOPT_HEADERFUNCTION] = array( $this, "readHeader" );
712 $this->curlOptions[CURLOPT_MAXREDIRS] = $this->maxRedirects;
713 $this->curlOptions[CURLOPT_ENCODING] = ""; # Enable compression
714
715 /* not sure these two are actually necessary */
716 if ( isset( $this->reqHeaders['Referer'] ) ) {
717 $this->curlOptions[CURLOPT_REFERER] = $this->reqHeaders['Referer'];
718 }
719 $this->curlOptions[CURLOPT_USERAGENT] = $this->reqHeaders['User-Agent'];
720
721 if ( isset( $this->sslVerifyHost ) ) {
722 $this->curlOptions[CURLOPT_SSL_VERIFYHOST] = $this->sslVerifyHost;
723 }
724
725 if ( isset( $this->sslVerifyCert ) ) {
726 $this->curlOptions[CURLOPT_SSL_VERIFYPEER] = $this->sslVerifyCert;
727 }
728
729 if ( $this->caInfo ) {
730 $this->curlOptions[CURLOPT_CAINFO] = $this->caInfo;
731 }
732
733 if ( $this->headersOnly ) {
734 $this->curlOptions[CURLOPT_NOBODY] = true;
735 $this->curlOptions[CURLOPT_HEADER] = true;
736 } elseif ( $this->method == 'POST' ) {
737 $this->curlOptions[CURLOPT_POST] = true;
738 $this->curlOptions[CURLOPT_POSTFIELDS] = $this->postData;
739 // Suppress 'Expect: 100-continue' header, as some servers
740 // will reject it with a 417 and Curl won't auto retry
741 // with HTTP 1.0 fallback
742 $this->reqHeaders['Expect'] = '';
743 } else {
744 $this->curlOptions[CURLOPT_CUSTOMREQUEST] = $this->method;
745 }
746
747 $this->curlOptions[CURLOPT_HTTPHEADER] = $this->getHeaderList();
748
749 $curlHandle = curl_init( $this->url );
750
751 if ( !curl_setopt_array( $curlHandle, $this->curlOptions ) ) {
752 throw new MWException( "Error setting curl options." );
753 }
754
755 if ( $this->followRedirects && $this->canFollowRedirects() ) {
756 wfSuppressWarnings();
757 if ( ! curl_setopt( $curlHandle, CURLOPT_FOLLOWLOCATION, true ) ) {
758 wfDebug( __METHOD__ . ": Couldn't set CURLOPT_FOLLOWLOCATION. " .
759 "Probably safe_mode or open_basedir is set.\n" );
760 // Continue the processing. If it were in curl_setopt_array,
761 // processing would have halted on its entry
762 }
763 wfRestoreWarnings();
764 }
765
766 if ( false === curl_exec( $curlHandle ) ) {
767 $code = curl_error( $curlHandle );
768
769 if ( isset( self::$curlMessageMap[$code] ) ) {
770 $this->status->fatal( self::$curlMessageMap[$code] );
771 } else {
772 $this->status->fatal( 'http-curl-error', curl_error( $curlHandle ) );
773 }
774 } else {
775 $this->headerList = explode( "\r\n", $this->headerText );
776 }
777
778 curl_close( $curlHandle );
779
780 $this->parseHeader();
781 $this->setStatus();
782
783 return $this->status;
784 }
785
786 /**
787 * @return bool
788 */
789 public function canFollowRedirects() {
790 if ( strval( ini_get( 'open_basedir' ) ) !== '' || wfIniGetBool( 'safe_mode' ) ) {
791 wfDebug( "Cannot follow redirects in safe mode\n" );
792 return false;
793 }
794
795 if ( !defined( 'CURLOPT_REDIR_PROTOCOLS' ) ) {
796 wfDebug( "Cannot follow redirects with libcurl < 7.19.4 due to CVE-2009-0037\n" );
797 return false;
798 }
799
800 return true;
801 }
802 }
803
804 class PhpHttpRequest extends MWHttpRequest {
805
806 /**
807 * @param $url string
808 * @return string
809 */
810 protected function urlToTcp( $url ) {
811 $parsedUrl = parse_url( $url );
812
813 return 'tcp://' . $parsedUrl['host'] . ':' . $parsedUrl['port'];
814 }
815
816 public function execute() {
817 parent::execute();
818
819 if ( is_array( $this->postData ) ) {
820 $this->postData = wfArrayToCGI( $this->postData );
821 }
822
823 if ( $this->parsedUrl['scheme'] != 'http' &&
824 $this->parsedUrl['scheme'] != 'https' ) {
825 $this->status->fatal( 'http-invalid-scheme', $this->parsedUrl['scheme'] );
826 }
827
828 $this->reqHeaders['Accept'] = "*/*";
829 if ( $this->method == 'POST' ) {
830 // Required for HTTP 1.0 POSTs
831 $this->reqHeaders['Content-Length'] = strlen( $this->postData );
832 if( !isset( $this->reqHeaders['Content-Type'] ) ) {
833 $this->reqHeaders['Content-Type'] = "application/x-www-form-urlencoded";
834 }
835 }
836
837 $options = array();
838 if ( $this->proxy ) {
839 $options['proxy'] = $this->urlToTCP( $this->proxy );
840 $options['request_fulluri'] = true;
841 }
842
843 if ( !$this->followRedirects ) {
844 $options['max_redirects'] = 0;
845 } else {
846 $options['max_redirects'] = $this->maxRedirects;
847 }
848
849 $options['method'] = $this->method;
850 $options['header'] = implode( "\r\n", $this->getHeaderList() );
851 // Note that at some future point we may want to support
852 // HTTP/1.1, but we'd have to write support for chunking
853 // in version of PHP < 5.3.1
854 $options['protocol_version'] = "1.0";
855
856 // This is how we tell PHP we want to deal with 404s (for example) ourselves.
857 // Only works on 5.2.10+
858 $options['ignore_errors'] = true;
859
860 if ( $this->postData ) {
861 $options['content'] = $this->postData;
862 }
863
864 $options['timeout'] = $this->timeout;
865
866 $context = stream_context_create( array( 'http' => $options ) );
867
868 $this->headerList = array();
869 $reqCount = 0;
870 $url = $this->url;
871
872 $result = array();
873
874 do {
875 $reqCount++;
876 wfSuppressWarnings();
877 $fh = fopen( $url, "r", false, $context );
878 wfRestoreWarnings();
879
880 if ( !$fh ) {
881 break;
882 }
883
884 $result = stream_get_meta_data( $fh );
885 $this->headerList = $result['wrapper_data'];
886 $this->parseHeader();
887
888 if ( !$this->followRedirects ) {
889 break;
890 }
891
892 # Handle manual redirection
893 if ( !$this->isRedirect() || $reqCount > $this->maxRedirects ) {
894 break;
895 }
896 # Check security of URL
897 $url = $this->getResponseHeader( "Location" );
898
899 if ( !Http::isValidURI( $url ) ) {
900 wfDebug( __METHOD__ . ": insecure redirection\n" );
901 break;
902 }
903 } while ( true );
904
905 $this->setStatus();
906
907 if ( $fh === false ) {
908 $this->status->fatal( 'http-request-error' );
909 return $this->status;
910 }
911
912 if ( $result['timed_out'] ) {
913 $this->status->fatal( 'http-timed-out', $this->url );
914 return $this->status;
915 }
916
917 // If everything went OK, or we received some error code
918 // get the response body content.
919 if ( $this->status->isOK()
920 || (int)$this->respStatus >= 300) {
921 while ( !feof( $fh ) ) {
922 $buf = fread( $fh, 8192 );
923
924 if ( $buf === false ) {
925 $this->status->fatal( 'http-read-error' );
926 break;
927 }
928
929 if ( strlen( $buf ) ) {
930 call_user_func( $this->callback, $fh, $buf );
931 }
932 }
933 }
934 fclose( $fh );
935
936 return $this->status;
937 }
938 }