123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708 |
- <?php
- if (!defined('STATUSNET')) {
- exit(1);
- }
- class ApiOAuthAuthorizeAction extends ApiOAuthAction
- {
- var $oauthTokenParam;
- var $reqToken;
- var $callback;
- var $app;
- var $nickname;
- var $password;
- var $store;
-
- function isReadOnly($args)
- {
- return false;
- }
- function prepare($args)
- {
- parent::prepare($args);
- $this->nickname = $this->trimmed('nickname');
- $this->password = $this->arg('password');
- $this->oauthTokenParam = $this->arg('oauth_token');
- $this->mode = $this->arg('mode');
- $this->store = new ApiGNUsocialOAuthDataStore();
- try {
- $this->app = $this->store->getAppByRequestToken($this->oauthTokenParam);
- } catch (Exception $e) {
- $this->clientError($e->getMessage());
- }
- return true;
- }
-
- function handle($args)
- {
- parent::handle($args);
- if ($_SERVER['REQUEST_METHOD'] == 'POST') {
- $this->handlePost();
- } else {
-
- if (empty($this->oauthTokenParam)) {
-
- $this->clientError(_('No oauth_token parameter provided.'));
- } else {
-
- $this->reqToken = $this->store->getTokenByKey($this->oauthTokenParam);
- if (empty($this->reqToken)) {
-
- $this->clientError(_('Invalid request token.'));
- } else {
-
- if ($this->reqToken->state != 0) {
-
- $this->clientError(_('Request token already authorized.'));
- }
- }
- }
-
- if (empty($this->app)) {
-
- $this->clientError(_('Invalid request token.'));
- }
- $name = $this->app->name;
- $this->showForm();
- }
- }
- function handlePost()
- {
-
- $token = $this->trimmed('token');
- if (!$token || $token != common_session_token()) {
- $this->showForm(
-
- _('There was a problem with your session token. Try again, please.'));
- return;
- }
-
- $user = null;
- if (!common_logged_in()) {
-
-
- $user = null;
- if (Event::handle('StartOAuthLoginCheck', array($this, &$user))) {
- $user = common_check_user($this->nickname, $this->password);
- }
- Event::handle('EndOAuthLoginCheck', array($this, &$user));
- if (empty($user)) {
-
- $this->showForm(_("Invalid nickname / password!"));
- return;
- }
- } else {
- $user = common_current_user();
- }
-
- $this->reqToken = $this->store->getTokenByKey($this->oauthTokenParam);
- assert(!empty($this->reqToken));
- if ($this->arg('allow')) {
-
- try {
- $this->store->authorize_token($this->oauthTokenParam);
- } catch (Exception $e) {
- $this->serverError($e->getMessage());
- }
- common_log(
- LOG_INFO,
- sprintf(
- "API OAuth - User %d (%s) has authorized request token %s for OAuth application %d (%s).",
- $user->id,
- $user->nickname,
- $this->reqToken->tok,
- $this->app->id,
- $this->app->name
- )
- );
- $tokenAssoc = new Oauth_token_association();
- $tokenAssoc->profile_id = $user->id;
- $tokenAssoc->application_id = $this->app->id;
- $tokenAssoc->token = $this->oauthTokenParam;
- $tokenAssoc->created = common_sql_now();
- $result = $tokenAssoc->insert();
- if (!$result) {
- common_log_db_error($tokenAssoc, 'INSERT', __FILE__);
-
- $this->serverError(_('Database error inserting oauth_token_association.'));
- }
- $callback = $this->getCallback();
- if (!empty($callback) && $this->reqToken->verified_callback != 'oob') {
- $targetUrl = $this->buildCallbackUrl(
- $callback,
- array(
- 'oauth_token' => $this->oauthTokenParam,
- 'oauth_verifier' => $this->reqToken->verifier
- )
- );
- common_log(LOG_INFO, "Redirecting to callback: $targetUrl");
-
- common_redirect($targetUrl, 303);
- } elseif ($this->app->type == 2) {
-
-
- common_log(
- LOG_WARNING,
- sprintf(
- "API OAuth - No callback provided for OAuth web client ID %s (%s) "
- . "during authorization step. Falling back to OOB workflow.",
- $this->app->id,
- $this->app->name
- )
- );
- }
-
- $this->showAuthorized();
- } else if ($this->arg('cancel')) {
- common_log(
- LOG_INFO,
- sprintf(
- "API OAuth - User %d (%s) refused to authorize request token %s for OAuth application %d (%s).",
- $user->id,
- $user->nickname,
- $this->reqToken->tok,
- $this->app->id,
- $this->app->name
- )
- );
- try {
- $this->store->revoke_token($this->oauthTokenParam, 0);
- } catch (Exception $e) {
- $this->ServerError($e->getMessage());
- }
- $callback = $this->getCallback();
-
-
- if (!empty($callback) && $this->reqToken->verified_callback != 'oob') {
- $targetUrl = $this->buildCallbackUrl(
- $callback,
- array(
- 'oauth_problem' => 'user_refused',
- )
- );
- common_log(LOG_INFO, "Redirecting to callback: $targetUrl");
-
- common_redirect($targetUrl, 303);
- }
-
- $this->showCanceled();
- } else {
-
- $this->clientError(_('Unexpected form submission.'));
- }
- }
-
- function showBody()
- {
- $bodyClasses = array();
- if ($this->desktopMode()) {
- $bodyClasses[] = 'oauth-desktop-mode';
- }
- if (common_current_user()) {
- $bodyClasses[] = 'user_in';
- }
- $attrs = array('id' => strtolower($this->trimmed('action')));
- if (!empty($bodyClasses)) {
- $attrs['class'] = implode(' ', $bodyClasses);
- }
- $this->elementStart('body', $attrs);
- $this->elementStart('div', array('id' => 'wrap'));
- if (Event::handle('StartShowHeader', array($this))) {
- $this->showHeader();
- Event::handle('EndShowHeader', array($this));
- }
- $this->showCore();
- if (Event::handle('StartShowFooter', array($this))) {
- $this->showFooter();
- Event::handle('EndShowFooter', array($this));
- }
- $this->elementEnd('div');
- $this->showScripts();
- $this->elementEnd('body');
- }
- function showForm($error=null)
- {
- $this->error = $error;
- $this->showPage();
- }
- function showScripts()
- {
- parent::showScripts();
- if (!common_logged_in()) {
- $this->autofocus('nickname');
- }
- }
-
- function title()
- {
-
- return _('An application would like to connect to your account');
- }
-
- function showContent()
- {
- $this->elementStart('form', array('method' => 'post',
- 'id' => 'form_apioauthauthorize',
- 'class' => 'form_settings',
- 'action' => common_local_url('ApiOAuthAuthorize')));
- $this->elementStart('fieldset');
- $this->element('legend', array('id' => 'apioauthauthorize_allowdeny'),
-
- _('Allow or deny access'));
- $this->hidden('token', common_session_token());
- $this->hidden('mode', $this->mode);
- $this->hidden('oauth_token', $this->oauthTokenParam);
- $this->hidden('oauth_callback', $this->callback);
- $this->elementStart('ul', 'form_data');
- $this->elementStart('li');
- $this->elementStart('p');
- if (!empty($this->app->icon) && $this->app->name != 'anonymous') {
- $this->element('img', array('src' => $this->app->icon));
- }
- $access = ($this->app->access_type & Oauth_application::$writeAccess) ?
- 'access and update' : 'access';
- if ($this->app->name == 'anonymous') {
-
-
-
- $msg = _('An application would like the ability ' .
- 'to <strong>%3$s</strong> your %4$s account data. ' .
- 'You should only give access to your %4$s account ' .
- 'to third parties you trust.');
- } else {
-
-
-
- $msg = _('The application <strong>%1$s</strong> by ' .
- '<strong>%2$s</strong> would like the ability ' .
- 'to <strong>%3$s</strong> your %4$s account data. ' .
- 'You should only give access to your %4$s account ' .
- 'to third parties you trust.');
- }
- $this->raw(sprintf($msg,
- $this->app->name,
- $this->app->organization,
- $access,
- common_config('site', 'name')));
- $this->elementEnd('p');
- $this->elementEnd('li');
- $this->elementEnd('ul');
-
- $button = false;
- if (!common_logged_in()) {
- if (Event::handle('StartOAuthLoginForm', array($this, &$button))) {
- $this->elementStart('fieldset');
-
- $this->element('legend', null, _m('LEGEND','Account'));
- $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');
- }
- Event::handle('EndOAuthLoginForm', array($this, &$button));
- }
- $this->element('input', array('id' => 'cancel_submit',
- 'class' => 'submit submit form_action-primary',
- 'name' => 'cancel',
- 'type' => 'submit',
-
-
- 'value' => _m('BUTTON','Cancel')));
- $this->element('input', array('id' => 'allow_submit',
- 'class' => 'submit submit form_action-secondary',
- 'name' => 'allow',
- 'type' => 'submit',
-
- 'value' => $button ? $button : _m('BUTTON','Allow')));
- $this->elementEnd('fieldset');
- $this->elementEnd('form');
- }
-
- function getInstructions()
- {
-
- return _('Authorize access to your account information.');
- }
-
- function showLocalNav()
- {
-
- }
-
- function desktopMode()
- {
- if (isset($this->mode) && $this->mode == 'desktop') {
- return true;
- } else {
- return false;
- }
- }
-
- function showHeader()
- {
- if ($this->desktopMode() == false) {
- parent::showHeader();
- }
- }
-
- function showAside()
- {
- if ($this->desktopMode() == false) {
- parent::showAside();
- }
- }
-
- function showFooter()
- {
- if ($this->desktopMode() == false) {
- parent::showFooter();
- }
- }
-
- function showSiteNotice()
- {
-
- }
-
- function showNoticeForm()
- {
-
- }
-
- function showCanceled()
- {
- $info = new InfoAction(
-
- _('Authorization canceled.'),
- sprintf(
-
-
- _('The request token %s has been revoked.'),
- $this->oauthTokenParam
- )
- );
- $info->showPage();
- }
-
- function showAuthorized()
- {
- $title = null;
- $msg = null;
- if ($this->app->name == 'anonymous') {
- $title =
-
- _('You have successfully authorized the application');
- $msg =
-
- _('Please return to the application and enter the following security code to complete the process.');
- } else {
- $title = sprintf(
-
-
- _('You have successfully authorized %s'),
- $this->app->name
- );
- $msg = sprintf(
-
-
- _('Please return to %s and enter the following security code to complete the process.'),
- $this->app->name
- );
- }
- if ($this->reqToken->verified_callback == 'oob') {
- $pin = new ApiOAuthPinAction(
- $title,
- $msg,
- $this->reqToken->verifier,
- $this->desktopMode()
- );
- $pin->showPage();
- } else {
-
-
-
-
- $info = new InfoAction(
- $title,
- $msg,
- $this->oauthTokenParam,
- $this->reqToken->verifier
- );
- $info->showPage();
- }
- }
-
- function getCallback()
- {
- $callback = null;
-
- if ($this->reqToken->verified_callback != 'oob') {
- $callback = $this->reqToken->verified_callback;
-
-
- if (empty($callback)) {
- common_debug(
- "No verified callback found for request token, using application callback: "
- . $this->app->callback_url,
- __FILE__
- );
- $callback = $this->app->callback_url;
- }
- }
- return $callback;
- }
-
- function buildCallbackUrl($url, $params)
- {
- foreach ($params as $k => $v) {
- $url = $this->appendQueryVar(
- $url,
- OAuthUtil::urlencode_rfc3986($k),
- OAuthUtil::urlencode_rfc3986($v)
- );
- }
- return $url;
- }
-
- function appendQueryVar($url, $k, $v) {
- $url = preg_replace('/(.*)(\?|&)' . $k . '=[^&]+?(&)(.*)/i', '$1$2$4', $url . '&');
- $url = substr($url, 0, -1);
- if (strpos($url, '?') === false) {
- return ($url . '?' . $k . '=' . $v);
- } else {
- return ($url . '&' . $k . '=' . $v);
- }
- }
- }
|