2009-03-26 19:26:19 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2009-09-16 03:31:52 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2009-03-26 19:26:19 +00:00
|
|
|
*
|
|
|
|
* Utility for doing HTTP-related things
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @category Action
|
2009-09-16 03:31:52 +01:00
|
|
|
* @package StatusNet
|
2009-09-16 03:28:59 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-09-16 03:31:52 +01:00
|
|
|
* @copyright 2009 StatusNet, Inc.
|
2009-03-26 19:26:19 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-09-16 03:31:52 +01:00
|
|
|
* @link http://status.net/
|
2009-03-26 19:26:19 +00:00
|
|
|
*/
|
|
|
|
|
2009-09-16 02:22:47 +01:00
|
|
|
if (!defined('STATUSNET')) {
|
2009-03-26 19:26:19 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2009-10-28 19:29:20 +00:00
|
|
|
require_once 'HTTP/Request2.php';
|
|
|
|
require_once 'HTTP/Request2/Response.php';
|
|
|
|
|
2009-03-26 19:26:19 +00:00
|
|
|
/**
|
2009-09-16 01:40:03 +01:00
|
|
|
* Useful structure for HTTP responses
|
2009-03-26 19:26:19 +00:00
|
|
|
*
|
|
|
|
* We make HTTP calls in several places, and we have several different
|
|
|
|
* ways of doing them. This class hides the specifics of what underlying
|
|
|
|
* library (curl or PHP-HTTP or whatever) that's used.
|
|
|
|
*
|
2009-10-28 19:29:20 +00:00
|
|
|
* This extends the HTTP_Request2_Response class with methods to get info
|
|
|
|
* about any followed redirects.
|
|
|
|
*
|
2009-03-26 19:26:19 +00:00
|
|
|
* @category HTTP
|
2009-10-28 19:29:20 +00:00
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @author Brion Vibber <brion@status.net>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
2009-03-26 19:26:19 +00:00
|
|
|
*/
|
2009-10-28 19:29:20 +00:00
|
|
|
class HTTPResponse extends HTTP_Request2_Response
|
2009-11-02 14:56:31 +00:00
|
|
|
{
|
2009-10-28 19:29:20 +00:00
|
|
|
function __construct(HTTP_Request2_Response $response, $url, $redirects=0)
|
|
|
|
{
|
|
|
|
foreach (get_object_vars($response) as $key => $val) {
|
|
|
|
$this->$key = $val;
|
|
|
|
}
|
|
|
|
$this->url = strval($url);
|
|
|
|
$this->redirectCount = intval($redirects);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the count of redirects that have been followed, if any.
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
function getRedirectCount()
|
|
|
|
{
|
|
|
|
return $this->redirectCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the final target URL, after any redirects have been followed.
|
|
|
|
* @return string URL
|
|
|
|
*/
|
|
|
|
function getUrl()
|
|
|
|
{
|
|
|
|
return $this->url;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-02-08 19:06:03 +00:00
|
|
|
* Check if the response is OK, generally a 200 or other 2xx status code.
|
2009-10-28 19:29:20 +00:00
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
function isOk()
|
|
|
|
{
|
2010-02-08 19:06:03 +00:00
|
|
|
$status = $this->getStatus();
|
|
|
|
return ($status >= 200 && $status < 300);
|
2009-10-28 19:29:20 +00:00
|
|
|
}
|
2009-03-26 19:26:19 +00:00
|
|
|
}
|
|
|
|
|
2009-09-16 01:40:03 +01:00
|
|
|
/**
|
|
|
|
* Utility class for doing HTTP client stuff
|
|
|
|
*
|
|
|
|
* We make HTTP calls in several places, and we have several different
|
|
|
|
* ways of doing them. This class hides the specifics of what underlying
|
|
|
|
* library (curl or PHP-HTTP or whatever) that's used.
|
|
|
|
*
|
2009-10-28 19:29:20 +00:00
|
|
|
* This extends the PEAR HTTP_Request2 package:
|
|
|
|
* - sends StatusNet-specific User-Agent header
|
|
|
|
* - 'follow_redirects' config option, defaulting off
|
|
|
|
* - 'max_redirs' config option, defaulting to 10
|
|
|
|
* - extended response class adds getRedirectCount() and getUrl() methods
|
|
|
|
* - get() and post() convenience functions return body content directly
|
|
|
|
*
|
2009-09-16 01:40:03 +01:00
|
|
|
* @category HTTP
|
2009-09-16 03:31:52 +01:00
|
|
|
* @package StatusNet
|
2009-09-16 03:28:59 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-10-28 19:29:20 +00:00
|
|
|
* @author Brion Vibber <brion@status.net>
|
2009-09-16 01:40:03 +01:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-09-16 03:31:52 +01:00
|
|
|
* @link http://status.net/
|
2009-09-16 01:40:03 +01:00
|
|
|
*/
|
|
|
|
|
2009-10-28 19:29:20 +00:00
|
|
|
class HTTPClient extends HTTP_Request2
|
2009-03-26 19:26:19 +00:00
|
|
|
{
|
2009-09-16 01:40:03 +01:00
|
|
|
|
2009-10-28 19:29:20 +00:00
|
|
|
function __construct($url=null, $method=self::METHOD_GET, $config=array())
|
2009-03-26 19:26:19 +00:00
|
|
|
{
|
2009-10-28 19:29:20 +00:00
|
|
|
$this->config['max_redirs'] = 10;
|
|
|
|
$this->config['follow_redirects'] = true;
|
|
|
|
parent::__construct($url, $method, $config);
|
|
|
|
$this->setHeader('User-Agent', $this->userAgent());
|
2009-03-26 19:26:19 +00:00
|
|
|
}
|
|
|
|
|
2009-10-28 19:29:20 +00:00
|
|
|
/**
|
|
|
|
* Convenience/back-compat instantiator
|
|
|
|
* @return HTTPClient
|
|
|
|
*/
|
|
|
|
public static function start()
|
2009-03-26 19:26:19 +00:00
|
|
|
{
|
2009-10-28 19:29:20 +00:00
|
|
|
return new HTTPClient();
|
2009-03-26 19:26:19 +00:00
|
|
|
}
|
|
|
|
|
2009-10-28 19:29:20 +00:00
|
|
|
/**
|
|
|
|
* Convenience function to run a GET request.
|
|
|
|
*
|
|
|
|
* @return HTTPResponse
|
|
|
|
* @throws HTTP_Request2_Exception
|
|
|
|
*/
|
|
|
|
public function get($url, $headers=array())
|
2009-03-26 19:26:19 +00:00
|
|
|
{
|
2009-10-28 19:29:20 +00:00
|
|
|
return $this->doRequest($url, self::METHOD_GET, $headers);
|
2009-03-26 19:26:19 +00:00
|
|
|
}
|
|
|
|
|
2009-10-28 19:29:20 +00:00
|
|
|
/**
|
|
|
|
* Convenience function to run a HEAD request.
|
|
|
|
*
|
|
|
|
* @return HTTPResponse
|
|
|
|
* @throws HTTP_Request2_Exception
|
|
|
|
*/
|
|
|
|
public function head($url, $headers=array())
|
2009-03-26 19:26:19 +00:00
|
|
|
{
|
2009-10-28 19:29:20 +00:00
|
|
|
return $this->doRequest($url, self::METHOD_HEAD, $headers);
|
2009-03-26 19:26:19 +00:00
|
|
|
}
|
2009-11-02 14:56:31 +00:00
|
|
|
|
2009-10-28 19:29:20 +00:00
|
|
|
/**
|
|
|
|
* Convenience function to POST form data.
|
|
|
|
*
|
|
|
|
* @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 HTTPResponse
|
|
|
|
* @throws HTTP_Request2_Exception
|
|
|
|
*/
|
|
|
|
public function post($url, $headers=array(), $data=array())
|
2009-11-02 14:56:31 +00:00
|
|
|
{
|
2009-10-28 19:29:20 +00:00
|
|
|
if ($data) {
|
|
|
|
$this->addPostParameter($data);
|
|
|
|
}
|
|
|
|
return $this->doRequest($url, self::METHOD_POST, $headers);
|
2009-03-26 19:26:19 +00:00
|
|
|
}
|
|
|
|
|
2009-10-28 19:29:20 +00:00
|
|
|
/**
|
|
|
|
* @return HTTPResponse
|
|
|
|
* @throws HTTP_Request2_Exception
|
|
|
|
*/
|
|
|
|
protected function doRequest($url, $method, $headers)
|
2009-03-26 19:26:19 +00:00
|
|
|
{
|
2009-10-28 19:29:20 +00:00
|
|
|
$this->setUrl($url);
|
|
|
|
$this->setMethod($method);
|
|
|
|
if ($headers) {
|
|
|
|
foreach ($headers as $header) {
|
|
|
|
$this->setHeader($header);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$response = $this->send();
|
|
|
|
return $response;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function log($level, $detail) {
|
|
|
|
$method = $this->getMethod();
|
|
|
|
$url = $this->getUrl();
|
|
|
|
common_log($level, __CLASS__ . ": HTTP $method $url - $detail");
|
2009-03-26 19:26:19 +00:00
|
|
|
}
|
2009-09-16 02:22:47 +01:00
|
|
|
|
2009-10-28 19:29:20 +00:00
|
|
|
/**
|
|
|
|
* Pulls up StatusNet's customized user-agent string, so services
|
|
|
|
* we hit can track down the responsible software.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2009-11-02 14:56:31 +00:00
|
|
|
function userAgent()
|
2009-09-16 02:22:47 +01:00
|
|
|
{
|
2009-11-02 14:56:31 +00:00
|
|
|
return "StatusNet/".STATUSNET_VERSION." (".STATUSNET_CODENAME.")";
|
2009-09-16 02:22:47 +01:00
|
|
|
}
|
2009-10-28 19:29:20 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Actually performs the HTTP request and returns an HTTPResponse object
|
|
|
|
* with response body and header info.
|
|
|
|
*
|
|
|
|
* Wraps around parent send() to add logging and redirection processing.
|
|
|
|
*
|
|
|
|
* @return HTTPResponse
|
|
|
|
* @throw HTTP_Request2_Exception
|
|
|
|
*/
|
|
|
|
public function send()
|
|
|
|
{
|
|
|
|
$maxRedirs = intval($this->config['max_redirs']);
|
|
|
|
if (empty($this->config['follow_redirects'])) {
|
|
|
|
$maxRedirs = 0;
|
|
|
|
}
|
|
|
|
$redirs = 0;
|
|
|
|
do {
|
|
|
|
try {
|
|
|
|
$response = parent::send();
|
|
|
|
} catch (HTTP_Request2_Exception $e) {
|
|
|
|
$this->log(LOG_ERR, $e->getMessage());
|
|
|
|
throw $e;
|
|
|
|
}
|
|
|
|
$code = $response->getStatus();
|
|
|
|
if ($code >= 200 && $code < 300) {
|
|
|
|
$reason = $response->getReasonPhrase();
|
|
|
|
$this->log(LOG_INFO, "$code $reason");
|
|
|
|
} elseif ($code >= 300 && $code < 400) {
|
|
|
|
$url = $this->getUrl();
|
|
|
|
$target = $response->getHeader('Location');
|
|
|
|
|
|
|
|
if (++$redirs >= $maxRedirs) {
|
|
|
|
common_log(LOG_ERR, __CLASS__ . ": Too many redirects: skipping $code redirect from $url to $target");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
$this->setUrl($target);
|
|
|
|
$this->setHeader('Referer', $url);
|
|
|
|
common_log(LOG_INFO, __CLASS__ . ": Following $code redirect from $url to $target");
|
|
|
|
continue;
|
|
|
|
} catch (HTTP_Request2_Exception $e) {
|
|
|
|
common_log(LOG_ERR, __CLASS__ . ": Invalid $code redirect from $url to $target");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$reason = $response->getReasonPhrase();
|
|
|
|
$this->log(LOG_ERR, "$code $reason");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
} while ($maxRedirs);
|
|
|
|
return new HTTPResponse($response, $this->getUrl(), $redirs);
|
|
|
|
}
|
2009-03-26 19:26:19 +00:00
|
|
|
}
|