X-Git-Url: https://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Fhttp%2FCurlHttpRequest.php;h=bab85216c02262c977393259a37ce4cd2a44546d;hb=334ee2f00c56290a80b6d76272f28f4997b2be04;hp=3da3eb325c77916729882aa222530d85af835a81;hpb=967ead16680077f4734ba668cd4104c789a3b9ff;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/http/CurlHttpRequest.php b/includes/http/CurlHttpRequest.php index 3da3eb325c..bab85216c0 100644 --- a/includes/http/CurlHttpRequest.php +++ b/includes/http/CurlHttpRequest.php @@ -82,16 +82,7 @@ class CurlHttpRequest extends MWHttpRequest { // Don't interpret POST parameters starting with '@' as file uploads, because this // makes it impossible to POST plain values starting with '@' (and causes security // issues potentially exposing the contents of local files). - // The PHP manual says this option was introduced in PHP 5.5 defaults to true in PHP 5.6, - // but we support lower versions, and the option doesn't exist in HHVM 5.6.99. - if ( defined( 'CURLOPT_SAFE_UPLOAD' ) ) { - $this->curlOptions[CURLOPT_SAFE_UPLOAD] = true; - } elseif ( is_array( $postData ) ) { - // In PHP 5.2 and later, '@' is interpreted as a file upload if POSTFIELDS - // is an array, but not if it's a string. So convert $req['body'] to a string - // for safety. - $postData = wfArrayToCgi( $postData ); - } + $this->curlOptions[CURLOPT_SAFE_UPLOAD] = true; $this->curlOptions[CURLOPT_POSTFIELDS] = $postData; // Suppress 'Expect: 100-continue' header, as some servers @@ -107,18 +98,19 @@ class CurlHttpRequest extends MWHttpRequest { $curlHandle = curl_init( $this->url ); if ( !curl_setopt_array( $curlHandle, $this->curlOptions ) ) { + $this->status->fatal( 'http-internal-error' ); throw new InvalidArgumentException( "Error setting curl options." ); } if ( $this->followRedirects && $this->canFollowRedirects() ) { - MediaWiki\suppressWarnings(); + Wikimedia\suppressWarnings(); if ( !curl_setopt( $curlHandle, CURLOPT_FOLLOWLOCATION, true ) ) { $this->logger->debug( __METHOD__ . ": Couldn't set CURLOPT_FOLLOWLOCATION. " . "Probably open_basedir is set.\n" ); // Continue the processing. If it were in curl_setopt_array, // processing would have halted on its entry } - MediaWiki\restoreWarnings(); + Wikimedia\restoreWarnings(); } if ( $this->profiler ) { @@ -158,13 +150,6 @@ class CurlHttpRequest extends MWHttpRequest { return false; } - if ( version_compare( PHP_VERSION, '5.6.0', '<' ) ) { - if ( strval( ini_get( 'open_basedir' ) ) !== '' ) { - $this->logger->debug( "Cannot follow redirects when open_basedir is set\n" ); - return false; - } - } - return true; } }