X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Foauthconnectionssettings.php;h=2256dc397ffab15eecc91d49f9fba6b9ee686075;hb=627d84a1e2db2aca5d2ce1272f6e83fb7faa8ad2;hp=e95a4a5cf5c1c0488595566e19c55f9c8d62b6cc;hpb=2e1c7c779d7d7a12529efdb42437fbc063475ba6;p=quix0rs-gnu-social.git diff --git a/actions/oauthconnectionssettings.php b/actions/oauthconnectionssettings.php index e95a4a5cf5..2256dc397f 100644 --- a/actions/oauthconnectionssettings.php +++ b/actions/oauthconnectionssettings.php @@ -31,9 +31,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } -require_once INSTALLDIR . '/lib/connectsettingsaction.php'; require_once INSTALLDIR . '/lib/applicationlist.php'; -require_once INSTALLDIR . '/lib/apioauthstore.php'; /** * Show connected OAuth applications @@ -46,12 +44,12 @@ require_once INSTALLDIR . '/lib/apioauthstore.php'; * * @see SettingsAction */ -class OauthconnectionssettingsAction extends ConnectSettingsAction +class OauthconnectionssettingsAction extends SettingsAction { var $page = null; var $oauth_token = null; - function prepare($args) + function prepare(array $args=array()) { parent::prepare($args); $this->oauth_token = $this->arg('oauth_token'); @@ -133,6 +131,7 @@ class OauthconnectionssettingsAction extends ConnectSettingsAction $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { + // TRANS: Client error displayed when the session token does not match or is not given. $this->showForm(_('There was a problem with your session token. '. 'Try again, please.')); return; @@ -143,7 +142,6 @@ class OauthconnectionssettingsAction extends ConnectSettingsAction } else { // TRANS: Client error when submitting a form with unexpected information. $this->clientError(_('Unexpected form submission.'), 401); - return false; } } @@ -164,12 +162,11 @@ class OauthconnectionssettingsAction extends ConnectSettingsAction if (empty($appUser)) { // TRANS: Client error when trying to revoke access for an application while not being a user of it. $this->clientError(_('You are not a user of that application.'), 401); - return false; } - $app = Oauth_application::staticGet('id', $appUser->application_id); + $app = Oauth_application::getKV('id', $appUser->application_id); - $datastore = new ApiStatusNetOAuthDataStore(); + $datastore = new ApiGNUsocialOAuthDataStore(); $datastore->revoke_token($appUser->token, 1); $result = $appUser->delete(); @@ -179,7 +176,6 @@ class OauthconnectionssettingsAction extends ConnectSettingsAction // TRANS: Client error when revoking access has failed for some reason. // TRANS: %s is the application ID revoking access failed for. $this->clientError(sprintf(_('Unable to revoke access for application: %s.'), $app->id)); - return false; } $msg = 'API OAuth - user %s (id: %d) revoked access token %s for app id %d';