, Donovan Jimenez */ // Require Apache_Solr_HttpTransport_Abstract require_once(dirname(__FILE__) . '/Abstract.php'); /** * An alternative Curl HTTP transport that opens and closes a curl session for * every request. This isn't the recommended way to use curl, but some version of * PHP have memory issues. */ class Apache_Solr_HttpTransport_CurlNoReuse extends Apache_Solr_HttpTransport_Abstract { /** * SVN Revision meta data for this class */ const SVN_REVISION = '$Revision:$'; /** * SVN ID meta data for this class */ const SVN_ID = '$Id:$'; private $_authString = false; private $_proxy = ''; private $_proxyPort = ''; private $_proxyUsername = ''; private $_proxyPassword = ''; public function setAuthenticationCredentials($username, $password) { // this is how curl wants it for the CURLOPT_USERPWD $this->_authString = $username . ":" . $password; } public function setProxy($proxy, $port, $username = '', $password = '') { $this->_proxy = $proxy; $this->_proxyPort = $port; $this->_proxyUsername = $username; $this->_proxyPassword = $password; } public function performGetRequest($url, $timeout = false) { // check the timeout value if ($timeout === false || $timeout <= 0.0) { // use the default timeout $timeout = $this->getDefaultTimeout(); } $curl = curl_init(); // set curl GET options curl_setopt_array($curl, array( // return the response body from curl_exec CURLOPT_RETURNTRANSFER => true, // get the output as binary data CURLOPT_BINARYTRANSFER => true, // we do not need the headers in the output, we get everything we need from curl_getinfo CURLOPT_HEADER => false, // set the URL CURLOPT_URL => $url, // set the timeout CURLOPT_TIMEOUT => $timeout )); // set auth if appropriate if ($this->_authString !== false) { curl_setopt_array($curl, array( CURLOPT_USERPWD => $this->_authString, CURLOPT_HTTPAUTH => CURLAUTH_BASIC )); } // set proxy if ($this->_proxy != '' && $this->_proxyPort != '') { curl_setopt_array($this->_curl, array( CURLOPT_PROXY => $this->_proxy, CURLOPT_PROXYPORT => $this->_proxyPort )); if ($this->_proxyUsername != '' && $this->_proxyPassword != '') { curl_setopt_array($this->_curl, array( CURLOPT_PROXYAUTH => CURLAUTH_BASIC, CURLOPT_PROXYUSERPWD => "$this->_proxyUsername:$this->_proxyPassword" )); } } // make the request $responseBody = curl_exec($curl); // get info from the transfer $statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE); $contentType = curl_getinfo($curl, CURLINFO_CONTENT_TYPE); // close our curl session - we're done with it curl_close($curl); return new Apache_Solr_HttpTransport_Response($statusCode, $contentType, $responseBody); } public function performHeadRequest($url, $timeout = false) { // check the timeout value if ($timeout === false || $timeout <= 0.0) { // use the default timeout $timeout = $this->getDefaultTimeout(); } $curl = curl_init(); // set curl HEAD options curl_setopt_array($curl, array( // return the response body from curl_exec CURLOPT_RETURNTRANSFER => true, // get the output as binary data CURLOPT_BINARYTRANSFER => true, // we do not need the headers in the output, we get everything we need from curl_getinfo CURLOPT_HEADER => false, // this both sets the method to HEAD and says not to return a body CURLOPT_NOBODY => true, // set the URL CURLOPT_URL => $url, // set the timeout CURLOPT_TIMEOUT => $timeout )); // set auth if appropriate if ($this->_authString !== false) { curl_setopt_array($curl, array( CURLOPT_USERPWD => $this->_authString, CURLOPT_HTTPAUTH => CURLAUTH_BASIC )); } // set proxy if ($this->_proxy != '' && $this->_proxyPort != '') { curl_setopt_array($this->_curl, array( CURLOPT_PROXY => $this->_proxy, CURLOPT_PROXYPORT => $this->_proxyPort )); if ($this->_proxyUsername != '' && $this->_proxyPassword != '') { curl_setopt_array($this->_curl, array( CURLOPT_PROXYAUTH => CURLAUTH_BASIC, CURLOPT_PROXYUSERPWD => "$this->_proxyUsername:$this->_proxyPassword" )); } } // make the request $responseBody = curl_exec($curl); // get info from the transfer $statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE); $contentType = curl_getinfo($curl, CURLINFO_CONTENT_TYPE); // close our curl session - we're done with it curl_close($curl); return new Apache_Solr_HttpTransport_Response($statusCode, $contentType, $responseBody); } public function performPostRequest($url, $postData, $contentType, $timeout = false) { // check the timeout value if ($timeout === false || $timeout <= 0.0) { // use the default timeout $timeout = $this->getDefaultTimeout(); } $curl = curl_init(); // set curl POST options curl_setopt_array($curl, array( // return the response body from curl_exec CURLOPT_RETURNTRANSFER => true, // get the output as binary data CURLOPT_BINARYTRANSFER => true, // we do not need the headers in the output, we get everything we need from curl_getinfo CURLOPT_HEADER => false, // make sure we're POST CURLOPT_POST => true, // set the URL CURLOPT_URL => $url, // set the post data CURLOPT_POSTFIELDS => $postData, // set the content type CURLOPT_HTTPHEADER => array("Content-Type: {$contentType}"), // set the timeout CURLOPT_TIMEOUT => $timeout )); // set auth if appropriate if ($this->_authString !== false) { curl_setopt_array($curl, array( CURLOPT_USERPWD => $this->_authString, CURLOPT_HTTPAUTH => CURLAUTH_BASIC )); } // set proxy if ($this->_proxy != '' && $this->_proxyPort != '') { curl_setopt_array($this->_curl, array( CURLOPT_PROXY => $this->_proxy, CURLOPT_PROXYPORT => $this->_proxyPort )); if ($this->_proxyUsername != '' && $this->_proxyPassword != '') { curl_setopt_array($this->_curl, array( CURLOPT_PROXYAUTH => CURLAUTH_BASIC, CURLOPT_PROXYUSERPWD => "$this->_proxyUsername:$this->_proxyPassword" )); } } // make the request $responseBody = curl_exec($curl); // get info from the transfer $statusCode = curl_getinfo($curl, CURLINFO_HTTP_CODE); $contentType = curl_getinfo($curl, CURLINFO_CONTENT_TYPE); // close our curl session - we're done with it curl_close($curl); return new Apache_Solr_HttpTransport_Response($statusCode, $contentType, $responseBody); } }