| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Http
- * @subpackage Client_Adapter
- * @version $Id$
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- /**
- * @see Zend_Uri_Http
- */
- require_once 'Zend/Uri/Http.php';
- /**
- * @see Zend_Http_Client_Adapter_Interface
- */
- require_once 'Zend/Http/Client/Adapter/Interface.php';
- /**
- * @see Zend_Http_Client_Adapter_Stream
- */
- require_once 'Zend/Http/Client/Adapter/Stream.php';
- /**
- * An adapter class for Zend_Http_Client based on the curl extension.
- * Curl requires libcurl. See for full requirements the PHP manual: http://php.net/curl
- *
- * @category Zend
- * @package Zend_Http
- * @subpackage Client_Adapter
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- class Zend_Http_Client_Adapter_Curl implements Zend_Http_Client_Adapter_Interface, Zend_Http_Client_Adapter_Stream
- {
- /**
- * Parameters array
- *
- * @var array
- */
- protected $_config = array();
- /**
- * What host/port are we connected to?
- *
- * @var array
- */
- protected $_connected_to = array(null, null);
- /**
- * The curl session handle
- *
- * @var resource|null
- */
- protected $_curl = null;
- /**
- * List of cURL options that should never be overwritten
- *
- * @var array
- */
- protected $_invalidOverwritableCurlOptions;
- /**
- * Response gotten from server
- *
- * @var string
- */
- protected $_response = null;
- /**
- * Stream for storing output
- *
- * @var resource
- */
- protected $out_stream;
- /**
- * Adapter constructor
- *
- * Config is set using setConfig()
- *
- * @return void
- * @throws Zend_Http_Client_Adapter_Exception
- */
- public function __construct()
- {
- if (!extension_loaded('curl')) {
- require_once 'Zend/Http/Client/Adapter/Exception.php';
- throw new Zend_Http_Client_Adapter_Exception('cURL extension has to be loaded to use this Zend_Http_Client adapter.');
- }
- $this->_invalidOverwritableCurlOptions = array(
- CURLOPT_HTTPGET,
- CURLOPT_POST,
- CURLOPT_PUT,
- CURLOPT_CUSTOMREQUEST,
- CURLOPT_HEADER,
- CURLOPT_RETURNTRANSFER,
- CURLOPT_HTTPHEADER,
- CURLOPT_POSTFIELDS,
- CURLOPT_INFILE,
- CURLOPT_INFILESIZE,
- CURLOPT_PORT,
- CURLOPT_MAXREDIRS,
- CURLOPT_CONNECTTIMEOUT,
- CURL_HTTP_VERSION_1_1,
- CURL_HTTP_VERSION_1_0,
- );
- }
- /**
- * Set the configuration array for the adapter
- *
- * @throws Zend_Http_Client_Adapter_Exception
- * @param Zend_Config | array $config
- * @return Zend_Http_Client_Adapter_Curl
- */
- public function setConfig($config = array())
- {
- if ($config instanceof Zend_Config) {
- $config = $config->toArray();
- } elseif (! is_array($config)) {
- require_once 'Zend/Http/Client/Adapter/Exception.php';
- throw new Zend_Http_Client_Adapter_Exception(
- 'Array or Zend_Config object expected, got ' . gettype($config)
- );
- }
- if(isset($config['proxy_user']) && isset($config['proxy_pass'])) {
- $this->setCurlOption(CURLOPT_PROXYUSERPWD, $config['proxy_user'].":".$config['proxy_pass']);
- unset($config['proxy_user'], $config['proxy_pass']);
- }
- foreach ($config as $k => $v) {
- $option = strtolower($k);
- switch($option) {
- case 'proxy_host':
- $this->setCurlOption(CURLOPT_PROXY, $v);
- break;
- case 'proxy_port':
- $this->setCurlOption(CURLOPT_PROXYPORT, $v);
- break;
- default:
- $this->_config[$option] = $v;
- break;
- }
- }
- return $this;
- }
- /**
- * Retrieve the array of all configuration options
- *
- * @return array
- */
- public function getConfig()
- {
- return $this->_config;
- }
- /**
- * Direct setter for cURL adapter related options.
- *
- * @param string|int $option
- * @param mixed $value
- * @return Zend_Http_Adapter_Curl
- */
- public function setCurlOption($option, $value)
- {
- if (!isset($this->_config['curloptions'])) {
- $this->_config['curloptions'] = array();
- }
- $this->_config['curloptions'][$option] = $value;
- return $this;
- }
- /**
- * Initialize curl
- *
- * @param string $host
- * @param int $port
- * @param boolean $secure
- * @return void
- * @throws Zend_Http_Client_Adapter_Exception if unable to connect
- */
- public function connect($host, $port = 80, $secure = false)
- {
- // If we're already connected, disconnect first
- if ($this->_curl) {
- $this->close();
- }
- // If we are connected to a different server or port, disconnect first
- if ($this->_curl
- && is_array($this->_connected_to)
- && ($this->_connected_to[0] != $host
- || $this->_connected_to[1] != $port)
- ) {
- $this->close();
- }
- // Do the actual connection
- $this->_curl = curl_init();
- if ($port != 80) {
- curl_setopt($this->_curl, CURLOPT_PORT, intval($port));
- }
- // Set connection timeout
- $connectTimeout = $this->_config['timeout'];
- $constant = CURLOPT_CONNECTTIMEOUT;
- if (defined('CURLOPT_CONNECTTIMEOUT_MS')) {
- $connectTimeout *= 1000;
- $constant = constant('CURLOPT_CONNECTTIMEOUT_MS');
- }
- curl_setopt($this->_curl, $constant, $connectTimeout);
- // Set request timeout (once connection is established)
- if (array_key_exists('request_timeout', $this->_config)) {
- $requestTimeout = $this->_config['request_timeout'];
- $constant = CURLOPT_TIMEOUT;
- if (defined('CURLOPT_TIMEOUT_MS')) {
- $requestTimeout *= 1000;
- $constant = constant('CURLOPT_TIMEOUT_MS');
- }
- curl_setopt($this->_curl, $constant, $requestTimeout);
- }
- // Set Max redirects
- curl_setopt($this->_curl, CURLOPT_MAXREDIRS, $this->_config['maxredirects']);
- if (!$this->_curl) {
- $this->close();
- require_once 'Zend/Http/Client/Adapter/Exception.php';
- throw new Zend_Http_Client_Adapter_Exception('Unable to Connect to ' . $host . ':' . $port);
- }
- if ($secure !== false) {
- // Behave the same like Zend_Http_Adapter_Socket on SSL options.
- if (isset($this->_config['sslcert'])) {
- curl_setopt($this->_curl, CURLOPT_SSLCERT, $this->_config['sslcert']);
- }
- if (isset($this->_config['sslpassphrase'])) {
- curl_setopt($this->_curl, CURLOPT_SSLCERTPASSWD, $this->_config['sslpassphrase']);
- }
- }
- // Update connected_to
- $this->_connected_to = array($host, $port);
- }
- /**
- * Send request to the remote server
- *
- * @param string $method
- * @param Zend_Uri_Http $uri
- * @param float $http_ver
- * @param array $headers
- * @param string $body
- * @return string $request
- * @throws Zend_Http_Client_Adapter_Exception If connection fails, connected to wrong host, no PUT file defined, unsupported method, or unsupported cURL option
- */
- public function write($method, $uri, $httpVersion = 1.1, $headers = array(), $body = '')
- {
- // Make sure we're properly connected
- if (!$this->_curl) {
- require_once 'Zend/Http/Client/Adapter/Exception.php';
- throw new Zend_Http_Client_Adapter_Exception("Trying to write but we are not connected");
- }
- if ($this->_connected_to[0] != $uri->getHost() || $this->_connected_to[1] != $uri->getPort()) {
- require_once 'Zend/Http/Client/Adapter/Exception.php';
- throw new Zend_Http_Client_Adapter_Exception("Trying to write but we are connected to the wrong host");
- }
- // set URL
- curl_setopt($this->_curl, CURLOPT_URL, $uri->__toString());
- // ensure correct curl call
- $curlValue = true;
- switch ($method) {
- case Zend_Http_Client::GET:
- $curlMethod = CURLOPT_HTTPGET;
- break;
- case Zend_Http_Client::POST:
- $curlMethod = CURLOPT_POST;
- break;
- case Zend_Http_Client::PUT:
- // There are two different types of PUT request, either a Raw Data string has been set
- // or CURLOPT_INFILE and CURLOPT_INFILESIZE are used.
- if(is_resource($body)) {
- $this->_config['curloptions'][CURLOPT_INFILE] = $body;
- }
- if (isset($this->_config['curloptions'][CURLOPT_INFILE])) {
- // Now we will probably already have Content-Length set, so that we have to delete it
- // from $headers at this point:
- foreach ($headers AS $k => $header) {
- if (preg_match('/Content-Length:\s*(\d+)/i', $header, $m)) {
- if(is_resource($body)) {
- $this->_config['curloptions'][CURLOPT_INFILESIZE] = (int)$m[1];
- }
- unset($headers[$k]);
- }
- }
- if (!isset($this->_config['curloptions'][CURLOPT_INFILESIZE])) {
- require_once 'Zend/Http/Client/Adapter/Exception.php';
- throw new Zend_Http_Client_Adapter_Exception("Cannot set a file-handle for cURL option CURLOPT_INFILE without also setting its size in CURLOPT_INFILESIZE.");
- }
- if(is_resource($body)) {
- $body = '';
- }
- $curlMethod = CURLOPT_PUT;
- } else {
- $curlMethod = CURLOPT_CUSTOMREQUEST;
- $curlValue = "PUT";
- }
- break;
- case Zend_Http_Client::PATCH:
- $curlMethod = CURLOPT_CUSTOMREQUEST;
- $curlValue = "PATCH";
- break;
- case Zend_Http_Client::DELETE:
- $curlMethod = CURLOPT_CUSTOMREQUEST;
- $curlValue = "DELETE";
- break;
- case Zend_Http_Client::OPTIONS:
- $curlMethod = CURLOPT_CUSTOMREQUEST;
- $curlValue = "OPTIONS";
- break;
- case Zend_Http_Client::TRACE:
- $curlMethod = CURLOPT_CUSTOMREQUEST;
- $curlValue = "TRACE";
- break;
- case Zend_Http_Client::HEAD:
- $curlMethod = CURLOPT_CUSTOMREQUEST;
- $curlValue = "HEAD";
- break;
- default:
- // For now, through an exception for unsupported request methods
- require_once 'Zend/Http/Client/Adapter/Exception.php';
- throw new Zend_Http_Client_Adapter_Exception("Method currently not supported");
- }
- if(is_resource($body) && $curlMethod != CURLOPT_PUT) {
- require_once 'Zend/Http/Client/Adapter/Exception.php';
- throw new Zend_Http_Client_Adapter_Exception("Streaming requests are allowed only with PUT");
- }
- // get http version to use
- $curlHttp = ($httpVersion == 1.1) ? CURL_HTTP_VERSION_1_1 : CURL_HTTP_VERSION_1_0;
- // mark as HTTP request and set HTTP method
- curl_setopt($this->_curl, CURLOPT_HTTP_VERSION, $curlHttp);
- curl_setopt($this->_curl, $curlMethod, $curlValue);
- if($this->out_stream) {
- // headers will be read into the response
- curl_setopt($this->_curl, CURLOPT_HEADER, false);
- curl_setopt($this->_curl, CURLOPT_HEADERFUNCTION, array($this, "readHeader"));
- // and data will be written into the file
- curl_setopt($this->_curl, CURLOPT_FILE, $this->out_stream);
- } else {
- // ensure headers are also returned
- curl_setopt($this->_curl, CURLOPT_HEADER, true);
- curl_setopt($this->_curl, CURLINFO_HEADER_OUT, true);
- // ensure actual response is returned
- curl_setopt($this->_curl, CURLOPT_RETURNTRANSFER, true);
- }
- // set additional headers
- $headers['Accept'] = '';
- curl_setopt($this->_curl, CURLOPT_HTTPHEADER, $headers);
- /**
- * Make sure POSTFIELDS is set after $curlMethod is set:
- * @link http://de2.php.net/manual/en/function.curl-setopt.php#81161
- */
- if ($method == Zend_Http_Client::POST) {
- curl_setopt($this->_curl, CURLOPT_POSTFIELDS, $body);
- } elseif ($curlMethod == CURLOPT_PUT) {
- // this covers a PUT by file-handle:
- // Make the setting of this options explicit (rather than setting it through the loop following a bit lower)
- // to group common functionality together.
- curl_setopt($this->_curl, CURLOPT_INFILE, $this->_config['curloptions'][CURLOPT_INFILE]);
- curl_setopt($this->_curl, CURLOPT_INFILESIZE, $this->_config['curloptions'][CURLOPT_INFILESIZE]);
- unset($this->_config['curloptions'][CURLOPT_INFILE]);
- unset($this->_config['curloptions'][CURLOPT_INFILESIZE]);
- } elseif ($method == Zend_Http_Client::PUT) {
- // This is a PUT by a setRawData string, not by file-handle
- curl_setopt($this->_curl, CURLOPT_POSTFIELDS, $body);
- } elseif ($method == Zend_Http_Client::PATCH) {
- // This is a PATCH by a setRawData string
- curl_setopt($this->_curl, CURLOPT_POSTFIELDS, $body);
- } elseif ($method == Zend_Http_Client::DELETE) {
- // This is a DELETE by a setRawData string
- curl_setopt($this->_curl, CURLOPT_POSTFIELDS, $body);
- } elseif ($method == Zend_Http_Client::OPTIONS) {
- // This is an OPTIONS by a setRawData string
- curl_setopt($this->_curl, CURLOPT_POSTFIELDS, $body);
- }
- // set additional curl options
- if (isset($this->_config['curloptions'])) {
- foreach ((array)$this->_config['curloptions'] as $k => $v) {
- if (!in_array($k, $this->_invalidOverwritableCurlOptions)) {
- if (curl_setopt($this->_curl, $k, $v) == false) {
- require_once 'Zend/Http/Client/Exception.php';
- throw new Zend_Http_Client_Exception(sprintf("Unknown or erroreous cURL option '%s' set", $k));
- }
- }
- }
- }
- // send the request
- $response = curl_exec($this->_curl);
- // if we used streaming, headers are already there
- if(!is_resource($this->out_stream)) {
- $this->_response = $response;
- }
- $request = curl_getinfo($this->_curl, CURLINFO_HEADER_OUT);
- $request .= $body;
- if (empty($this->_response)) {
- require_once 'Zend/Http/Client/Exception.php';
- throw new Zend_Http_Client_Exception("Error in cURL request: " . curl_error($this->_curl));
- }
- // cURL automatically decodes chunked-messages, this means we have to disallow the Zend_Http_Response to do it again
- if (stripos($this->_response, "Transfer-Encoding: chunked\r\n")) {
- $this->_response = str_ireplace("Transfer-Encoding: chunked\r\n", '', $this->_response);
- }
- // Eliminate multiple HTTP responses.
- do {
- $parts = preg_split('|(?:\r?\n){2}|m', $this->_response, 2);
- $again = false;
- if (isset($parts[1]) && preg_match("|^HTTP/1\.[01](.*?)\r\n|mi", $parts[1])) {
- $this->_response = $parts[1];
- $again = true;
- }
- } while ($again);
- // cURL automatically handles Proxy rewrites, remove the "HTTP/1.0 200 Connection established" string:
- if (stripos($this->_response, "HTTP/1.0 200 Connection established\r\n\r\n") !== false) {
- $this->_response = str_ireplace("HTTP/1.0 200 Connection established\r\n\r\n", '', $this->_response);
- }
- return $request;
- }
- /**
- * Return read response from server
- *
- * @return string
- */
- public function read()
- {
- return $this->_response;
- }
- /**
- * Close the connection to the server
- *
- */
- public function close()
- {
- if(is_resource($this->_curl)) {
- curl_close($this->_curl);
- }
- $this->_curl = null;
- $this->_connected_to = array(null, null);
- }
- /**
- * Get cUrl Handle
- *
- * @return resource
- */
- public function getHandle()
- {
- return $this->_curl;
- }
- /**
- * Set output stream for the response
- *
- * @param resource $stream
- * @return Zend_Http_Client_Adapter_Socket
- */
- public function setOutputStream($stream)
- {
- $this->out_stream = $stream;
- return $this;
- }
- /**
- * Header reader function for CURL
- *
- * @param resource $curl
- * @param string $header
- * @return int
- */
- public function readHeader($curl, $header)
- {
- $this->_response .= $header;
- return strlen($header);
- }
- }
|