X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fhttpclient.php;h=a92c7d8c5be96d70cc8cbf14cd6bcd9e9b3032fc;hb=e274f69634755a732d195b769c649e3e6df3373a;hp=b69f718e5f01c3b6e0f2d90f5876b5ecadab95c3;hpb=ef51cc9ad4a37d6dcd2129828284def1c90d7402;p=quix0rs-gnu-social.git diff --git a/lib/httpclient.php b/lib/httpclient.php index b69f718e5f..a92c7d8c5b 100644 --- a/lib/httpclient.php +++ b/lib/httpclient.php @@ -27,7 +27,7 @@ * @link http://status.net/ */ -if (!defined('STATUSNET')) { +if (!defined('GNUSOCIAL')) { exit(1); } @@ -54,7 +54,7 @@ require_once 'HTTP/Request2/Response.php'; * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ -class StatusNet_HTTPResponse extends HTTP_Request2_Response +class GNUsocial_HTTPResponse extends HTTP_Request2_Response { function __construct(HTTP_Request2_Response $response, $url, $redirects=0) { @@ -145,6 +145,18 @@ class HTTPClient extends HTTP_Request2 $this->config['ssl_verify_peer'] = false; } + if (common_config('http', 'curl') && extension_loaded('curl')) { + $this->config['adapter'] = 'HTTP_Request2_Adapter_Curl'; + } + + foreach (array('host', 'port', 'user', 'password', 'auth_scheme') as $cf) { + $k = 'proxy_'.$cf; + $v = common_config('http', $k); + if (!empty($v)) { + $this->config[$k] = $v; + } + } + parent::__construct($url, $method, $config); $this->setHeader('User-Agent', $this->userAgent()); } @@ -161,7 +173,7 @@ class HTTPClient extends HTTP_Request2 /** * Convenience function to run a GET request. * - * @return StatusNet_HTTPResponse + * @return GNUsocial_HTTPResponse * @throws HTTP_Request2_Exception */ public function get($url, $headers=array()) @@ -172,7 +184,7 @@ class HTTPClient extends HTTP_Request2 /** * Convenience function to run a HEAD request. * - * @return StatusNet_HTTPResponse + * @return GNUsocial_HTTPResponse * @throws HTTP_Request2_Exception */ public function head($url, $headers=array()) @@ -186,7 +198,7 @@ class HTTPClient extends HTTP_Request2 * @param string $url * @param array $headers optional associative array of HTTP headers * @param array $data optional associative array or blob of form data to submit - * @return StatusNet_HTTPResponse + * @return GNUsocial_HTTPResponse * @throws HTTP_Request2_Exception */ public function post($url, $headers=array(), $data=array()) @@ -198,12 +210,21 @@ class HTTPClient extends HTTP_Request2 } /** - * @return StatusNet_HTTPResponse + * @return GNUsocial_HTTPResponse * @throws HTTP_Request2_Exception */ protected function doRequest($url, $method, $headers) { $this->setUrl($url); + + // Workaround for HTTP_Request2 not setting up SNI in socket contexts; + // This fixes cert validation for SSL virtual hosts using SNI. + // Requires PHP 5.3.2 or later and OpenSSL with SNI support. + if ($this->url->getScheme() == 'https' && defined('OPENSSL_TLSEXT_SERVER_NAME')) { + $this->config['ssl_SNI_enabled'] = true; + $this->config['ssl_SNI_server_name'] = $this->url->getHost(); + } + $this->setMethod($method); if ($headers) { foreach ($headers as $header) { @@ -221,23 +242,23 @@ class HTTPClient extends HTTP_Request2 } /** - * Pulls up StatusNet's customized user-agent string, so services + * Pulls up GNU Social's customized user-agent string, so services * we hit can track down the responsible software. * * @return string */ function userAgent() { - return "StatusNet/".STATUSNET_VERSION." (".STATUSNET_CODENAME.")"; + return "GNU Social/".STATUSNET_VERSION." (".STATUSNET_CODENAME.")"; } /** * Actually performs the HTTP request and returns a - * StatusNet_HTTPResponse object with response body and header info. + * GNUsocial_HTTPResponse object with response body and header info. * * Wraps around parent send() to add logging and redirection processing. * - * @return StatusNet_HTTPResponse + * @return GNUsocial_HTTPResponse * @throw HTTP_Request2_Exception */ public function send() @@ -280,6 +301,6 @@ class HTTPClient extends HTTP_Request2 } break; } while ($maxRedirs); - return new StatusNet_HTTPResponse($response, $this->getUrl(), $redirs); + return new GNUsocial_HTTPResponse($response, $this->getUrl(), $redirs); } }