2009-11-13 03:42:18 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
|
|
|
*
|
|
|
|
* List a user's OAuth connected applications
|
|
|
|
*
|
|
|
|
* 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 Settings
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @copyright 2008-2009 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') && !defined('LACONICA')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
require_once INSTALLDIR . '/lib/connectsettingsaction.php';
|
|
|
|
require_once INSTALLDIR . '/lib/applicationlist.php';
|
2010-02-02 07:35:54 +00:00
|
|
|
require_once INSTALLDIR . '/lib/apioauthstore.php';
|
2009-11-13 03:42:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Show connected OAuth applications
|
|
|
|
*
|
|
|
|
* @category Settings
|
|
|
|
* @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/
|
|
|
|
*
|
|
|
|
* @see SettingsAction
|
|
|
|
*/
|
|
|
|
|
2009-11-14 03:02:18 +00:00
|
|
|
class OauthconnectionssettingsAction extends ConnectSettingsAction
|
2009-11-13 03:42:18 +00:00
|
|
|
{
|
2010-01-11 22:11:43 +00:00
|
|
|
|
|
|
|
var $page = null;
|
2010-01-13 21:11:08 +00:00
|
|
|
var $id = null;
|
2010-01-11 22:11:43 +00:00
|
|
|
|
|
|
|
function prepare($args)
|
|
|
|
{
|
|
|
|
parent::prepare($args);
|
2010-01-13 21:11:08 +00:00
|
|
|
$this->id = (int)$this->arg('id');
|
2010-01-11 22:11:43 +00:00
|
|
|
$this->page = ($this->arg('page')) ? ($this->arg('page') + 0) : 1;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-11-13 03:42:18 +00:00
|
|
|
/**
|
|
|
|
* Title of the page
|
|
|
|
*
|
|
|
|
* @return string Title of the page
|
|
|
|
*/
|
|
|
|
|
|
|
|
function title()
|
|
|
|
{
|
2010-01-14 22:36:13 +00:00
|
|
|
return _('Connected applications');
|
2009-11-13 03:42:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Instructions for use
|
|
|
|
*
|
|
|
|
* @return instructions for use
|
|
|
|
*/
|
|
|
|
|
|
|
|
function getInstructions()
|
|
|
|
{
|
|
|
|
return _('You have allowed the following applications to access you account.');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Content area of the page
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function showContent()
|
|
|
|
{
|
|
|
|
$user = common_current_user();
|
|
|
|
$profile = $user->getProfile();
|
|
|
|
|
|
|
|
$offset = ($this->page - 1) * APPS_PER_PAGE;
|
|
|
|
$limit = APPS_PER_PAGE + 1;
|
|
|
|
|
|
|
|
$application = $profile->getApplications($offset, $limit);
|
|
|
|
|
2010-01-13 21:11:08 +00:00
|
|
|
$cnt == 0;
|
2010-01-11 22:11:43 +00:00
|
|
|
|
2010-01-13 21:11:08 +00:00
|
|
|
if (!empty($application)) {
|
|
|
|
$al = new ApplicationList($application, $user, $this, true);
|
|
|
|
$cnt = $al->show();
|
|
|
|
}
|
2010-01-11 22:11:43 +00:00
|
|
|
|
2010-01-13 21:11:08 +00:00
|
|
|
if ($cnt == 0) {
|
|
|
|
$this->showEmptyListMessage();
|
|
|
|
}
|
2009-11-13 03:42:18 +00:00
|
|
|
|
|
|
|
$this->pagination($this->page > 1, $cnt > APPS_PER_PAGE,
|
2009-11-14 03:02:18 +00:00
|
|
|
$this->page, 'connectionssettings',
|
2009-11-13 03:42:18 +00:00
|
|
|
array('nickname' => $this->user->nickname));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle posts to this form
|
|
|
|
*
|
|
|
|
* Based on the button that was pressed, muxes out to other functions
|
|
|
|
* to do the actual task requested.
|
|
|
|
*
|
|
|
|
* All sub-functions reload the form with a message -- success or failure.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
|
|
|
|
function handlePost()
|
|
|
|
{
|
|
|
|
// CSRF protection
|
|
|
|
|
|
|
|
$token = $this->trimmed('token');
|
|
|
|
if (!$token || $token != common_session_token()) {
|
|
|
|
$this->showForm(_('There was a problem with your session token. '.
|
|
|
|
'Try again, please.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-01-13 21:11:08 +00:00
|
|
|
if ($this->arg('revoke')) {
|
|
|
|
$this->revokeAccess($this->id);
|
|
|
|
|
|
|
|
// XXX: Show some indicator to the user of what's been done.
|
|
|
|
|
|
|
|
$this->showPage();
|
|
|
|
} else {
|
|
|
|
$this->clientError(_('Unexpected form submission.'), 401);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-02-02 07:35:54 +00:00
|
|
|
/**
|
|
|
|
* Revoke access to an authorized OAuth application
|
|
|
|
*
|
|
|
|
* @param int $appId the ID of the application
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-01-13 21:11:08 +00:00
|
|
|
function revokeAccess($appId)
|
|
|
|
{
|
|
|
|
$cur = common_current_user();
|
|
|
|
|
|
|
|
$app = Oauth_application::staticGet('id', $appId);
|
|
|
|
|
|
|
|
if (empty($app)) {
|
|
|
|
$this->clientError(_('No such application.'), 404);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-02-02 07:35:54 +00:00
|
|
|
// XXX: Transaction here?
|
|
|
|
|
2010-01-13 21:11:08 +00:00
|
|
|
$appUser = Oauth_application_user::getByKeys($cur, $app);
|
|
|
|
|
|
|
|
if (empty($appUser)) {
|
|
|
|
$this->clientError(_('You are not a user of that application.'), 401);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-02-02 07:35:54 +00:00
|
|
|
$datastore = new ApiStatusNetOAuthDataStore();
|
|
|
|
$datastore->revoke_token($appUser->token, 1);
|
|
|
|
|
|
|
|
$result = $appUser->delete();
|
2010-01-13 21:11:08 +00:00
|
|
|
|
|
|
|
if (!$result) {
|
2010-02-02 07:35:54 +00:00
|
|
|
common_log_db_error($orig, 'DELETE', __FILE__);
|
2010-01-13 21:11:08 +00:00
|
|
|
$this->clientError(_('Unable to revoke access for app: ' . $app->id));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$msg = 'User %s (id: %d) revoked access to app %s (id: %d)';
|
|
|
|
common_log(LOG_INFO, sprintf($msg, $cur->nickname,
|
|
|
|
$cur->id, $app->name, $app->id));
|
|
|
|
|
2009-11-13 03:42:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function showEmptyListMessage()
|
|
|
|
{
|
|
|
|
$message = sprintf(_('You have not authorized any applications to use your account.'));
|
|
|
|
|
|
|
|
$this->elementStart('div', 'guide');
|
|
|
|
$this->raw(common_markup_to_html($message));
|
|
|
|
$this->elementEnd('div');
|
|
|
|
}
|
|
|
|
|
2009-11-17 00:58:49 +00:00
|
|
|
function showSections()
|
|
|
|
{
|
|
|
|
$cur = common_current_user();
|
|
|
|
|
|
|
|
$this->element('h2', null, 'Developers');
|
|
|
|
$this->elementStart('p');
|
|
|
|
$this->raw(_('Developers can edit the registration settings for their applications '));
|
|
|
|
$this->element('a',
|
2010-01-13 07:33:51 +00:00
|
|
|
array('href' => common_local_url('oauthappssettings')),
|
2009-11-17 00:58:49 +00:00
|
|
|
'here.');
|
|
|
|
$this->elementEnd('p');
|
|
|
|
}
|
|
|
|
|
2009-11-13 03:42:18 +00:00
|
|
|
}
|