* @copyright 2005 Janrain, Inc. * @license http://www.gnu.org/copyleft/lesser.html LGPL */ /** * Interface import */ require_once "Auth/OpenID/HTTPFetcher.php"; /** * Define this based on whether the CURL extension is available. */ define('Auth_OpenID_CURL_PRESENT', function_exists('curl_init')); /** * A paranoid {@link Auth_OpenID_HTTPFetcher} class which uses CURL * for fetching. * * @package OpenID */ class Auth_OpenID_ParanoidHTTPFetcher extends Auth_OpenID_HTTPFetcher { function Auth_OpenID_ParanoidHTTPFetcher() { if (!Auth_OpenID_CURL_PRESENT) { trigger_error("Cannot use this class; CURL extension not found", E_USER_ERROR); } $this->headers = array(); $this->data = ""; $this->reset(); } function reset() { $this->headers = array(); $this->data = ""; } /** * @access private */ function _writeHeader($ch, $header) { array_push($this->headers, rtrim($header)); return strlen($header); } /** * @access private */ function _writeData($ch, $data) { $this->data .= $data; return strlen($data); } function get($url) { $stop = time() + $this->timeout; $off = $this->timeout; $redir = true; while ($redir && ($off > 0)) { $this->reset(); $c = curl_init(); curl_setopt($c, CURLOPT_NOSIGNAL, true); if (!$this->allowedURL($url)) { trigger_error(sprintf("Fetching URL not allowed: %s", $url), E_USER_WARNING); return null; } curl_setopt($c, CURLOPT_WRITEFUNCTION, array(&$this, "_writeData")); curl_setopt($c, CURLOPT_HEADERFUNCTION, array(&$this, "_writeHeader")); curl_setopt($c, CURLOPT_TIMEOUT, $off); curl_setopt($c, CURLOPT_URL, $url); curl_exec($c); $code = curl_getinfo($c, CURLINFO_HTTP_CODE); $body = $this->data; $headers = $this->headers; if (!$code) { trigger_error("No HTTP code returned", E_USER_WARNING); return null; } if (in_array($code, array(301, 302, 303, 307))) { $url = $this->_findRedirect($headers); $redir = true; } else { $redir = false; curl_close($c); return new Services_Yadis_HTTPResponse($url, $code, $headers, $body); } $off = $stop - time(); } trigger_error(sprintf("Timed out fetching: %s", $url), E_USER_WARNING); return null; } function post($url, $body) { $this->reset(); if (!$this->allowedURL($url)) { trigger_error(sprintf("Fetching URL not allowed: %s", $url), E_USER_WARNING); return null; } $c = curl_init(); curl_setopt($c, CURLOPT_NOSIGNAL, true); curl_setopt($c, CURLOPT_POST, true); curl_setopt($c, CURLOPT_POSTFIELDS, $body); curl_setopt($c, CURLOPT_TIMEOUT, $this->timeout); curl_setopt($c, CURLOPT_URL, $url); curl_setopt($c, CURLOPT_WRITEFUNCTION, array(&$this, "_writeData")); curl_exec($c); $code = curl_getinfo($c, CURLINFO_HTTP_CODE); if (!$code) { trigger_error("No HTTP code returned", E_USER_WARNING); return null; } $body = $this->data; curl_close($c); return new Auth_OpenID_HTTPResponse($url, $code, $this->headers, $body); } } ?>