2005-06-26 06:34:13 +00:00
|
|
|
<?php
|
2009-11-26 12:00:36 +00:00
|
|
|
/**
|
2009-11-28 03:49:29 +00:00
|
|
|
* @defgroup HTTP HTTP
|
2009-12-05 17:07:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Various HTTP related functions
|
2009-11-26 12:00:36 +00:00
|
|
|
* @ingroup HTTP
|
|
|
|
|
*/
|
2006-07-02 15:57:59 +00:00
|
|
|
class Http {
|
2010-01-23 06:23:18 +00:00
|
|
|
static $httpEngine = false;
|
|
|
|
|
|
2010-01-07 21:57:33 +00:00
|
|
|
/**
|
2010-01-22 02:17:58 +00:00
|
|
|
* Perform an HTTP request
|
2010-01-07 21:57:33 +00:00
|
|
|
* @param $method string HTTP method. Usually GET/POST
|
|
|
|
|
* @param $url string Full URL to act on
|
2010-01-22 07:50:02 +00:00
|
|
|
* @param $options options to pass to HttpRequest object
|
2010-02-03 06:19:47 +00:00
|
|
|
* 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 the 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 true)
|
2010-01-22 02:17:58 +00:00
|
|
|
* @returns mixed (bool)false on failure or a string on success
|
2010-01-07 21:57:33 +00:00
|
|
|
*/
|
2010-01-22 07:50:02 +00:00
|
|
|
public static function request( $method, $url, $options = array() ) {
|
2010-01-23 22:30:21 +00:00
|
|
|
wfDebug( "HTTP: $method: $url" );
|
2010-01-22 07:50:02 +00:00
|
|
|
$options['method'] = strtoupper( $method );
|
|
|
|
|
if ( !isset( $options['timeout'] ) ) {
|
|
|
|
|
$options['timeout'] = 'default';
|
2010-01-22 02:17:58 +00:00
|
|
|
}
|
2010-01-22 07:50:02 +00:00
|
|
|
$req = HttpRequest::factory( $url, $options );
|
2010-01-22 02:17:58 +00:00
|
|
|
$status = $req->execute();
|
|
|
|
|
if ( $status->isOK() ) {
|
2010-01-22 07:50:02 +00:00
|
|
|
return $req->getContent();
|
2010-01-07 21:57:33 +00:00
|
|
|
} else {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-07-25 20:05:41 +00:00
|
|
|
|
2008-09-29 06:12:47 +00:00
|
|
|
/**
|
|
|
|
|
* Simple wrapper for Http::request( 'GET' )
|
2009-11-26 12:00:36 +00:00
|
|
|
* @see Http::request()
|
2008-09-29 06:12:47 +00:00
|
|
|
*/
|
2010-01-22 07:50:02 +00:00
|
|
|
public static function get( $url, $timeout = 'default', $options = array() ) {
|
|
|
|
|
$options['timeout'] = $timeout;
|
|
|
|
|
return Http::request( 'GET', $url, $options );
|
2007-05-10 19:13:02 +00:00
|
|
|
}
|
2009-07-15 00:55:58 +00:00
|
|
|
|
2008-09-29 06:12:47 +00:00
|
|
|
/**
|
|
|
|
|
* Simple wrapper for Http::request( 'POST' )
|
2009-11-26 12:00:36 +00:00
|
|
|
* @see Http::request()
|
2008-09-29 06:12:47 +00:00
|
|
|
*/
|
2010-01-22 07:50:02 +00:00
|
|
|
public static function post( $url, $options = array() ) {
|
|
|
|
|
return Http::request( 'POST', $url, $options );
|
2010-01-07 21:57:33 +00:00
|
|
|
}
|
|
|
|
|
|
2006-07-02 15:57:59 +00:00
|
|
|
/**
|
2010-01-15 18:57:29 +00:00
|
|
|
* Check if the URL can be served by localhost
|
|
|
|
|
* @param $url string Full url to check
|
|
|
|
|
* @return bool
|
2006-07-02 15:57:59 +00:00
|
|
|
*/
|
2010-01-15 18:57:29 +00:00
|
|
|
public static function isLocalURL( $url ) {
|
|
|
|
|
global $wgCommandLineMode, $wgConf;
|
|
|
|
|
if ( $wgCommandLineMode ) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2005-11-01 22:26:11 +00:00
|
|
|
|
2010-01-15 18:57:29 +00:00
|
|
|
// Extract host part
|
|
|
|
|
$matches = array();
|
|
|
|
|
if ( preg_match( '!^http://([\w.-]+)[/:].*$!', $url, $matches ) ) {
|
|
|
|
|
$host = $matches[1];
|
|
|
|
|
// Split up dotwise
|
|
|
|
|
$domainParts = explode( '.', $host );
|
|
|
|
|
// Check if this domain or any superdomain is listed in $wgConf as a local virtual host
|
|
|
|
|
$domainParts = array_reverse( $domainParts );
|
|
|
|
|
for ( $i = 0; $i < count( $domainParts ); $i++ ) {
|
|
|
|
|
$domainPart = $domainParts[$i];
|
|
|
|
|
if ( $i == 0 ) {
|
|
|
|
|
$domain = $domainPart;
|
|
|
|
|
} else {
|
|
|
|
|
$domain = $domainPart . '.' . $domain;
|
|
|
|
|
}
|
|
|
|
|
if ( $wgConf->isLocalVHost( $domain ) ) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2010-01-07 21:57:33 +00:00
|
|
|
|
2010-01-15 18:57:29 +00:00
|
|
|
/**
|
2010-01-22 02:17:58 +00:00
|
|
|
* A standard user-agent we can use for external requests.
|
|
|
|
|
* @returns string
|
2010-01-15 18:57:29 +00:00
|
|
|
*/
|
|
|
|
|
public static function userAgent() {
|
|
|
|
|
global $wgVersion;
|
|
|
|
|
return "MediaWiki/$wgVersion";
|
|
|
|
|
}
|
2010-01-07 21:57:33 +00:00
|
|
|
|
2010-01-15 18:57:29 +00:00
|
|
|
/**
|
|
|
|
|
* Checks that the given URI is a valid one
|
|
|
|
|
* @param $uri Mixed: URI to check for validity
|
2010-01-22 02:17:58 +00:00
|
|
|
* @returns bool
|
2010-01-15 18:57:29 +00:00
|
|
|
*/
|
2010-01-22 02:17:58 +00:00
|
|
|
public static function isValidURI( $uri ) {
|
2010-01-15 18:57:29 +00:00
|
|
|
return preg_match(
|
|
|
|
|
'/(ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/',
|
|
|
|
|
$uri,
|
|
|
|
|
$matches
|
|
|
|
|
);
|
2010-01-07 21:57:33 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-22 02:17:58 +00:00
|
|
|
/**
|
|
|
|
|
* This wrapper class will call out to curl (if available) or fallback
|
|
|
|
|
* to regular PHP if necessary for handling internal HTTP requests.
|
|
|
|
|
*/
|
2010-01-07 21:57:33 +00:00
|
|
|
class HttpRequest {
|
2010-01-22 02:17:58 +00:00
|
|
|
protected $content;
|
|
|
|
|
protected $timeout = 'default';
|
|
|
|
|
protected $headersOnly = null;
|
2010-01-22 07:50:02 +00:00
|
|
|
protected $postData = null;
|
2010-01-22 02:17:58 +00:00
|
|
|
protected $proxy = null;
|
2010-01-22 07:50:02 +00:00
|
|
|
protected $noProxy = false;
|
2010-01-22 02:17:58 +00:00
|
|
|
protected $sslVerifyHost = true;
|
|
|
|
|
protected $caInfo = null;
|
|
|
|
|
protected $method = "GET";
|
2010-01-22 07:50:02 +00:00
|
|
|
protected $reqHeaders = array();
|
2010-01-22 02:17:58 +00:00
|
|
|
protected $url;
|
2010-01-22 07:50:02 +00:00
|
|
|
protected $parsedUrl;
|
|
|
|
|
protected $callback;
|
2010-02-03 06:19:47 +00:00
|
|
|
protected $maxRedirects = 5;
|
|
|
|
|
protected $followRedirects = true;
|
|
|
|
|
|
|
|
|
|
protected $cookieJar;
|
|
|
|
|
|
|
|
|
|
protected $headerList = array();
|
|
|
|
|
protected $respVersion = "0.9";
|
|
|
|
|
protected $respStatus = "0.1";
|
|
|
|
|
protected $respHeaders = array();
|
|
|
|
|
|
2010-01-22 02:17:58 +00:00
|
|
|
public $status;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param $url string url to use
|
2010-02-03 06:19:47 +00:00
|
|
|
* @param $options array (optional) extra params to pass (see Http::request())
|
2010-01-22 02:17:58 +00:00
|
|
|
*/
|
2010-01-22 07:50:02 +00:00
|
|
|
function __construct( $url, $options = array() ) {
|
|
|
|
|
global $wgHTTPTimeout;
|
2010-01-07 21:57:33 +00:00
|
|
|
|
|
|
|
|
$this->url = $url;
|
2010-01-22 07:50:02 +00:00
|
|
|
$this->parsedUrl = parse_url( $url );
|
2010-01-22 02:17:58 +00:00
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
if ( !Http::isValidURI( $this->url ) ) {
|
|
|
|
|
$this->status = Status::newFromFatal('http-invalid-url');
|
2010-01-22 02:17:58 +00:00
|
|
|
} else {
|
|
|
|
|
$this->status = Status::newGood( 100 ); // continue
|
2010-01-15 05:56:57 +00:00
|
|
|
}
|
2010-01-07 21:57:33 +00:00
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
if ( isset($options['timeout']) && $options['timeout'] != 'default' ) {
|
|
|
|
|
$this->timeout = $options['timeout'];
|
2010-01-22 02:17:58 +00:00
|
|
|
} else {
|
|
|
|
|
$this->timeout = $wgHTTPTimeout;
|
|
|
|
|
}
|
2010-01-07 21:57:33 +00:00
|
|
|
|
2010-02-03 06:19:47 +00:00
|
|
|
$members = array( "postData", "proxy", "noProxy", "sslVerifyHost", "caInfo",
|
|
|
|
|
"method", "followRedirects", "maxRedirects" );
|
2010-01-22 02:17:58 +00:00
|
|
|
foreach ( $members as $o ) {
|
2010-01-22 07:50:02 +00:00
|
|
|
if ( isset($options[$o]) ) {
|
|
|
|
|
$this->$o = $options[$o];
|
2010-01-22 02:17:58 +00:00
|
|
|
}
|
|
|
|
|
}
|
2010-01-07 21:57:33 +00:00
|
|
|
}
|
2010-01-22 02:17:58 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Generate a new request object
|
|
|
|
|
* @see HttpRequest::__construct
|
|
|
|
|
*/
|
2010-01-27 06:51:42 +00:00
|
|
|
public static function factory( $url, $options = null ) {
|
2010-01-23 06:23:18 +00:00
|
|
|
if ( !Http::$httpEngine ) {
|
|
|
|
|
Http::$httpEngine = function_exists( 'curl_init' ) ? 'curl' : 'php';
|
|
|
|
|
} elseif ( Http::$httpEngine == 'curl' && !function_exists( 'curl_init' ) ) {
|
2010-02-03 06:19:47 +00:00
|
|
|
throw new MWException( __METHOD__.': curl (http://php.net/curl) is not installed, but'.
|
|
|
|
|
' Http::$httpEngine is set to "curl"' );
|
2010-01-07 21:57:33 +00:00
|
|
|
}
|
|
|
|
|
|
2010-01-23 06:23:18 +00:00
|
|
|
switch( Http::$httpEngine ) {
|
2010-01-22 02:17:58 +00:00
|
|
|
case 'curl':
|
2010-01-22 07:50:02 +00:00
|
|
|
return new CurlHttpRequest( $url, $options );
|
2010-01-22 02:17:58 +00:00
|
|
|
case 'php':
|
2010-01-22 07:50:02 +00:00
|
|
|
if ( !wfIniGetBool( 'allow_url_fopen' ) ) {
|
2010-02-03 06:19:47 +00:00
|
|
|
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.' );
|
2010-01-22 07:50:02 +00:00
|
|
|
}
|
|
|
|
|
return new PhpHttpRequest( $url, $options );
|
2010-01-22 02:17:58 +00:00
|
|
|
default:
|
2010-01-23 06:23:18 +00:00
|
|
|
throw new MWException( __METHOD__.': The setting of Http::$httpEngine is not valid.' );
|
2010-01-22 02:17:58 +00:00
|
|
|
}
|
|
|
|
|
}
|
2010-01-07 21:57:33 +00:00
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
/**
|
|
|
|
|
* Get the body, or content, of the response to the request
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2010-01-22 02:17:58 +00:00
|
|
|
public function getContent() {
|
|
|
|
|
return $this->content;
|
|
|
|
|
}
|
2010-01-07 21:57:33 +00:00
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
/**
|
|
|
|
|
* Take care of setting up the proxy
|
|
|
|
|
* (override in subclass)
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public function proxySetup() {
|
|
|
|
|
global $wgHTTPProxy;
|
2010-01-07 21:57:33 +00:00
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
if ( $this->proxy ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if ( Http::isLocalURL( $this->url ) ) {
|
|
|
|
|
$this->proxy = 'http://localhost:80/';
|
|
|
|
|
} elseif ( $wgHTTPProxy ) {
|
|
|
|
|
$this->proxy = $wgHTTPProxy ;
|
|
|
|
|
}
|
2010-01-22 02:17:58 +00:00
|
|
|
}
|
|
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
/**
|
|
|
|
|
* 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();
|
2010-01-22 02:17:58 +00:00
|
|
|
|
2010-02-03 06:19:47 +00:00
|
|
|
if( $this->cookieJar ) {
|
2010-02-03 07:45:05 +00:00
|
|
|
$this->reqHeaders['Cookie'] =
|
|
|
|
|
$this->cookieJar->serializeToHttpRequest($this->parsedURL['path'],
|
|
|
|
|
$this->parsedURL['host']);
|
2010-02-03 06:19:47 +00:00
|
|
|
}
|
2010-01-22 07:50:02 +00:00
|
|
|
foreach($this->reqHeaders as $name => $value) {
|
|
|
|
|
$list[] = "$name: $value";
|
2010-01-07 21:57:33 +00:00
|
|
|
}
|
2010-01-22 07:50:02 +00:00
|
|
|
return $list;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set the callback
|
|
|
|
|
* @param $callback callback
|
|
|
|
|
*/
|
|
|
|
|
public function setCallback( $callback ) {
|
|
|
|
|
$this->callback = $callback;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2010-02-03 06:19:47 +00:00
|
|
|
* A generic callback to read the body of the response from a remote
|
|
|
|
|
* server.
|
2010-01-22 07:50:02 +00:00
|
|
|
* @param $fh handle
|
|
|
|
|
* @param $content string
|
|
|
|
|
*/
|
|
|
|
|
public function read( $fh, $content ) {
|
|
|
|
|
$this->content .= $content;
|
|
|
|
|
return strlen( $content );
|
2010-01-22 02:17:58 +00:00
|
|
|
}
|
2010-01-07 21:57:33 +00:00
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
/**
|
|
|
|
|
* Take care of whatever is necessary to perform the URI request.
|
|
|
|
|
* @return Status
|
|
|
|
|
*/
|
|
|
|
|
public function execute() {
|
|
|
|
|
global $wgTitle;
|
|
|
|
|
|
|
|
|
|
if( strtoupper($this->method) == "HEAD" ) {
|
|
|
|
|
$this->headersOnly = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( is_array( $this->postData ) ) {
|
|
|
|
|
$this->postData = wfArrayToCGI( $this->postData );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( is_object( $wgTitle ) && !isset($this->reqHeaders['Referer']) ) {
|
|
|
|
|
$this->setReferer( $wgTitle->getFullURL() );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !$this->noProxy ) {
|
|
|
|
|
$this->proxySetup();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !$this->callback ) {
|
|
|
|
|
$this->setCallback( array( $this, 'read' ) );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( !isset($this->reqHeaders['User-Agent']) ) {
|
|
|
|
|
$this->setUserAgent(Http::userAgent());
|
2010-01-07 21:57:33 +00:00
|
|
|
}
|
2010-01-22 02:17:58 +00:00
|
|
|
}
|
2010-02-03 06:19:47 +00:00
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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();
|
|
|
|
|
}
|
|
|
|
|
return $this->respHeaders;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Tells the HttpRequest object to use this pre-loaded CookieJar.
|
|
|
|
|
* @param $jar CookieJar
|
|
|
|
|
*/
|
|
|
|
|
public function setCookieJar( $jar ) {
|
|
|
|
|
$this->cookieJar = $jar;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns the cookie jar in use.
|
|
|
|
|
* @returns CookieJar
|
|
|
|
|
*/
|
|
|
|
|
public function getCookieJar() {
|
|
|
|
|
if( !$this->respHeaders ) {
|
|
|
|
|
$this->parseHeader();
|
|
|
|
|
}
|
|
|
|
|
return $this->cookieJar;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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() {
|
2010-02-07 05:45:37 +00:00
|
|
|
if( !$this->cookieJar ) {
|
|
|
|
|
$this->cookieJar = new CookieJar;
|
|
|
|
|
}
|
2010-02-03 06:19:47 +00:00
|
|
|
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.
|
|
|
|
|
* @returns string
|
|
|
|
|
*/
|
|
|
|
|
public function getFinalUrl() {
|
|
|
|
|
$finalUrl = $this->url;
|
|
|
|
|
if ( isset( $this->respHeaders['location'] ) ) {
|
|
|
|
|
$redir = $this->respHeaders['location'];
|
|
|
|
|
$finalUrl = $redir[count($redir) - 1];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $finalUrl;
|
|
|
|
|
}
|
2010-01-22 07:50:02 +00:00
|
|
|
}
|
|
|
|
|
|
2010-02-03 06:19:47 +00:00
|
|
|
|
|
|
|
|
class Cookie {
|
|
|
|
|
protected $name;
|
|
|
|
|
protected $value;
|
|
|
|
|
protected $expires;
|
|
|
|
|
protected $path;
|
|
|
|
|
protected $domain;
|
|
|
|
|
protected $isSessionKey = true;
|
|
|
|
|
// TO IMPLEMENT protected $secure
|
|
|
|
|
// TO IMPLEMENT? protected $maxAge (add onto expires)
|
|
|
|
|
// TO IMPLEMENT? protected $version
|
|
|
|
|
// TO IMPLEMENT? protected $comment
|
|
|
|
|
|
|
|
|
|
function __construct( $name, $value, $attr ) {
|
|
|
|
|
$this->name = $name;
|
|
|
|
|
$this->set( $value, $attr );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Sets a cookie. Used before a request to set up any individual
|
|
|
|
|
* cookies. Used internally after a request to parse the
|
|
|
|
|
* Set-Cookie headers.
|
|
|
|
|
* @param $name string the name of the cookie
|
|
|
|
|
* @param $value string the value of the cookie
|
|
|
|
|
* @param $attr array possible key/values:
|
|
|
|
|
* expires A date string
|
|
|
|
|
* path The path this cookie is used on
|
|
|
|
|
* domain Domain this cookie is used on
|
|
|
|
|
*/
|
|
|
|
|
public function set( $value, $attr ) {
|
|
|
|
|
$this->value = $value;
|
|
|
|
|
if( isset( $attr['expires'] ) ) {
|
|
|
|
|
$this->isSessionKey = false;
|
|
|
|
|
$this->expires = strtotime( $attr['expires'] );
|
|
|
|
|
}
|
|
|
|
|
if( isset( $attr['path'] ) ) {
|
|
|
|
|
$this->path = $attr['path'];
|
|
|
|
|
} else {
|
|
|
|
|
$this->path = "/";
|
|
|
|
|
}
|
|
|
|
|
if( isset( $attr['domain'] ) ) {
|
2010-02-07 05:45:37 +00:00
|
|
|
$this->domain = self::parseCookieDomain( $attr['domain'] );
|
2010-02-03 06:19:47 +00:00
|
|
|
} else {
|
|
|
|
|
throw new MWException("You must specify a domain.");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-07 05:45:37 +00:00
|
|
|
public static function parseCookieDomain( $domain ) {
|
|
|
|
|
/* If domain is given, it has to contain at least two dots */
|
|
|
|
|
if ( strrpos( $domain, '.' ) === false
|
|
|
|
|
|| strrpos( $domain, '.' ) === strpos( $domain, '.' ) ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if ( substr( $domain, 0, 1 ) === '.' ) {
|
|
|
|
|
$domain = substr( $domain, 1 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $domain;
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-03 06:19:47 +00:00
|
|
|
/**
|
|
|
|
|
* Serialize the cookie jar into a format useful for HTTP Request headers.
|
|
|
|
|
* @param $path string the path that will be used. Required.
|
|
|
|
|
* @param $domain string the domain that will be used. Required.
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public function serializeToHttpRequest( $path, $domain ) {
|
|
|
|
|
$ret = "";
|
|
|
|
|
|
|
|
|
|
if( $this->canServeDomain( $domain )
|
|
|
|
|
&& $this->canServePath( $path )
|
|
|
|
|
&& $this->isUnExpired() ) {
|
|
|
|
|
$ret = $this->name ."=". $this->value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function canServeDomain( $domain ) {
|
|
|
|
|
if( $this->domain && substr_compare( $domain, $this->domain, -strlen( $this->domain ),
|
|
|
|
|
strlen( $this->domain ), TRUE ) == 0 ) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function canServePath( $path ) {
|
|
|
|
|
if( $this->path && substr_compare( $this->path, $path, 0, strlen( $this->path ) ) == 0 ) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected function isUnExpired() {
|
|
|
|
|
if( $this->isSessionKey || $this->expires > time() ) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class CookieJar {
|
2010-02-05 04:08:19 +00:00
|
|
|
private $cookie = array();
|
2010-02-03 06:19:47 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set a cookie in the cookie jar. Make sure only one cookie per-name exists.
|
|
|
|
|
* @see Cookie::set()
|
|
|
|
|
*/
|
|
|
|
|
public function setCookie ($name, $value, $attr) {
|
|
|
|
|
/* cookies: case insensitive, so this should work.
|
|
|
|
|
* We'll still send the cookies back in the same case we got them, though.
|
|
|
|
|
*/
|
|
|
|
|
$index = strtoupper($name);
|
|
|
|
|
if( isset( $this->cookie[$index] ) ) {
|
|
|
|
|
$this->cookie[$index]->set( $value, $attr );
|
|
|
|
|
} else {
|
|
|
|
|
$this->cookie[$index] = new Cookie( $name, $value, $attr );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @see Cookie::serializeToHttpRequest
|
|
|
|
|
*/
|
|
|
|
|
public function serializeToHttpRequest( $path, $domain ) {
|
|
|
|
|
$cookies = array();
|
|
|
|
|
|
|
|
|
|
foreach( $this->cookie as $c ) {
|
|
|
|
|
$serialized = $c->serializeToHttpRequest( $path, $domain );
|
|
|
|
|
if ( $serialized ) $cookies[] = $serialized;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return implode("; ", $cookies);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Parse the content of an Set-Cookie HTTP Response header.
|
|
|
|
|
* @param $cookie string
|
|
|
|
|
*/
|
2010-02-05 04:08:19 +00:00
|
|
|
public function parseCookieResponseHeader ( $cookie, $domain ) {
|
2010-02-03 06:19:47 +00:00
|
|
|
$len = strlen( "Set-Cookie:" );
|
|
|
|
|
if ( substr_compare( "Set-Cookie:", $cookie, 0, $len, TRUE ) === 0 ) {
|
|
|
|
|
$cookie = substr( $cookie, $len );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$bit = array_map( 'trim', explode( ";", $cookie ) );
|
2010-02-05 04:08:19 +00:00
|
|
|
if ( count($bit) >= 1 ) {
|
|
|
|
|
list($name, $value) = explode( "=", array_shift( $bit ), 2 );
|
|
|
|
|
$attr = array();
|
|
|
|
|
foreach( $bit as $piece ) {
|
|
|
|
|
$parts = explode( "=", $piece );
|
|
|
|
|
if( count( $parts ) > 1 ) {
|
|
|
|
|
$attr[strtolower( $parts[0] )] = $parts[1];
|
|
|
|
|
} else {
|
|
|
|
|
$attr[strtolower( $parts[0] )] = true;
|
|
|
|
|
}
|
2010-02-03 06:19:47 +00:00
|
|
|
}
|
2010-02-03 07:45:05 +00:00
|
|
|
|
2010-02-05 04:08:19 +00:00
|
|
|
if( !isset( $attr['domain'] ) ) {
|
|
|
|
|
$attr['domain'] = $domain;
|
|
|
|
|
} else {
|
|
|
|
|
if ( strlen( $attr['domain'] ) < strlen( $domain )
|
|
|
|
|
&& substr_compare( $domain, $attr['domain'], -strlen( $attr['domain'] ),
|
|
|
|
|
strlen( $attr['domain'] ), TRUE ) != 0 ) {
|
|
|
|
|
return; /* silently reject a bad cookie */
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$this->setCookie( $name, $value, $attr );
|
2010-02-03 07:45:05 +00:00
|
|
|
}
|
2010-02-03 06:19:47 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
/**
|
|
|
|
|
* HttpRequest implemented using internal curl compiled into PHP
|
|
|
|
|
*/
|
|
|
|
|
class CurlHttpRequest extends HttpRequest {
|
2010-02-03 06:19:47 +00:00
|
|
|
static $curlMessageMap = array(
|
|
|
|
|
6 => 'http-host-unreachable',
|
|
|
|
|
28 => 'http-timed-out'
|
|
|
|
|
);
|
|
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
protected $curlOptions = array();
|
2010-02-03 06:19:47 +00:00
|
|
|
protected $headerText = "";
|
|
|
|
|
|
|
|
|
|
protected function readHeader( $fh, $content ) {
|
|
|
|
|
$this->headerText .= $content;
|
|
|
|
|
return strlen( $content );
|
|
|
|
|
}
|
2010-01-07 21:57:33 +00:00
|
|
|
|
2010-01-22 02:17:58 +00:00
|
|
|
public function execute() {
|
2010-01-22 07:50:02 +00:00
|
|
|
parent::execute();
|
2010-01-22 03:01:48 +00:00
|
|
|
if ( !$this->status->isOK() ) {
|
2010-01-22 02:17:58 +00:00
|
|
|
return $this->status;
|
2010-01-15 05:56:57 +00:00
|
|
|
}
|
2010-01-22 07:50:02 +00:00
|
|
|
$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;
|
2010-02-03 06:19:47 +00:00
|
|
|
$this->curlOptions[CURLOPT_HEADERFUNCTION] = array($this, "readHeader");
|
|
|
|
|
$this->curlOptions[CURLOPT_FOLLOWLOCATION] = $this->followRedirects;
|
|
|
|
|
$this->curlOptions[CURLOPT_MAXREDIRS] = $this->maxRedirects;
|
2010-01-15 05:56:57 +00:00
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
/* 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'];
|
2010-01-22 02:17:58 +00:00
|
|
|
|
|
|
|
|
if ( $this->sslVerifyHost ) {
|
2010-01-22 07:50:02 +00:00
|
|
|
$this->curlOptions[CURLOPT_SSL_VERIFYHOST] = $this->sslVerifyHost;
|
2010-01-07 21:57:33 +00:00
|
|
|
}
|
2010-01-22 02:17:58 +00:00
|
|
|
|
|
|
|
|
if ( $this->caInfo ) {
|
2010-01-22 07:50:02 +00:00
|
|
|
$this->curlOptions[CURLOPT_CAINFO] = $this->caInfo;
|
2010-01-07 21:57:33 +00:00
|
|
|
}
|
|
|
|
|
|
2010-01-22 02:17:58 +00:00
|
|
|
if ( $this->headersOnly ) {
|
2010-01-22 07:50:02 +00:00
|
|
|
$this->curlOptions[CURLOPT_NOBODY] = true;
|
|
|
|
|
$this->curlOptions[CURLOPT_HEADER] = true;
|
2010-01-22 02:17:58 +00:00
|
|
|
} elseif ( $this->method == 'POST' ) {
|
2010-01-22 07:50:02 +00:00
|
|
|
$this->curlOptions[CURLOPT_POST] = true;
|
|
|
|
|
$this->curlOptions[CURLOPT_POSTFIELDS] = $this->postData;
|
2010-01-22 02:17:58 +00:00
|
|
|
// 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
|
2010-01-22 07:50:02 +00:00
|
|
|
$this->reqHeaders['Expect'] = '';
|
2010-01-07 21:57:33 +00:00
|
|
|
} else {
|
2010-01-22 07:50:02 +00:00
|
|
|
$this->curlOptions[CURLOPT_CUSTOMREQUEST] = $this->method;
|
2010-01-22 02:17:58 +00:00
|
|
|
}
|
|
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
$this->curlOptions[CURLOPT_HTTPHEADER] = $this->getHeaderList();
|
2010-01-07 21:57:33 +00:00
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
$curlHandle = curl_init( $this->url );
|
|
|
|
|
curl_setopt_array( $curlHandle, $this->curlOptions );
|
2010-01-22 02:17:58 +00:00
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
if ( false === curl_exec( $curlHandle ) ) {
|
2010-02-03 06:19:47 +00:00
|
|
|
$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);
|
2010-01-22 07:50:02 +00:00
|
|
|
}
|
2010-01-07 21:57:33 +00:00
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
curl_close( $curlHandle );
|
2010-01-07 21:57:33 +00:00
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
return $this->status;
|
2010-01-22 02:17:58 +00:00
|
|
|
}
|
|
|
|
|
}
|
2010-01-07 21:57:33 +00:00
|
|
|
|
2010-01-22 02:17:58 +00:00
|
|
|
class PhpHttpRequest extends HttpRequest {
|
2010-01-22 03:01:48 +00:00
|
|
|
protected function urlToTcp( $url ) {
|
2010-01-22 07:50:02 +00:00
|
|
|
$parsedUrl = parse_url( $url );
|
2010-01-15 05:56:57 +00:00
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
return 'tcp://' . $parsedUrl['host'] . ':' . $parsedUrl['port'];
|
2010-01-15 05:56:57 +00:00
|
|
|
}
|
2010-01-15 18:57:29 +00:00
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
public function execute() {
|
|
|
|
|
if ( $this->parsedUrl['scheme'] != 'http' ) {
|
|
|
|
|
$this->status->fatal( 'http-invalid-scheme', $this->parsedURL['scheme'] );
|
2010-01-29 07:25:09 +00:00
|
|
|
}
|
2010-01-07 21:57:33 +00:00
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
parent::execute();
|
|
|
|
|
if ( !$this->status->isOK() ) {
|
|
|
|
|
return $this->status;
|
2010-01-07 21:57:33 +00:00
|
|
|
}
|
2010-01-22 02:17:58 +00:00
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
$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";
|
2010-01-22 02:17:58 +00:00
|
|
|
}
|
2010-01-07 21:57:33 +00:00
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
$options = array();
|
|
|
|
|
if ( $this->proxy && !$this->noProxy ) {
|
|
|
|
|
$options['proxy'] = $this->urlToTCP( $this->proxy );
|
|
|
|
|
$options['request_fulluri'] = true;
|
2010-01-07 21:57:33 +00:00
|
|
|
}
|
|
|
|
|
|
2010-02-03 06:19:47 +00:00
|
|
|
if ( !$this->followRedirects ) {
|
|
|
|
|
$options['max_redirects'] = 0;
|
|
|
|
|
} else {
|
|
|
|
|
$options['max_redirects'] = $this->maxRedirects;
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
$options['method'] = $this->method;
|
|
|
|
|
$options['timeout'] = $this->timeout;
|
|
|
|
|
$options['header'] = implode("\r\n", $this->getHeaderList());
|
2010-01-29 07:25:09 +00:00
|
|
|
// 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";
|
2010-01-15 18:57:29 +00:00
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
if ( $this->postData ) {
|
|
|
|
|
$options['content'] = $this->postData;
|
2010-01-07 21:57:33 +00:00
|
|
|
}
|
|
|
|
|
|
2010-01-29 07:25:09 +00:00
|
|
|
$oldTimeout = false;
|
|
|
|
|
if ( version_compare( '5.2.1', phpversion(), '>' ) ) {
|
|
|
|
|
$oldTimeout = ini_set('default_socket_timeout', $this->timeout);
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-22 07:50:02 +00:00
|
|
|
$context = stream_context_create( array( 'http' => $options ) );
|
2010-01-29 07:25:09 +00:00
|
|
|
wfSuppressWarnings();
|
|
|
|
|
$fh = fopen( $this->url, "r", false, $context );
|
|
|
|
|
wfRestoreWarnings();
|
|
|
|
|
if ( $oldTimeout !== false ) {
|
|
|
|
|
ini_set('default_socket_timeout', $oldTimeout);
|
|
|
|
|
}
|
|
|
|
|
if ( $fh === false ) {
|
|
|
|
|
$this->status->fatal( 'http-request-error' );
|
2010-01-22 02:17:58 +00:00
|
|
|
return $this->status;
|
2010-01-07 21:57:33 +00:00
|
|
|
}
|
2010-01-22 02:17:58 +00:00
|
|
|
|
2010-01-29 07:25:09 +00:00
|
|
|
$result = stream_get_meta_data( $fh );
|
2010-01-22 02:17:58 +00:00
|
|
|
if ( $result['timed_out'] ) {
|
2010-01-22 07:50:02 +00:00
|
|
|
$this->status->fatal( 'http-timed-out', $this->url );
|
|
|
|
|
return $this->status;
|
2010-01-07 21:57:33 +00:00
|
|
|
}
|
2010-02-03 06:19:47 +00:00
|
|
|
$this->headerList = $result['wrapper_data'];
|
2010-01-07 21:57:33 +00:00
|
|
|
|
2010-01-29 07:25:09 +00:00
|
|
|
while ( !feof( $fh ) ) {
|
|
|
|
|
$buf = fread( $fh, 8192 );
|
|
|
|
|
if ( $buf === false ) {
|
|
|
|
|
$this->status->fatal( 'http-read-error' );
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if ( strlen( $buf ) ) {
|
|
|
|
|
call_user_func( $this->callback, $fh, $buf );
|
2010-01-22 07:50:02 +00:00
|
|
|
}
|
2010-01-07 21:57:33 +00:00
|
|
|
}
|
2010-01-29 07:25:09 +00:00
|
|
|
fclose( $fh );
|
2010-01-07 21:57:33 +00:00
|
|
|
|
2010-01-22 02:17:58 +00:00
|
|
|
return $this->status;
|
|
|
|
|
}
|
2009-07-25 00:19:36 +00:00
|
|
|
}
|