2009-08-04 01:46:18 +01:00
|
|
|
<?php
|
2009-08-10 07:05:43 +01:00
|
|
|
/**
|
2009-08-25 23:12:20 +01:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2009-08-10 07:05:43 +01:00
|
|
|
*
|
|
|
|
* Base class for doing OAuth calls as a consumer
|
|
|
|
*
|
|
|
|
* 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-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Zach Copley <zach@status.net>
|
2009-08-28 08:02:27 +01:00
|
|
|
* @copyright 2009 StatusNet, Inc.
|
2009-08-10 07:05:43 +01:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-08-10 07:05:43 +01:00
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-08-10 07:05:43 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
2009-08-04 01:46:18 +01:00
|
|
|
|
2009-08-10 07:05:43 +01:00
|
|
|
require_once 'OAuth.php';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Exception wrapper for cURL errors
|
|
|
|
*
|
|
|
|
* @category Integration
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Zach Copley <zach@status.net>
|
2009-08-10 07:05:43 +01:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-08-10 07:05:43 +01:00
|
|
|
*
|
|
|
|
*/
|
2009-10-28 19:29:20 +00:00
|
|
|
class OAuthClientException extends Exception
|
2009-08-10 07:05:43 +01:00
|
|
|
{
|
|
|
|
}
|
2009-08-04 01:46:18 +01:00
|
|
|
|
2009-08-10 07:05:43 +01:00
|
|
|
/**
|
|
|
|
* Base class for doing OAuth calls as a consumer
|
|
|
|
*
|
|
|
|
* @category Integration
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Zach Copley <zach@status.net>
|
2009-08-10 07:05:43 +01:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-08-10 07:05:43 +01:00
|
|
|
*
|
|
|
|
*/
|
2009-08-04 01:46:18 +01:00
|
|
|
class OAuthClient
|
|
|
|
{
|
|
|
|
var $consumer;
|
|
|
|
var $token;
|
|
|
|
|
2009-08-10 07:05:43 +01:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* Can be initialized with just consumer key and secret for requesting new
|
|
|
|
* tokens or with additional request token or access token
|
|
|
|
*
|
|
|
|
* @param string $consumer_key consumer key
|
|
|
|
* @param string $consumer_secret consumer secret
|
|
|
|
* @param string $oauth_token user's token
|
|
|
|
* @param string $oauth_token_secret user's secret
|
|
|
|
*
|
|
|
|
* @return nothing
|
|
|
|
*/
|
2009-08-04 01:46:18 +01:00
|
|
|
function __construct($consumer_key, $consumer_secret,
|
|
|
|
$oauth_token = null, $oauth_token_secret = null)
|
|
|
|
{
|
|
|
|
$this->sha1_method = new OAuthSignatureMethod_HMAC_SHA1();
|
2009-08-10 07:05:43 +01:00
|
|
|
$this->consumer = new OAuthConsumer($consumer_key, $consumer_secret);
|
|
|
|
$this->token = null;
|
2009-08-04 01:46:18 +01:00
|
|
|
|
|
|
|
if (isset($oauth_token) && isset($oauth_token_secret)) {
|
|
|
|
$this->token = new OAuthToken($oauth_token, $oauth_token_secret);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-10 07:05:43 +01:00
|
|
|
/**
|
|
|
|
* Gets a request token from the given url
|
|
|
|
*
|
2010-02-16 06:12:08 +00:00
|
|
|
* @param string $url OAuth endpoint for grabbing request tokens
|
|
|
|
* @param string $callback authorized request token callback
|
2009-08-10 07:05:43 +01:00
|
|
|
*
|
|
|
|
* @return OAuthToken $token the request token
|
|
|
|
*/
|
2010-02-16 06:12:08 +00:00
|
|
|
function getRequestToken($url, $callback = null)
|
2009-08-04 01:46:18 +01:00
|
|
|
{
|
2010-02-16 06:12:08 +00:00
|
|
|
$params = null;
|
|
|
|
|
|
|
|
if (!is_null($callback)) {
|
|
|
|
$params['oauth_callback'] = $callback;
|
|
|
|
}
|
|
|
|
|
|
|
|
$response = $this->oAuthGet($url, $params);
|
|
|
|
|
2009-10-28 19:29:20 +00:00
|
|
|
$arr = array();
|
|
|
|
parse_str($response, $arr);
|
2010-02-16 06:12:08 +00:00
|
|
|
|
|
|
|
$token = $arr['oauth_token'];
|
|
|
|
$secret = $arr['oauth_token_secret'];
|
|
|
|
$confirm = $arr['oauth_callback_confirmed'];
|
|
|
|
|
|
|
|
if (isset($token) && isset($secret)) {
|
|
|
|
|
|
|
|
$token = new OAuthToken($token, $secret);
|
|
|
|
|
|
|
|
if (isset($confirm)) {
|
|
|
|
if ($confirm == 'true') {
|
|
|
|
return $token;
|
|
|
|
} else {
|
|
|
|
throw new OAuthClientException(
|
2013-10-05 14:59:43 +01:00
|
|
|
'Callback was not confirmed by remote OAuth side.'
|
2010-02-16 06:12:08 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2009-10-28 19:29:20 +00:00
|
|
|
return $token;
|
|
|
|
} else {
|
2010-02-16 06:12:08 +00:00
|
|
|
throw new OAuthClientException(
|
2013-10-05 14:59:43 +01:00
|
|
|
'Could not get a request token from remote OAuth side.'
|
2010-02-16 06:12:08 +00:00
|
|
|
);
|
2009-10-28 19:29:20 +00:00
|
|
|
}
|
2009-08-04 01:46:18 +01:00
|
|
|
}
|
|
|
|
|
2009-08-10 07:05:43 +01:00
|
|
|
/**
|
|
|
|
* Builds a link that can be redirected to in order to
|
|
|
|
* authorize a request token.
|
|
|
|
*
|
|
|
|
* @param string $url endpoint for authorizing request tokens
|
|
|
|
* @param OAuthToken $request_token the request token to be authorized
|
|
|
|
*
|
|
|
|
* @return string $authorize_url the url to redirect to
|
|
|
|
*/
|
2010-02-16 06:12:08 +00:00
|
|
|
function getAuthorizeLink($url, $request_token)
|
2009-08-04 01:46:18 +01:00
|
|
|
{
|
2009-08-10 07:05:43 +01:00
|
|
|
$authorize_url = $url . '?oauth_token=' .
|
2009-08-04 01:46:18 +01:00
|
|
|
$request_token->key;
|
|
|
|
|
2009-08-10 07:05:43 +01:00
|
|
|
return $authorize_url;
|
2009-08-04 01:46:18 +01:00
|
|
|
}
|
|
|
|
|
2009-08-10 07:05:43 +01:00
|
|
|
/**
|
|
|
|
* Fetches an access token
|
|
|
|
*
|
2010-02-16 06:12:08 +00:00
|
|
|
* @param string $url OAuth endpoint for exchanging authorized request tokens
|
|
|
|
* for access tokens
|
|
|
|
* @param string $verifier 1.0a verifier
|
2009-08-10 07:05:43 +01:00
|
|
|
*
|
|
|
|
* @return OAuthToken $token the access token
|
|
|
|
*/
|
2010-02-16 06:12:08 +00:00
|
|
|
function getAccessToken($url, $verifier = null)
|
2009-08-04 01:46:18 +01:00
|
|
|
{
|
2010-02-16 06:12:08 +00:00
|
|
|
$params = array();
|
|
|
|
|
|
|
|
if (!is_null($verifier)) {
|
|
|
|
$params['oauth_verifier'] = $verifier;
|
|
|
|
}
|
|
|
|
|
|
|
|
$response = $this->oAuthPost($url, $params);
|
|
|
|
|
|
|
|
$arr = array();
|
|
|
|
parse_str($response, $arr);
|
|
|
|
|
|
|
|
$token = $arr['oauth_token'];
|
|
|
|
$secret = $arr['oauth_token_secret'];
|
|
|
|
|
|
|
|
if (isset($token) && isset($secret)) {
|
|
|
|
$token = new OAuthToken($token, $secret);
|
|
|
|
return $token;
|
|
|
|
} else {
|
|
|
|
throw new OAuthClientException(
|
2013-10-05 14:59:43 +01:00
|
|
|
'Could not get a access token from remote OAuth side.'
|
2010-02-16 06:12:08 +00:00
|
|
|
);
|
|
|
|
}
|
2009-08-04 01:46:18 +01:00
|
|
|
}
|
|
|
|
|
2009-08-10 07:05:43 +01:00
|
|
|
/**
|
2010-02-16 06:12:08 +00:00
|
|
|
* Use HTTP GET to make a signed OAuth requesta
|
2009-08-10 07:05:43 +01:00
|
|
|
*
|
2010-02-16 06:12:08 +00:00
|
|
|
* @param string $url OAuth request token endpoint
|
|
|
|
* @param array $params additional parameters
|
2009-08-10 07:05:43 +01:00
|
|
|
*
|
|
|
|
* @return mixed the request
|
|
|
|
*/
|
2010-02-16 06:12:08 +00:00
|
|
|
function oAuthGet($url, $params = null)
|
2009-08-04 01:46:18 +01:00
|
|
|
{
|
|
|
|
$request = OAuthRequest::from_consumer_and_token($this->consumer,
|
2010-02-16 06:12:08 +00:00
|
|
|
$this->token, 'GET', $url, $params);
|
2009-08-04 01:46:18 +01:00
|
|
|
$request->sign_request($this->sha1_method,
|
|
|
|
$this->consumer, $this->token);
|
|
|
|
|
|
|
|
return $this->httpRequest($request->to_url());
|
|
|
|
}
|
|
|
|
|
2009-08-10 07:05:43 +01:00
|
|
|
/**
|
|
|
|
* Use HTTP POST to make a signed OAuth request
|
|
|
|
*
|
|
|
|
* @param string $url OAuth endpoint
|
|
|
|
* @param array $params additional post parameters
|
|
|
|
*
|
|
|
|
* @return mixed the request
|
|
|
|
*/
|
2009-08-04 01:46:18 +01:00
|
|
|
function oAuthPost($url, $params = null)
|
|
|
|
{
|
|
|
|
$request = OAuthRequest::from_consumer_and_token($this->consumer,
|
|
|
|
$this->token, 'POST', $url, $params);
|
|
|
|
$request->sign_request($this->sha1_method,
|
|
|
|
$this->consumer, $this->token);
|
|
|
|
|
|
|
|
return $this->httpRequest($request->get_normalized_http_url(),
|
|
|
|
$request->to_postdata());
|
|
|
|
}
|
|
|
|
|
2009-08-10 07:05:43 +01:00
|
|
|
/**
|
2009-10-28 19:29:20 +00:00
|
|
|
* Make a HTTP request.
|
2009-08-10 07:05:43 +01:00
|
|
|
*
|
|
|
|
* @param string $url Where to make the
|
|
|
|
* @param array $params post parameters
|
|
|
|
*
|
|
|
|
* @return mixed the request
|
|
|
|
*/
|
2009-08-04 01:46:18 +01:00
|
|
|
function httpRequest($url, $params = null)
|
|
|
|
{
|
2009-10-28 19:29:20 +00:00
|
|
|
$request = new HTTPClient($url);
|
|
|
|
$request->setConfig(array(
|
|
|
|
'connect_timeout' => 120,
|
|
|
|
'timeout' => 120,
|
|
|
|
'follow_redirects' => true,
|
|
|
|
'ssl_verify_peer' => false,
|
2009-11-24 19:11:34 +00:00
|
|
|
'ssl_verify_host' => false
|
2009-10-28 19:29:20 +00:00
|
|
|
));
|
|
|
|
|
2012-10-27 09:40:31 +01:00
|
|
|
// Twitter was strict about accepting invalid "Expect" headers
|
|
|
|
// between 2008ish and October 2012. Caused "417 Expectation failed"
|
|
|
|
//$request->setHeader('Expect', '');
|
2009-08-04 01:46:18 +01:00
|
|
|
|
|
|
|
if (isset($params)) {
|
2009-10-28 19:29:20 +00:00
|
|
|
$request->setMethod(HTTP_Request2::METHOD_POST);
|
|
|
|
$request->setBody($params);
|
2009-08-04 01:46:18 +01:00
|
|
|
}
|
|
|
|
|
2009-10-28 19:29:20 +00:00
|
|
|
try {
|
|
|
|
$response = $request->send();
|
|
|
|
$code = $response->getStatus();
|
|
|
|
if ($code < 200 || $code >= 400) {
|
|
|
|
throw new OAuthClientException($response->getBody(), $code);
|
|
|
|
}
|
|
|
|
return $response->getBody();
|
|
|
|
} catch (Exception $e) {
|
|
|
|
throw new OAuthClientException($e->getMessage(), $e->getCode());
|
2009-08-04 01:46:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|