2010-01-07 21:19:21 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
|
|
|
*
|
|
|
|
* Authorize an OAuth request token
|
|
|
|
*
|
|
|
|
* 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/
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('STATUSNET')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
require_once INSTALLDIR . '/lib/apioauth.php';
|
2010-01-07 21:19:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Authorize an OAuth request token
|
|
|
|
*
|
|
|
|
* @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/
|
|
|
|
*/
|
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
class ApiOauthAuthorizeAction extends ApiOauthAction
|
2010-01-07 21:19:21 +00:00
|
|
|
{
|
2010-01-11 05:35:46 +00:00
|
|
|
var $oauth_token;
|
|
|
|
var $callback;
|
|
|
|
var $app;
|
|
|
|
var $nickname;
|
|
|
|
var $password;
|
|
|
|
var $store;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Is this a read-only action?
|
|
|
|
*
|
|
|
|
* @return boolean false
|
|
|
|
*/
|
|
|
|
|
|
|
|
function isReadOnly($args)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function prepare($args)
|
|
|
|
{
|
|
|
|
parent::prepare($args);
|
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
common_debug("apioauthauthorize");
|
2010-01-11 05:35:46 +00:00
|
|
|
|
|
|
|
$this->nickname = $this->trimmed('nickname');
|
|
|
|
$this->password = $this->arg('password');
|
|
|
|
$this->oauth_token = $this->arg('oauth_token');
|
|
|
|
$this->callback = $this->arg('oauth_callback');
|
|
|
|
$this->store = new ApiStatusNetOAuthDataStore();
|
2010-01-13 11:31:15 +00:00
|
|
|
$this->app = $this->store->getAppByRequestToken($this->oauth_token);
|
2010-01-11 05:35:46 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle input, produce output
|
|
|
|
*
|
|
|
|
* Switches on request method; either shows the form or handles its input.
|
|
|
|
*
|
|
|
|
* @param array $args $_REQUEST data
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function handle($args)
|
|
|
|
{
|
|
|
|
parent::handle($args);
|
|
|
|
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
|
|
|
|
|
|
|
$this->handlePost();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
// XXX: make better error messages
|
2010-01-11 05:35:46 +00:00
|
|
|
|
|
|
|
if (empty($this->oauth_token)) {
|
|
|
|
|
|
|
|
common_debug("No request token found.");
|
|
|
|
|
|
|
|
$this->clientError(_('Bad request.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-01-13 11:31:15 +00:00
|
|
|
if (empty($this->app)) {
|
|
|
|
common_debug('No app for that token.');
|
2010-01-11 05:35:46 +00:00
|
|
|
$this->clientError(_('Bad request.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
$name = $this->app->name;
|
|
|
|
common_debug("Requesting auth for app: " . $name);
|
2010-01-11 05:35:46 +00:00
|
|
|
|
|
|
|
$this->showForm();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function handlePost()
|
|
|
|
{
|
2010-01-13 05:06:35 +00:00
|
|
|
common_debug("handlePost()");
|
|
|
|
|
2010-01-11 07:03:30 +00:00
|
|
|
// check session token for CSRF protection.
|
2010-01-11 05:35:46 +00:00
|
|
|
|
|
|
|
$token = $this->trimmed('token');
|
|
|
|
|
|
|
|
if (!$token || $token != common_session_token()) {
|
|
|
|
$this->showForm(_('There was a problem with your session token. '.
|
|
|
|
'Try again, please.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check creds
|
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
$user = null;
|
2010-01-11 07:03:30 +00:00
|
|
|
|
2010-01-11 05:35:46 +00:00
|
|
|
if (!common_logged_in()) {
|
|
|
|
$user = common_check_user($this->nickname, $this->password);
|
|
|
|
if (empty($user)) {
|
|
|
|
$this->showForm(_("Invalid nickname / password!"));
|
|
|
|
return;
|
|
|
|
}
|
2010-01-11 07:03:30 +00:00
|
|
|
} else {
|
2010-01-13 05:06:35 +00:00
|
|
|
$user = common_current_user();
|
|
|
|
}
|
2010-01-11 05:35:46 +00:00
|
|
|
|
|
|
|
if ($this->arg('allow')) {
|
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
// mark the req token as authorized
|
2010-01-11 07:03:30 +00:00
|
|
|
|
2010-01-11 05:35:46 +00:00
|
|
|
$this->store->authorize_token($this->oauth_token);
|
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
// Check to see if there was a previous token associated
|
|
|
|
// with this user/app and kill it. If the user is doing this she
|
|
|
|
// probably doesn't want any old tokens anyway.
|
|
|
|
|
|
|
|
$appUser = Oauth_application_user::getByKeys($user, $this->app);
|
|
|
|
|
|
|
|
if (!empty($appUser)) {
|
|
|
|
$result = $appUser->delete();
|
2010-01-11 07:03:30 +00:00
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
if (!$result) {
|
|
|
|
common_log_db_error($appUser, 'DELETE', __FILE__);
|
|
|
|
throw new ServerException(_('DB error deleting OAuth app user.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2010-01-11 07:03:30 +00:00
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
// associated the authorized req token with the user and the app
|
2010-01-11 07:03:30 +00:00
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
$appUser = new Oauth_application_user();
|
2010-01-11 07:03:30 +00:00
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
$appUser->profile_id = $user->id;
|
|
|
|
$appUser->application_id = $this->app->id;
|
2010-01-11 07:03:30 +00:00
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
// Note: do not copy the access type from the application.
|
|
|
|
// The access type should always be 0 when the OAuth app
|
|
|
|
// user record has a request token associated with it.
|
|
|
|
// Access type gets assigned once an access token has been
|
|
|
|
// granted. The OAuth app user record then gets updated
|
|
|
|
// with the new access token and access type.
|
2010-01-11 07:03:30 +00:00
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
$appUser->token = $this->oauth_token;
|
|
|
|
$appUser->created = common_sql_now();
|
2010-01-11 07:03:30 +00:00
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
$result = $appUser->insert();
|
2010-01-11 07:03:30 +00:00
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
if (!$result) {
|
|
|
|
common_log_db_error($appUser, 'INSERT', __FILE__);
|
|
|
|
throw new ServerException(_('DB error inserting OAuth app user.'));
|
|
|
|
return;
|
|
|
|
}
|
2010-01-11 07:03:30 +00:00
|
|
|
|
2010-01-11 05:35:46 +00:00
|
|
|
// if we have a callback redirect and provide the token
|
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
// A callback specified in the app setup overrides whatever
|
|
|
|
// is passed in with the request.
|
|
|
|
|
|
|
|
common_debug("Req token is authorized - doing callback");
|
|
|
|
|
|
|
|
if (!empty($this->app->callback_url)) {
|
|
|
|
$this->callback = $this->app->callback_url;
|
|
|
|
}
|
|
|
|
|
2010-01-11 05:35:46 +00:00
|
|
|
if (!empty($this->callback)) {
|
2010-01-11 07:03:30 +00:00
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
// XXX: Need better way to build this redirect url.
|
|
|
|
|
|
|
|
$target_url = $this->getCallback($this->callback,
|
|
|
|
array('oauth_token' => $this->oauth_token));
|
|
|
|
|
|
|
|
common_debug("Doing callback to $target_url");
|
2010-01-11 07:03:30 +00:00
|
|
|
|
2010-01-11 05:35:46 +00:00
|
|
|
common_redirect($target_url, 303);
|
2010-01-13 05:06:35 +00:00
|
|
|
} else {
|
|
|
|
common_debug("callback was empty!");
|
2010-01-11 05:35:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// otherwise inform the user that the rt was authorized
|
|
|
|
|
|
|
|
$this->elementStart('p');
|
|
|
|
|
2010-01-13 05:06:35 +00:00
|
|
|
// XXX: Do OAuth 1.0a verifier code
|
2010-01-11 05:35:46 +00:00
|
|
|
|
|
|
|
$this->raw(sprintf(_("The request token %s has been authorized. " .
|
|
|
|
'Please exchange it for an access token.'),
|
|
|
|
$this->oauth_token));
|
|
|
|
|
|
|
|
$this->elementEnd('p');
|
|
|
|
|
|
|
|
} else if ($this->arg('deny')) {
|
|
|
|
|
|
|
|
$this->elementStart('p');
|
|
|
|
|
|
|
|
$this->raw(sprintf(_("The request token %s has been denied."),
|
|
|
|
$this->oauth_token));
|
|
|
|
|
|
|
|
$this->elementEnd('p');
|
|
|
|
} else {
|
|
|
|
$this->clientError(_('Unexpected form submission.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function showForm($error=null)
|
|
|
|
{
|
|
|
|
$this->error = $error;
|
|
|
|
$this->showPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
function showScripts()
|
|
|
|
{
|
|
|
|
parent::showScripts();
|
2010-01-13 05:06:35 +00:00
|
|
|
if (!common_logged_in()) {
|
|
|
|
$this->autofocus('nickname');
|
|
|
|
}
|
2010-01-11 05:35:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Title of the page
|
|
|
|
*
|
|
|
|
* @return string title of the page
|
|
|
|
*/
|
|
|
|
|
|
|
|
function title()
|
|
|
|
{
|
|
|
|
return _('An application would like to connect to your account');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shows the authorization form.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function showContent()
|
|
|
|
{
|
|
|
|
$this->elementStart('form', array('method' => 'post',
|
2010-01-13 20:10:09 +00:00
|
|
|
'id' => 'form_apioauthauthorize',
|
2010-01-13 05:06:35 +00:00
|
|
|
'class' => 'form_settings',
|
|
|
|
'action' => common_local_url('apioauthauthorize')));
|
2010-01-13 20:10:09 +00:00
|
|
|
$this->elementStart('fieldset');
|
|
|
|
$this->element('legend', array('id' => 'apioauthauthorize_allowdeny'),
|
|
|
|
_('Allow or deny access'));
|
2010-01-11 05:35:46 +00:00
|
|
|
|
|
|
|
$this->hidden('token', common_session_token());
|
|
|
|
$this->hidden('oauth_token', $this->oauth_token);
|
|
|
|
$this->hidden('oauth_callback', $this->callback);
|
|
|
|
|
2010-01-13 20:10:09 +00:00
|
|
|
$this->elementStart('ul', 'form_data');
|
2010-01-11 05:35:46 +00:00
|
|
|
$this->elementStart('li');
|
2010-01-13 20:10:09 +00:00
|
|
|
$this->elementStart('p');
|
2010-01-11 05:35:46 +00:00
|
|
|
if (!empty($this->app->icon)) {
|
|
|
|
$this->element('img', array('src' => $this->app->icon));
|
|
|
|
}
|
|
|
|
|
|
|
|
$access = ($this->app->access_type & Oauth_application::$writeAccess) ?
|
|
|
|
'access and update' : 'access';
|
|
|
|
|
2010-01-14 22:29:16 +00:00
|
|
|
$msg = _("The application <strong>%1$s</strong> by <strong>%2$s</strong> would like " .
|
|
|
|
"the ability to <strong>%3$s</strong> your account data.");
|
2010-01-11 05:35:46 +00:00
|
|
|
|
|
|
|
$this->raw(sprintf($msg,
|
|
|
|
$this->app->name,
|
|
|
|
$this->app->organization,
|
|
|
|
$access));
|
2010-01-13 20:10:09 +00:00
|
|
|
$this->elementEnd('p');
|
2010-01-11 05:35:46 +00:00
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementEnd('ul');
|
|
|
|
|
|
|
|
if (!common_logged_in()) {
|
|
|
|
|
|
|
|
$this->elementStart('fieldset');
|
2010-01-13 20:43:23 +00:00
|
|
|
$this->element('legend', null, _('Account'));
|
2010-01-11 05:35:46 +00:00
|
|
|
$this->elementStart('ul', 'form_data');
|
|
|
|
$this->elementStart('li');
|
|
|
|
$this->input('nickname', _('Nickname'));
|
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementStart('li');
|
|
|
|
$this->password('password', _('Password'));
|
|
|
|
$this->elementEnd('li');
|
|
|
|
$this->elementEnd('ul');
|
|
|
|
|
|
|
|
$this->elementEnd('fieldset');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->element('input', array('id' => 'deny_submit',
|
2010-01-13 20:10:09 +00:00
|
|
|
'class' => 'submit submit form_action-primary',
|
2010-01-11 05:35:46 +00:00
|
|
|
'name' => 'deny',
|
|
|
|
'type' => 'submit',
|
|
|
|
'value' => _('Deny')));
|
|
|
|
|
|
|
|
$this->element('input', array('id' => 'allow_submit',
|
2010-01-13 20:10:09 +00:00
|
|
|
'class' => 'submit submit form_action-secondary',
|
2010-01-11 05:35:46 +00:00
|
|
|
'name' => 'allow',
|
|
|
|
'type' => 'submit',
|
|
|
|
'value' => _('Allow')));
|
|
|
|
|
2010-01-13 20:10:09 +00:00
|
|
|
$this->elementEnd('fieldset');
|
2010-01-11 05:35:46 +00:00
|
|
|
$this->elementEnd('form');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Instructions for using the form
|
|
|
|
*
|
|
|
|
* For "remembered" logins, we make the user re-login when they
|
|
|
|
* try to change settings. Different instructions for this case.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function getInstructions()
|
|
|
|
{
|
|
|
|
return _('Allow or deny access to your account information.');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A local menu
|
|
|
|
*
|
|
|
|
* Shows different login/register actions.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function showLocalNav()
|
|
|
|
{
|
|
|
|
}
|
2010-01-07 21:19:21 +00:00
|
|
|
|
|
|
|
}
|