import
[web.mtrack] / inc / lib / Auth / Yadis / ParanoidHTTPFetcher.php
1 <?php
2
3 /**
4  * This module contains the CURL-based HTTP fetcher implementation.
5  *
6  * PHP versions 4 and 5
7  *
8  * LICENSE: See the COPYING file included in this distribution.
9  *
10  * @package OpenID
11  * @author JanRain, Inc. <openid@janrain.com>
12  * @copyright 2005-2008 Janrain, Inc.
13  * @license http://www.apache.org/licenses/LICENSE-2.0 Apache
14  */
15
16 /**
17  * Interface import
18  */
19 require_once "Auth/Yadis/HTTPFetcher.php";
20
21 require_once "Auth/OpenID.php";
22
23 /**
24  * A paranoid {@link Auth_Yadis_HTTPFetcher} class which uses CURL
25  * for fetching.
26  *
27  * @package OpenID
28  */
29 class Auth_Yadis_ParanoidHTTPFetcher extends Auth_Yadis_HTTPFetcher {
30     function Auth_Yadis_ParanoidHTTPFetcher()
31     {
32         $this->reset();
33     }
34
35     function reset()
36     {
37         $this->headers = array();
38         $this->data = "";
39     }
40
41     /**
42      * @access private
43      */
44     function _writeHeader($ch, $header)
45     {
46         array_push($this->headers, rtrim($header));
47         return strlen($header);
48     }
49
50     /**
51      * @access private
52      */
53     function _writeData($ch, $data)
54     {
55         if (strlen($this->data) > 1024*Auth_OpenID_FETCHER_MAX_RESPONSE_KB) {
56             return 0;
57         } else {
58             $this->data .= $data;
59             return strlen($data);
60         }
61     }
62
63     /**
64      * Does this fetcher support SSL URLs?
65      */
66     function supportsSSL()
67     {
68         $v = curl_version();
69         if(is_array($v)) {
70             return in_array('https', $v['protocols']);
71         } elseif (is_string($v)) {
72             return preg_match('/OpenSSL/i', $v);
73         } else {
74             return 0;
75         }
76     }
77
78     function get($url, $extra_headers = null)
79     {
80         if (!$this->canFetchURL($url)) {
81             return null;
82         }
83
84         $stop = time() + $this->timeout;
85         $off = $this->timeout;
86
87         $redir = true;
88
89         while ($redir && ($off > 0)) {
90             $this->reset();
91
92             $c = curl_init();
93
94             if ($c === false) {
95                 Auth_OpenID::log(
96                     "curl_init returned false; could not " .
97                     "initialize for URL '%s'", $url);
98                 return null;
99             }
100
101             if (defined('CURLOPT_NOSIGNAL')) {
102                 curl_setopt($c, CURLOPT_NOSIGNAL, true);
103             }
104
105             if (!$this->allowedURL($url)) {
106                 Auth_OpenID::log("Fetching URL not allowed: %s",
107                                  $url);
108                 return null;
109             }
110
111             curl_setopt($c, CURLOPT_WRITEFUNCTION,
112                         array(&$this, "_writeData"));
113             curl_setopt($c, CURLOPT_HEADERFUNCTION,
114                         array(&$this, "_writeHeader"));
115
116             if ($extra_headers) {
117                 curl_setopt($c, CURLOPT_HTTPHEADER, $extra_headers);
118             }
119
120             $cv = curl_version();
121             if(is_array($cv)) {
122               $curl_user_agent = 'curl/'.$cv['version'];
123             } else {
124               $curl_user_agent = $cv;
125             }
126             curl_setopt($c, CURLOPT_USERAGENT,
127                         Auth_OpenID_USER_AGENT.' '.$curl_user_agent);
128             curl_setopt($c, CURLOPT_TIMEOUT, $off);
129             curl_setopt($c, CURLOPT_URL, $url);
130
131             curl_exec($c);
132
133             $code = curl_getinfo($c, CURLINFO_HTTP_CODE);
134             $body = $this->data;
135             $headers = $this->headers;
136
137             if (!$code) {
138                 Auth_OpenID::log("Got no response code when fetching %s", $url);
139                 Auth_OpenID::log("CURL error (%s): %s",
140                                  curl_errno($c), curl_error($c));
141                 return null;
142             }
143
144             if (in_array($code, array(301, 302, 303, 307))) {
145                 $url = $this->_findRedirect($headers);
146                 $redir = true;
147             } else {
148                 $redir = false;
149                 curl_close($c);
150
151                 $new_headers = array();
152
153                 foreach ($headers as $header) {
154                     if (strpos($header, ': ')) {
155                         list($name, $value) = explode(': ', $header, 2);
156                         $new_headers[$name] = $value;
157                     }
158                 }
159
160                 Auth_OpenID::log(
161                     "Successfully fetched '%s': GET response code %s",
162                     $url, $code);
163
164                 return new Auth_Yadis_HTTPResponse($url, $code,
165                                                     $new_headers, $body);
166             }
167
168             $off = $stop - time();
169         }
170
171         return null;
172     }
173
174     function post($url, $body, $extra_headers = null)
175     {
176         if (!$this->canFetchURL($url)) {
177             return null;
178         }
179
180         $this->reset();
181
182         $c = curl_init();
183
184         if (defined('CURLOPT_NOSIGNAL')) {
185             curl_setopt($c, CURLOPT_NOSIGNAL, true);
186         }
187
188         curl_setopt($c, CURLOPT_POST, true);
189         curl_setopt($c, CURLOPT_POSTFIELDS, $body);
190         curl_setopt($c, CURLOPT_TIMEOUT, $this->timeout);
191         curl_setopt($c, CURLOPT_URL, $url);
192         curl_setopt($c, CURLOPT_WRITEFUNCTION,
193                     array(&$this, "_writeData"));
194
195         curl_exec($c);
196
197         $code = curl_getinfo($c, CURLINFO_HTTP_CODE);
198
199         if (!$code) {
200             Auth_OpenID::log("Got no response code when fetching %s", $url);
201             return null;
202         }
203
204         $body = $this->data;
205
206         curl_close($c);
207
208         $new_headers = $extra_headers;
209
210         foreach ($this->headers as $header) {
211             if (strpos($header, ': ')) {
212                 list($name, $value) = explode(': ', $header, 2);
213                 $new_headers[$name] = $value;
214             }
215
216         }
217
218         Auth_OpenID::log("Successfully fetched '%s': POST response code %s",
219                          $url, $code);
220
221         return new Auth_Yadis_HTTPResponse($url, $code,
222                                            $new_headers, $body);
223     }
224 }
225
226 ?>