2010-01-07 21:19:21 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
|
|
|
*
|
2010-10-08 02:32:27 +01:00
|
|
|
* Action for getting OAuth token credentials (exchange an authorized
|
|
|
|
* request token for an access token)
|
2010-01-07 21:19:21 +00:00
|
|
|
*
|
|
|
|
* 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 API
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @copyright 2010 StatusNet, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
|
2013-10-06 11:40:58 +01:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2010-01-07 21:19:21 +00:00
|
|
|
|
|
|
|
/**
|
2010-10-08 02:32:27 +01:00
|
|
|
* Action for getting OAuth token credentials (exchange an authorized
|
|
|
|
* request token for an access token)
|
2010-01-07 21:19:21 +00:00
|
|
|
*
|
|
|
|
* @category API
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Zach Copley <zach@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/
|
|
|
|
*/
|
2013-10-06 11:40:58 +01:00
|
|
|
class ApiOAuthAccessTokenAction extends ApiOAuthAction
|
2010-01-07 21:19:21 +00:00
|
|
|
{
|
2010-10-08 02:32:27 +01:00
|
|
|
protected $reqToken = null;
|
|
|
|
protected $verifier = null;
|
2010-01-07 21:19:21 +00:00
|
|
|
|
2010-01-11 09:11:50 +00:00
|
|
|
/**
|
|
|
|
* Class handler.
|
|
|
|
*
|
|
|
|
* @param array $args array of arguments
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-06-01 03:05:11 +01:00
|
|
|
function handle()
|
2010-01-11 09:11:50 +00:00
|
|
|
{
|
2016-06-01 03:05:11 +01:00
|
|
|
parent::handle();
|
2010-01-11 09:11:50 +00:00
|
|
|
|
2013-10-14 23:20:36 +01:00
|
|
|
$datastore = new ApiGNUsocialOAuthDataStore();
|
2010-01-11 09:11:50 +00:00
|
|
|
$server = new OAuthServer($datastore);
|
|
|
|
$hmac_method = new OAuthSignatureMethod_HMAC_SHA1();
|
|
|
|
|
|
|
|
$server->add_signature_method($hmac_method);
|
|
|
|
|
2010-10-19 20:07:59 +01:00
|
|
|
$atok = $app = null;
|
2010-01-11 09:11:50 +00:00
|
|
|
|
2010-10-08 02:32:27 +01:00
|
|
|
// XXX: Insist that oauth_token and oauth_verifier be populated?
|
|
|
|
// Spec doesn't say they MUST be.
|
|
|
|
|
2010-01-11 09:11:50 +00:00
|
|
|
try {
|
|
|
|
$req = OAuthRequest::from_request();
|
2010-10-08 02:32:27 +01:00
|
|
|
|
|
|
|
$this->reqToken = $req->get_parameter('oauth_token');
|
|
|
|
$this->verifier = $req->get_parameter('oauth_verifier');
|
2010-10-21 01:21:04 +01:00
|
|
|
|
|
|
|
$app = $datastore->getAppByRequestToken($this->reqToken);
|
2010-01-11 09:11:50 +00:00
|
|
|
$atok = $server->fetch_access_token($req);
|
2010-10-20 04:54:53 +01:00
|
|
|
} catch (Exception $e) {
|
2010-01-27 08:45:56 +00:00
|
|
|
common_log(LOG_WARNING, 'API OAuthException - ' . $e->getMessage());
|
2010-01-13 05:06:35 +00:00
|
|
|
common_debug(var_export($req, true));
|
2010-10-08 02:32:27 +01:00
|
|
|
$code = $e->getCode();
|
|
|
|
$this->clientError($e->getMessage(), empty($code) ? 401 : $code, 'text');
|
2010-01-11 09:11:50 +00:00
|
|
|
}
|
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
if (empty($atok)) {
|
2010-10-08 02:32:27 +01:00
|
|
|
// Token exchange failed -- log it
|
|
|
|
|
|
|
|
$msg = sprintf(
|
2010-10-19 20:07:59 +01:00
|
|
|
'API OAuth - Failure exchanging OAuth request token for access token, '
|
|
|
|
. 'request token = %s, verifier = %s',
|
2010-10-08 02:32:27 +01:00
|
|
|
$this->reqToken,
|
2010-10-19 20:07:59 +01:00
|
|
|
$this->verifier
|
2010-10-08 02:32:27 +01:00
|
|
|
);
|
|
|
|
|
2010-10-20 04:54:53 +01:00
|
|
|
common_log(LOG_WARNING, $msg);
|
2010-10-20 18:34:27 +01:00
|
|
|
// TRANS: Client error given from the OAuth API when the request token or verifier is invalid.
|
2011-02-16 23:39:53 +00:00
|
|
|
$this->clientError(_('Invalid request token or verifier.'), 400, 'text');
|
2010-01-13 05:06:35 +00:00
|
|
|
} else {
|
2010-10-19 20:07:59 +01:00
|
|
|
common_log(
|
|
|
|
LOG_INFO,
|
|
|
|
sprintf(
|
2010-10-21 01:21:04 +01:00
|
|
|
"Issued access token '%s' for application %d (%s).",
|
2010-10-19 20:07:59 +01:00
|
|
|
$atok->key,
|
|
|
|
$app->id,
|
|
|
|
$app->name
|
|
|
|
)
|
|
|
|
);
|
2010-10-08 02:32:27 +01:00
|
|
|
$this->showAccessToken($atok);
|
2010-01-13 05:06:35 +00:00
|
|
|
}
|
2010-01-11 09:11:50 +00:00
|
|
|
}
|
|
|
|
|
2010-10-08 02:32:27 +01:00
|
|
|
/*
|
|
|
|
* Display OAuth token credentials
|
|
|
|
*
|
|
|
|
* @param OAuthToken token the access token
|
|
|
|
*/
|
|
|
|
function showAccessToken($token)
|
2010-01-11 09:11:50 +00:00
|
|
|
{
|
2010-10-08 02:32:27 +01:00
|
|
|
header('Content-Type: application/x-www-form-urlencoded');
|
|
|
|
print $token;
|
2010-01-11 09:11:50 +00:00
|
|
|
}
|
2010-01-07 21:19:21 +00:00
|
|
|
}
|