Add support for Number grouping(commafy) based on CLDR number grouping patterns like...
[lhc/web/wiklou.git] / includes / HttpFunctions.php
index b82de8d..aa69ae7 100644 (file)
@@ -8,22 +8,42 @@
  * @ingroup HTTP
  */
 class Http {
+       static $httpEngine = false;
+
        /**
         * Perform an HTTP request
-        * @param $method string HTTP method. Usually GET/POST
-        * @param $url string Full URL to act on
-        * @param $opts options to pass to HttpRequest object
-        * @returns mixed (bool)false on failure or a string on success
+        *
+        * @param $method String: HTTP method. Usually GET/POST
+        * @param $url String: full URL to act on. If protocol-relative, will be expanded to an http:// URL
+        * @param $options Array: options to pass to MWHttpRequest object.
+        *      Possible keys for the array:
+        *    - timeout             Timeout length in seconds
+        *    - postData            An array of key-value pairs or a url-encoded form data
+        *    - proxy               The proxy to use.
+        *                          Will use $wgHTTPProxy (if set) otherwise.
+        *    - noProxy             Override $wgHTTPProxy (if set) and don't use any proxy at all.
+        *    - sslVerifyHost       (curl only) Verify hostname against certificate
+        *    - sslVerifyCert       (curl only) Verify SSL certificate
+        *    - caInfo              (curl only) Provide CA information
+        *    - maxRedirects        Maximum number of redirects to follow (defaults to 5)
+        *    - followRedirects     Whether to follow redirects (defaults to false).
+        *                                  Note: this should only be used when the target URL is trusted,
+        *                                  to avoid attacks on intranet services accessible by HTTP.
+        * @return Mixed: (bool)false on failure or a string on success
         */
-       public static function request( $method, $url, $opts = array() ) {
-               $opts['method'] = strtoupper( $method );
-               if ( !array_key_exists( 'timeout', $opts ) ) {
-                       $opts['timeout'] = 'default';
+       public static function request( $method, $url, $options = array() ) {
+               wfDebug( "HTTP: $method: $url\n" );
+               $options['method'] = strtoupper( $method );
+
+               if ( !isset( $options['timeout'] ) ) {
+                       $options['timeout'] = 'default';
                }
-               $req = HttpRequest::factory( $url, $opts );
+
+               $req = MWHttpRequest::factory( $url, $options );
                $status = $req->execute();
+
                if ( $status->isOK() ) {
-                       return $req;
+                       return $req->getContent();
                } else {
                        return false;
                }
@@ -32,27 +52,33 @@ class Http {
        /**
         * Simple wrapper for Http::request( 'GET' )
         * @see Http::request()
+        *
+        * @return string
         */
-       public static function get( $url, $timeout = 'default', $opts = array() ) {
-               $opts['timeout'] = $timeout;
-               return Http::request( 'GET', $url, $opts );
+       public static function get( $url, $timeout = 'default', $options = array() ) {
+               $options['timeout'] = $timeout;
+               return Http::request( 'GET', $url, $options );
        }
 
        /**
         * Simple wrapper for Http::request( 'POST' )
         * @see Http::request()
+        *
+        * @return string
         */
-       public static function post( $url, $opts = array() ) {
-               return Http::request( 'POST', $url, $opts );
+       public static function post( $url, $options = array() ) {
+               return Http::request( 'POST', $url, $options );
        }
 
        /**
         * Check if the URL can be served by localhost
-        * @param $url string Full url to check
-        * @return bool
+        *
+        * @param $url String: full url to check
+        * @return Boolean
         */
        public static function isLocalURL( $url ) {
                global $wgCommandLineMode, $wgConf;
+
                if ( $wgCommandLineMode ) {
                        return false;
                }
@@ -65,6 +91,8 @@ class Http {
                        $domainParts = explode( '.', $host );
                        // Check if this domain or any superdomain is listed in $wgConf as a local virtual host
                        $domainParts = array_reverse( $domainParts );
+
+                       $domain = '';
                        for ( $i = 0; $i < count( $domainParts ); $i++ ) {
                                $domainPart = $domainParts[$i];
                                if ( $i == 0 ) {
@@ -72,17 +100,19 @@ class Http {
                                } else {
                                        $domain = $domainPart . '.' . $domain;
                                }
+
                                if ( $wgConf->isLocalVHost( $domain ) ) {
                                        return true;
                                }
                        }
                }
+
                return false;
        }
 
        /**
         * A standard user-agent we can use for external requests.
-        * @returns string
+        * @return String
         */
        public static function userAgent() {
                global $wgVersion;
@@ -90,15 +120,19 @@ class Http {
        }
 
        /**
-        * Checks that the given URI is a valid one
+        * Checks that the given URI is a valid one. Hardcoding the
+        * protocols, because we only want protocols that both cURL
+        * and php support.
+        *
+        * @fixme this is wildly inaccurate and fails to actually check most stuff
+        *
         * @param $uri Mixed: URI to check for validity
-        * @returns bool
+        * @returns Boolean
         */
        public static function isValidURI( $uri ) {
                return preg_match(
-                       '/(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/',
-                       $uri,
-                       $matches
+                       '/^https?:\/\/[^\/\s]\S*$/D',
+                       $uri
                );
        }
 }
@@ -106,329 +140,730 @@ class Http {
 /**
  * This wrapper class will call out to curl (if available) or fallback
  * to regular PHP if necessary for handling internal HTTP requests.
+ *
+ * Renamed from HttpRequest to MWHttpRequest to avoid conflict with
+ * PHP's HTTP extension.
  */
-class HttpRequest {
+class MWHttpRequest {
+       const SUPPORTS_FILE_POSTS = false;
+
        protected $content;
        protected $timeout = 'default';
        protected $headersOnly = null;
-       protected $postdata = null;
+       protected $postData = null;
        protected $proxy = null;
-       protected $no_proxy = false;
+       protected $noProxy = false;
        protected $sslVerifyHost = true;
+       protected $sslVerifyCert = true;
        protected $caInfo = null;
        protected $method = "GET";
+       protected $reqHeaders = array();
        protected $url;
-       protected $parsed_url;
+       protected $parsedUrl;
+       protected $callback;
+       protected $maxRedirects = 5;
+       protected $followRedirects = false;
+
+       /**
+        * @var  CookieJar
+        */
+       protected $cookieJar;
+
+       protected $headerList = array();
+       protected $respVersion = "0.9";
+       protected $respStatus = "200 Ok";
+       protected $respHeaders = array();
+
        public $status;
 
        /**
-        * @param $url   string url to use
-        * @param $options array (optional) extra params to pass
-        *                               Possible keys for the array:
-        *                                      method
-        *                                      timeout
-        *                                      targetFilePath
-        *                                      requestKey
-        *                                      headersOnly
-        *                                      postdata
-        *                                      proxy
-        *                                      no_proxy
-        *                                      sslVerifyHost
-        *                                      caInfo
-        */
-       function __construct( $url = null, $opt = array() ) {
-               global $wgHTTPTimeout, $wgTitle;
-
-               $this->url = $url;
-               $this->parsed_url = parse_url( $url );
-
-               if ( !ini_get( 'allow_url_fopen' ) ) {
-                       throw new MWException( 'allow_url_fopen needs to be enabled for http requests to work' );
-               } elseif ( !Http::isValidURI( $this->url ) ) {
-                       throw new MWException( 'Invalid URL' );
+        * @param $url String: url to use. If protocol-relative, will be expanded to an http:// URL
+        * @param $options Array: (optional) extra params to pass (see Http::request())
+        */
+       function __construct( $url, $options = array() ) {
+               global $wgHTTPTimeout;
+
+               $this->url = wfExpandUrl( $url, PROTO_HTTP );
+               $this->parsedUrl = wfParseUrl( $this->url );
+
+               if ( !$this->parsedUrl || !Http::isValidURI( $this->url ) ) {
+                       $this->status = Status::newFatal( 'http-invalid-url' );
                } else {
                        $this->status = Status::newGood( 100 ); // continue
                }
 
-               if ( array_key_exists( 'timeout', $opt ) && $opt['timeout'] != 'default' ) {
-                       $this->timeout = $opt['timeout'];
+               if ( isset( $options['timeout'] ) && $options['timeout'] != 'default' ) {
+                       $this->timeout = $options['timeout'];
                } else {
                        $this->timeout = $wgHTTPTimeout;
                }
 
-               $members = array( "targetFilePath", "requestKey", "headersOnly", "postdata",
-                                                 "proxy", "no_proxy", "sslVerifyHost", "caInfo", "method" );
+               $members = array( "postData", "proxy", "noProxy", "sslVerifyHost", "caInfo",
+                                 "method", "followRedirects", "maxRedirects", "sslVerifyCert", "callback" );
+
                foreach ( $members as $o ) {
-                       if ( array_key_exists( $o, $opt ) ) {
-                               $this->$o = $opt[$o];
+                       if ( isset( $options[$o] ) ) {
+                               $this->$o = $options[$o];
                        }
                }
+       }
+
+       /**
+        * Simple function to test if we can make any sort of requests at all, using
+        * cURL or fopen()
+        * @return bool
+        */
+       public static function canMakeRequests() {
+               return function_exists( 'curl_init' ) || wfIniGetBool( 'allow_url_fopen' );
+       }
+
+       /**
+        * Generate a new request object
+        * @param $url String: url to use
+        * @param $options Array: (optional) extra params to pass (see Http::request())
+        * @see MWHttpRequest::__construct
+        */
+       public static function factory( $url, $options = null ) {
+               if ( !Http::$httpEngine ) {
+                       Http::$httpEngine = function_exists( 'curl_init' ) ? 'curl' : 'php';
+               } elseif ( Http::$httpEngine == 'curl' && !function_exists( 'curl_init' ) ) {
+                       throw new MWException( __METHOD__ . ': curl (http://php.net/curl) is not installed, but' .
+                                                                  ' Http::$httpEngine is set to "curl"' );
+               }
+
+               switch( Http::$httpEngine ) {
+                       case 'curl':
+                               return new CurlHttpRequest( $url, $options );
+                       case 'php':
+                               if ( !wfIniGetBool( 'allow_url_fopen' ) ) {
+                                       throw new MWException( __METHOD__ . ': allow_url_fopen needs to be enabled for pure PHP' .
+                                               ' http requests to work. If possible, curl should be used instead. See http://php.net/curl.' );
+                               }
+                               return new PhpHttpRequest( $url, $options );
+                       default:
+                               throw new MWException( __METHOD__ . ': The setting of Http::$httpEngine is not valid.' );
+               }
+       }
+
+       /**
+        * Get the body, or content, of the response to the request
+        *
+        * @return String
+        */
+       public function getContent() {
+               return $this->content;
+       }
+
+       /**
+        * Set the parameters of the request
+
+        * @param $args Array
+        * @todo overload the args param
+        */
+       public function setData( $args ) {
+               $this->postData = $args;
+       }
+
+       /**
+        * Take care of setting up the proxy
+        * (override in subclass)
+        *
+        * @return String
+        */
+       public function proxySetup() {
+               global $wgHTTPProxy;
+
+               if ( $this->proxy ) {
+                       return;
+               }
+
+               if ( Http::isLocalURL( $this->url ) ) {
+                       $this->proxy = 'http://localhost:80/';
+               } elseif ( $wgHTTPProxy ) {
+                       $this->proxy = $wgHTTPProxy ;
+               } elseif ( getenv( "http_proxy" ) ) {
+                       $this->proxy = getenv( "http_proxy" );
+               }
+       }
+
+       /**
+        * Set the refererer header
+        */
+       public function setReferer( $url ) {
+               $this->setHeader( 'Referer', $url );
+       }
+
+       /**
+        * Set the user agent
+        */
+       public function setUserAgent( $UA ) {
+               $this->setHeader( 'User-Agent', $UA );
+       }
+
+       /**
+        * Set an arbitrary header
+        */
+       public function setHeader( $name, $value ) {
+               // I feel like I should normalize the case here...
+               $this->reqHeaders[$name] = $value;
+       }
+
+       /**
+        * Get an array of the headers
+        */
+       public function getHeaderList() {
+               $list = array();
+
+               if ( $this->cookieJar ) {
+                       $this->reqHeaders['Cookie'] =
+                               $this->cookieJar->serializeToHttpRequest(
+                                       $this->parsedUrl['path'],
+                                       $this->parsedUrl['host']
+                               );
+               }
 
-               if ( is_array( $this->postdata ) ) {
-                       $this->postdata = wfArrayToCGI( $this->postdata );
+               foreach ( $this->reqHeaders as $name => $value ) {
+                       $list[] = "$name: $value";
                }
 
-               $this->initRequest();
+               return $list;
+       }
+
+       /**
+        * Set a read callback to accept data read from the HTTP request.
+        * By default, data is appended to an internal buffer which can be
+        * retrieved through $req->getContent().
+        *
+        * To handle data as it comes in -- especially for large files that
+        * would not fit in memory -- you can instead set your own callback,
+        * in the form function($resource, $buffer) where the first parameter
+        * is the low-level resource being read (implementation specific),
+        * and the second parameter is the data buffer.
+        *
+        * You MUST return the number of bytes handled in the buffer; if fewer
+        * bytes are reported handled than were passed to you, the HTTP fetch
+        * will be aborted.
+        *
+        * @param $callback Callback
+        */
+       public function setCallback( $callback ) {
+               if ( !is_callable( $callback ) ) {
+                       throw new MWException( 'Invalid MwHttpRequest callback' );
+               }
+               $this->callback = $callback;
+       }
+
+       /**
+        * A generic callback to read the body of the response from a remote
+        * server.
+        *
+        * @param $fh handle
+        * @param $content String
+        */
+       public function read( $fh, $content ) {
+               $this->content .= $content;
+               return strlen( $content );
+       }
+
+       /**
+        * Take care of whatever is necessary to perform the URI request.
+        *
+        * @return Status
+        */
+       public function execute() {
+               global $wgTitle;
 
-               if ( !$this->no_proxy ) {
+               $this->content = "";
+
+               if ( strtoupper( $this->method ) == "HEAD" ) {
+                       $this->headersOnly = true;
+               }
+
+               if ( is_object( $wgTitle ) && !isset( $this->reqHeaders['Referer'] ) ) {
+                       $this->setReferer( wfExpandUrl( $wgTitle->getFullURL(), PROTO_CURRENT ) );
+               }
+
+               if ( !$this->noProxy ) {
                        $this->proxySetup();
                }
 
-               # Set the referer to $wgTitle, even in command-line mode
-               # This is useful for interwiki transclusion, where the foreign
-               # server wants to know what the referring page is.
-               # $_SERVER['REQUEST_URI'] gives a less reliable indication of the
-               # referring page.
-               if ( is_object( $wgTitle ) ) {
-                       $this->setReferrer( $wgTitle->getFullURL() );
+               if ( !$this->callback ) {
+                       $this->setCallback( array( $this, 'read' ) );
+               }
+
+               if ( !isset( $this->reqHeaders['User-Agent'] ) ) {
+                       $this->setUserAgent( Http::userAgent() );
                }
        }
 
        /**
-        * For backwards compatibility, we provide a __toString method so
-        * that any code that expects a string result from Http::Get()
-        * will see the content of the request.
+        * Parses the headers, including the HTTP status code and any
+        * Set-Cookie headers.  This function expectes the headers to be
+        * found in an array in the member variable headerList.
+        *
+        * @return nothing
         */
-       function __toString() {
-               return $this->content;
+       protected function parseHeader() {
+               $lastname = "";
+
+               foreach ( $this->headerList as $header ) {
+                       if ( preg_match( "#^HTTP/([0-9.]+) (.*)#", $header, $match ) ) {
+                               $this->respVersion = $match[1];
+                               $this->respStatus = $match[2];
+                       } elseif ( preg_match( "#^[ \t]#", $header ) ) {
+                               $last = count( $this->respHeaders[$lastname] ) - 1;
+                               $this->respHeaders[$lastname][$last] .= "\r\n$header";
+                       } elseif ( preg_match( "#^([^:]*):[\t ]*(.*)#", $header, $match ) ) {
+                               $this->respHeaders[strtolower( $match[1] )][] = $match[2];
+                               $lastname = strtolower( $match[1] );
+                       }
+               }
+
+               $this->parseCookies();
        }
 
        /**
-        * Generate a new request object
-        * @see HttpRequest::__construct
+        * Sets HTTPRequest status member to a fatal value with the error
+        * message if the returned integer value of the status code was
+        * not successful (< 300) or a redirect (>=300 and < 400).  (see
+        * RFC2616, section 10,
+        * http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html for a
+        * list of status codes.)
+        *
+        * @return nothing
         */
-       public static function factory( $url, $opt ) {
-               global $wgHTTPEngine;
-               $engine = $wgHTTPEngine;
+       protected function setStatus() {
+               if ( !$this->respHeaders ) {
+                       $this->parseHeader();
+               }
 
-               if ( !$wgHTTPEngine ) {
-                       $wgHTTPEngine = function_exists( 'curl_init' ) ? 'curl' : 'php';
-               } elseif ( $wgHTTPEngine == 'curl' && !function_exists( 'curl_init' ) ) {
-                       throw new MWException( 'FIXME' );
+               if ( (int)$this->respStatus > 399 ) {
+                       list( $code, $message ) = explode( " ", $this->respStatus, 2 );
+                       $this->status->fatal( "http-bad-status", $code, $message );
                }
+       }
 
-               switch( $wgHTTPEngine ) {
-               case 'curl':
-                       return new CurlHttpRequest( $url, $opt );
-               case 'php':
-                       return new PhpHttpRequest( $url, $opt );
-               default:
-                       throw new MWException( 'The setting of $wgHTTPEngine is not valid.' );
+       /**
+        * Get the integer value of the HTTP status code (e.g. 200 for "200 Ok")
+        * (see RFC2616, section 10, http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
+        * for a list of status codes.)
+        *
+        * @return Integer
+        */
+       public function getStatus() {
+               if ( !$this->respHeaders ) {
+                       $this->parseHeader();
                }
+
+               return (int)$this->respStatus;
        }
 
-       public function getContent() {
-               return $this->content;
+
+       /**
+        * Returns true if the last status code was a redirect.
+        *
+        * @return Boolean
+        */
+       public function isRedirect() {
+               if ( !$this->respHeaders ) {
+                       $this->parseHeader();
+               }
+
+               $status = (int)$this->respStatus;
+
+               if ( $status >= 300 && $status <= 303 ) {
+                       return true;
+               }
+
+               return false;
        }
 
-       public function initRequest() { }
-       public function proxySetup() { }
-       public function setReferrer( $url ) { }
-       public function setCallback( $cb ) { }
-       public function read( $fh, $content ) { }
-       public function getCode() { }
-       public function execute() { }
-}
+       /**
+        * Returns an associative array of response headers after the
+        * request has been executed.  Because some headers
+        * (e.g. Set-Cookie) can appear more than once the, each value of
+        * the associative array is an array of the values given.
+        *
+        * @return Array
+        */
+       public function getResponseHeaders() {
+               if ( !$this->respHeaders ) {
+                       $this->parseHeader();
+               }
 
-/**
- * HttpRequest implemented using internal curl compiled into PHP
- */
-class CurlHttpRequest extends HttpRequest {
-       protected $curlHandle;
-       protected $curlCBSet;
+               return $this->respHeaders;
+       }
+
+       /**
+        * Returns the value of the given response header.
+        *
+        * @param $header String
+        * @return String
+        */
+       public function getResponseHeader( $header ) {
+               if ( !$this->respHeaders ) {
+                       $this->parseHeader();
+               }
+
+               if ( isset( $this->respHeaders[strtolower ( $header ) ] ) ) {
+                       $v = $this->respHeaders[strtolower ( $header ) ];
+                       return $v[count( $v ) - 1];
+               }
 
-       public function initRequest() {
-               $this->curlHandle = curl_init( $this->url );
+               return null;
        }
 
-       public function proxySetup() {
-               global $wgHTTPProxy;
+       /**
+        * Tells the MWHttpRequest object to use this pre-loaded CookieJar.
+        *
+        * @param $jar CookieJar
+        */
+       public function setCookieJar( $jar ) {
+               $this->cookieJar = $jar;
+       }
 
-               if ( is_string( $this->proxy ) ) {
-                       curl_setopt( $this->curlHandle, CURLOPT_PROXY, $this->proxy );
-               } else if ( Http::isLocalURL( $this->url ) ) { /* Not sure this makes any sense. */
-                       curl_setopt( $this->curlHandle, CURLOPT_PROXY, 'localhost:80' );
-               } else if ( $wgHTTPProxy ) {
-                       curl_setopt( $this->curlHandle, CURLOPT_PROXY, $wgHTTPProxy );
+       /**
+        * Returns the cookie jar in use.
+        *
+        * @returns CookieJar
+        */
+       public function getCookieJar() {
+               if ( !$this->respHeaders ) {
+                       $this->parseHeader();
                }
+
+               return $this->cookieJar;
        }
 
-       public function setCallback( $cb ) {
-               if ( !$this->curlCBSet ) {
-                       $this->curlCBSet = true;
-                       curl_setopt( $this->curlHandle, CURLOPT_WRITEFUNCTION, $cb );
+       /**
+        * Sets a cookie.  Used before a request to set up any individual
+        * cookies.      Used internally after a request to parse the
+        * Set-Cookie headers.
+        * @see Cookie::set
+        */
+       public function setCookie( $name, $value = null, $attr = null ) {
+               if ( !$this->cookieJar ) {
+                       $this->cookieJar = new CookieJar;
                }
+
+               $this->cookieJar->setCookie( $name, $value, $attr );
+       }
+
+       /**
+        * Parse the cookies in the response headers and store them in the cookie jar.
+        */
+       protected function parseCookies() {
+               if ( !$this->cookieJar ) {
+                       $this->cookieJar = new CookieJar;
+               }
+
+               if ( isset( $this->respHeaders['set-cookie'] ) ) {
+                       $url = parse_url( $this->getFinalUrl() );
+                       foreach ( $this->respHeaders['set-cookie'] as $cookie ) {
+                               $this->cookieJar->parseCookieResponseHeader( $cookie, $url['host'] );
+                       }
+               }
+       }
+
+       /**
+        * Returns the final URL after all redirections.
+        *
+        * Relative values of the "Location" header are incorrect as stated in RFC, however they do happen and modern browsers support them.
+        * This function loops backwards through all locations in order to build the proper absolute URI - Marooned at wikia-inc.com
+        *
+        * @returns string
+        */
+       public function getFinalUrl() {
+               $headers = $this->getResponseHeaders();
+
+               //return full url (fix for incorrect but handled relative location)
+               if ( isset( $headers[ 'location' ] ) ) {
+                       $locations = $headers[ 'location' ];
+                       $domain = '';
+                       $foundRelativeURI = false;
+                       $countLocations = count($locations);
+
+                       for ( $i = $countLocations - 1; $i >= 0; $i-- ) {
+                               $url = parse_url( $locations[ $i ] );
+
+                               if ( isset($url[ 'host' ]) ) {
+                                       $domain = $url[ 'scheme' ] . '://' . $url[ 'host' ];
+                                       break;  //found correct URI (with host)
+                               } else {
+                                       $foundRelativeURI = true;
+                               }
+                       }
+
+                       if ( $foundRelativeURI ) {
+                               if ( $domain ) {
+                                       return $domain . $locations[ $countLocations - 1 ];
+                               } else {
+                                       $url = parse_url( $this->url );
+                                       if ( isset($url[ 'host' ]) ) {
+                                               return $url[ 'scheme' ] . '://' . $url[ 'host' ] . $locations[ $countLocations - 1 ];
+                                       }
+                               }
+                       } else {
+                               return $locations[ $countLocations - 1 ];
+                       }
+               }
+
+               return $this->url;
+       }
+
+       /**
+        * Returns true if the backend can follow redirects. Overridden by the
+        * child classes.
+        */
+       public function canFollowRedirects() {
+               return true;
+       }
+}
+
+/**
+ * MWHttpRequest implemented using internal curl compiled into PHP
+ */
+class CurlHttpRequest extends MWHttpRequest {
+       const SUPPORTS_FILE_POSTS = true;
+
+       static $curlMessageMap = array(
+               6 => 'http-host-unreachable',
+               28 => 'http-timed-out'
+       );
+
+       protected $curlOptions = array();
+       protected $headerText = "";
+
+       protected function readHeader( $fh, $content ) {
+               $this->headerText .= $content;
+               return strlen( $content );
        }
 
        public function execute() {
+               parent::execute();
+
                if ( !$this->status->isOK() ) {
                        return $this->status;
                }
 
-               $this->setCallback( array( $this, 'read' ) );
+               $this->curlOptions[CURLOPT_PROXY] = $this->proxy;
+               $this->curlOptions[CURLOPT_TIMEOUT] = $this->timeout;
+               $this->curlOptions[CURLOPT_HTTP_VERSION] = CURL_HTTP_VERSION_1_0;
+               $this->curlOptions[CURLOPT_WRITEFUNCTION] = $this->callback;
+               $this->curlOptions[CURLOPT_HEADERFUNCTION] = array( $this, "readHeader" );
+               $this->curlOptions[CURLOPT_MAXREDIRS] = $this->maxRedirects;
+               $this->curlOptions[CURLOPT_ENCODING] = ""; # Enable compression
+
+               /* not sure these two are actually necessary */
+               if ( isset( $this->reqHeaders['Referer'] ) ) {
+                       $this->curlOptions[CURLOPT_REFERER] = $this->reqHeaders['Referer'];
+               }
+               $this->curlOptions[CURLOPT_USERAGENT] = $this->reqHeaders['User-Agent'];
 
-               curl_setopt( $this->curlHandle, CURLOPT_TIMEOUT, $this->timeout );
-               curl_setopt( $this->curlHandle, CURLOPT_USERAGENT, Http::userAgent() );
-               curl_setopt( $this->curlHandle, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0 );
+               if ( isset( $this->sslVerifyHost ) ) {
+                       $this->curlOptions[CURLOPT_SSL_VERIFYHOST] = $this->sslVerifyHost;
+               }
 
-               if ( $this->sslVerifyHost ) {
-                       curl_setopt( $this->curlHandle, CURLOPT_SSL_VERIFYHOST, $this->sslVerifyHost );
+               if ( isset( $this->sslVerifyCert ) ) {
+                       $this->curlOptions[CURLOPT_SSL_VERIFYPEER] = $this->sslVerifyCert;
                }
 
                if ( $this->caInfo ) {
-                       curl_setopt( $this->curlHandle, CURLOPT_CAINFO, $this->caInfo );
+                       $this->curlOptions[CURLOPT_CAINFO] = $this->caInfo;
                }
 
                if ( $this->headersOnly ) {
-                       curl_setopt( $this->curlHandle, CURLOPT_NOBODY, true );
-                       curl_setopt( $this->curlHandle, CURLOPT_HEADER, true );
+                       $this->curlOptions[CURLOPT_NOBODY] = true;
+                       $this->curlOptions[CURLOPT_HEADER] = true;
                } elseif ( $this->method == 'POST' ) {
-                       curl_setopt( $this->curlHandle, CURLOPT_POST, true );
-                       curl_setopt( $this->curlHandle, CURLOPT_POSTFIELDS, $this->postdata );
+                       $this->curlOptions[CURLOPT_POST] = true;
+                       $this->curlOptions[CURLOPT_POSTFIELDS] = $this->postData;
                        // Suppress 'Expect: 100-continue' header, as some servers
                        // will reject it with a 417 and Curl won't auto retry
                        // with HTTP 1.0 fallback
-                       curl_setopt( $this->curlHandle, CURLOPT_HTTPHEADER, array( 'Expect:' ) );
+                       $this->reqHeaders['Expect'] = '';
                } else {
-                       curl_setopt( $this->curlHandle, CURLOPT_CUSTOMREQUEST, $this->method );
+                       $this->curlOptions[CURLOPT_CUSTOMREQUEST] = $this->method;
+               }
+
+               $this->curlOptions[CURLOPT_HTTPHEADER] = $this->getHeaderList();
+
+               $curlHandle = curl_init( $this->url );
+
+               if ( !curl_setopt_array( $curlHandle, $this->curlOptions ) ) {
+                       throw new MWException( "Error setting curl options." );
                }
 
-               try {
-                       if ( false === curl_exec( $this->curlHandle ) ) {
-                               $this->status->fatal( 'Error sending request (#$1): $2',
-                                                                         curl_errno( $this->curlHandle ),
-                                                                         curl_error( $this->curlHandle ) );
+               if ( $this->followRedirects && $this->canFollowRedirects() ) {
+                       wfSuppressWarnings();
+                       if ( ! curl_setopt( $curlHandle, CURLOPT_FOLLOWLOCATION, true ) ) {
+                               wfDebug( __METHOD__ . ": Couldn't set CURLOPT_FOLLOWLOCATION. " .
+                                       "Probably safe_mode or open_basedir is set.\n" );
+                               // Continue the processing. If it were in curl_setopt_array,
+                               // processing would have halted on its entry
                        }
-               } catch ( Exception $e ) {
-                       $errno = curl_errno( $this->curlHandle );
-                       if ( $errno != CURLE_OK ) {
-                               $errstr = curl_error( $this->curlHandle );
-                               $this->status->fatal( 'CURL error code $1: $2', $errno, $errstr );
+                       wfRestoreWarnings();
+               }
+
+               if ( false === curl_exec( $curlHandle ) ) {
+                       $code = curl_error( $curlHandle );
+
+                       if ( isset( self::$curlMessageMap[$code] ) ) {
+                               $this->status->fatal( self::$curlMessageMap[$code] );
+                       } else {
+                               $this->status->fatal( 'http-curl-error', curl_error( $curlHandle ) );
                        }
+               } else {
+                       $this->headerList = explode( "\r\n", $this->headerText );
                }
 
-               curl_close( $this->curlHandle );
+               curl_close( $curlHandle );
+
+               $this->parseHeader();
+               $this->setStatus();
 
                return $this->status;
        }
 
-       public function read( $curlH, $content ) {
-               $this->content .= $content;
-               return strlen( $content );
-       }
+       public function canFollowRedirects() {
+               if ( strval( ini_get( 'open_basedir' ) ) !== '' || wfIniGetBool( 'safe_mode' ) ) {
+                       wfDebug( "Cannot follow redirects in safe mode\n" );
+                       return false;
+               }
 
-       public function getCode() {
-               # Don't return truncated output
-               $code = curl_getinfo( $this->curlHandle, CURLINFO_HTTP_CODE );
-               if ( $code < 400 ) {
-                       $this->status->setResult( true, $code );
-               } else {
-                       $this->status->setResult( false, $code );
+               if ( !defined( 'CURLOPT_REDIR_PROTOCOLS' ) ) {
+                       wfDebug( "Cannot follow redirects with libcurl < 7.19.4 due to CVE-2009-0037\n" );
+                       return false;
                }
+
+               return true;
        }
 }
 
-class PhpHttpRequest extends HttpRequest {
-       private $reqHeaders;
-       private $callback;
-       private $fh;
+class PhpHttpRequest extends MWHttpRequest {
+       protected function urlToTcp( $url ) {
+               $parsedUrl = parse_url( $url );
+
+               return 'tcp://' . $parsedUrl['host'] . ':' . $parsedUrl['port'];
+       }
+
+       public function execute() {
+               parent::execute();
+
+               if ( is_array( $this->postData ) ) {
+                       $this->postData = wfArrayToCGI( $this->postData );
+               }
 
-       public function initRequest() {
-               $this->setCallback( array( $this, 'read' ) );
+               if ( $this->parsedUrl['scheme'] != 'http' &&
+                        $this->parsedUrl['scheme'] != 'https' ) {
+                       $this->status->fatal( 'http-invalid-scheme', $this->parsedUrl['scheme'] );
+               }
 
-               $this->reqHeaders[] = "User-Agent: " . Http::userAgent();
-               $this->reqHeaders[] = "Accept: */*";
+               $this->reqHeaders['Accept'] = "*/*";
                if ( $this->method == 'POST' ) {
                        // Required for HTTP 1.0 POSTs
-                       $this->reqHeaders[] = "Content-Length: " . strlen( $this->postdata );
-                       $this->reqHeaders[] = "Content-type: application/x-www-form-urlencoded";
+                       $this->reqHeaders['Content-Length'] = strlen( $this->postData );
+                       $this->reqHeaders['Content-type'] = "application/x-www-form-urlencoded";
                }
 
-               if ( $this->parsed_url['scheme'] != 'http' ) {
-                       $this->status->fatal( "Only http:// is supported currently." );
-           }
-       }
+               $options = array();
+               if ( $this->proxy && !$this->noProxy ) {
+                       $options['proxy'] = $this->urlToTCP( $this->proxy );
+                       $options['request_fulluri'] = true;
+               }
 
-       protected function urlToTcp( $url ) {
-               $parsed_url = parse_url( $url );
+               if ( !$this->followRedirects ) {
+                       $options['max_redirects'] = 0;
+               } else {
+                       $options['max_redirects'] = $this->maxRedirects;
+               }
 
-               return 'tcp://' . $parsed_url['host'] . ':' . $parsed_url['port'];
-       }
+               $options['method'] = $this->method;
+               $options['header'] = implode( "\r\n", $this->getHeaderList() );
+               // Note that at some future point we may want to support
+               // HTTP/1.1, but we'd have to write support for chunking
+               // in version of PHP < 5.3.1
+               $options['protocol_version'] = "1.0";
 
-       public function proxySetup() {
-               global $wgHTTPProxy;
+               // This is how we tell PHP we want to deal with 404s (for example) ourselves.
+               // Only works on 5.2.10+
+               $options['ignore_errors'] = true;
 
-               if ( Http::isLocalURL( $this->url ) ) {
-                       $this->proxy = 'http://localhost:80/';
-               } elseif ( $wgHTTPProxy ) {
-                       $this->proxy = $wgHTTPProxy ;
+               if ( $this->postData ) {
+                       $options['content'] = $this->postData;
                }
-       }
 
-       public function setReferrer( $url ) {
-               $this->reqHeaders[] = "Referer: $url";
-       }
+               $options['timeout'] = $this->timeout;
 
-       public function setCallback( $cb ) {
-               $this->callback = $cb;
-       }
+               $context = stream_context_create( array( 'http' => $options ) );
 
-       public function read( $fh, $contents ) {
-               if ( $this->headersOnly ) {
-                       return false;
-               }
-               $this->content .= $contents;
+               $this->headerList = array();
+               $reqCount = 0;
+               $url = $this->url;
 
-        return strlen( $contents );
-       }
+               $result = array();
 
-       public function execute() {
-               if ( !$this->status->isOK() ) {
-                       return $this->status;
-               }
+               do {
+                       $reqCount++;
+                       wfSuppressWarnings();
+                       $fh = fopen( $url, "r", false, $context );
+                       wfRestoreWarnings();
 
-               $opts = array();
-               if ( $this->proxy && !$this->no_proxy ) {
-                       $opts['proxy'] = $this->urlToTCP( $this->proxy );
-                       $opts['request_fulluri'] = true;
-               }
+                       if ( !$fh ) {
+                               break;
+                       }
 
-               $opts['method'] = $this->method;
-               $opts['timeout'] = $this->timeout;
-               $opts['header'] = implode( "\r\n", $this->reqHeaders );
-               // FOR NOW: Force everyone to HTTP 1.0
-               /* if ( version_compare( "5.3.0", phpversion(), ">" ) ) { */
-                       $opts['protocol_version'] = "1.0";
-               /* } else { */
-               /*      $opts['protocol_version'] = "1.1"; */
-               /* } */
+                       $result = stream_get_meta_data( $fh );
+                       $this->headerList = $result['wrapper_data'];
+                       $this->parseHeader();
 
-               if ( $this->postdata ) {
-                       $opts['content'] = $this->postdata;
-               }
+                       if ( !$this->followRedirects ) {
+                               break;
+                       }
+
+                       # Handle manual redirection
+                       if ( !$this->isRedirect() || $reqCount > $this->maxRedirects ) {
+                               break;
+                       }
+                       # Check security of URL
+                       $url = $this->getResponseHeader( "Location" );
 
-               $context = stream_context_create( array( 'http' => $opts ) );
-               try {
-                       $this->fh = fopen( $this->url, "r", false, $context );
-               } catch ( Exception $e ) {
-                       $this->status->fatal( $e->getMessage() );
+                       if ( substr( $url, 0, 7 ) !== 'http://' ) {
+                               wfDebug( __METHOD__ . ": insecure redirection\n" );
+                               break;
+                       }
+               } while ( true );
+
+               $this->setStatus();
+
+               if ( $fh === false ) {
+                       $this->status->fatal( 'http-request-error' );
                        return $this->status;
                }
 
-               $result = stream_get_meta_data( $this->fh );
                if ( $result['timed_out'] ) {
-                       $this->status->error( 'The request timed out' );
+                       $this->status->fatal( 'http-timed-out', $this->url );
+                       return $this->status;
                }
 
-               $this->headers = $result['wrapper_data'];
+               // If everything went OK, or we recieved some error code
+               // get the response body content.
+               if ( $this->status->isOK()
+                               || (int)$this->respStatus >= 300) {
+                       while ( !feof( $fh ) ) {
+                               $buf = fread( $fh, 8192 );
 
-               $end = false;
-               while ( !$end ) {
-                       $contents = fread( $this->fh, 8192 );
-                       $size = call_user_func_array( $this->callback, array( $this->fh, $contents ) );
-                       $end = ( $size == 0 )  || feof( $this->fh );
+                               if ( $buf === false ) {
+                                       $this->status->fatal( 'http-read-error' );
+                                       break;
+                               }
+
+                               if ( strlen( $buf ) ) {
+                                       call_user_func( $this->callback, $fh, $buf );
+                               }
+                       }
                }
-               fclose( $this->fh );
+               fclose( $fh );
 
                return $this->status;
        }