3 * Handler for remote subscription finish callback
9 * @author Evan Prodromou <evan@status.net>
10 * @author Robin Millette <millette@status.net>
11 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
12 * @link http://status.net/
14 * StatusNet - the distributed open-source microblogging tool
15 * Copyright (C) 2008, 2009, StatusNet, Inc.
17 * This program is free software: you can redistribute it and/or modify
18 * it under the terms of the GNU Affero General Public License as published by
19 * the Free Software Foundation, either version 3 of the License, or
20 * (at your option) any later version.
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU Affero General Public License for more details.
27 * You should have received a copy of the GNU Affero General Public License
28 * along with this program. If not, see <http://www.gnu.org/licenses/>.
31 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
33 require_once INSTALLDIR.'/extlib/libomb/service_consumer.php';
34 require_once INSTALLDIR.'/lib/omb.php';
37 * Handler for remote subscription finish callback
39 * When a remote user subscribes a local user, a redirect to this action is
40 * issued after the remote user authorized their service to subscribe.
44 * @author Evan Prodromou <evan@status.net>
45 * @author Robin Millette <millette@controlyourself.ca>
46 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
47 * @link http://laconi.ca/
49 class FinishremotesubscribeAction extends Action
55 * @param array $args query arguments
60 function handle($args)
62 parent::handle($args);
64 /* Restore session data. RemotesubscribeAction should have stored
66 $service = unserialize($_SESSION['oauth_authorization_request']);
69 $this->clientError(_('Not expecting this response!'));
73 common_debug('stored request: '. print_r($service, true), __FILE__);
75 /* Create user objects for both users. Do it early for request
77 $user = User::staticGet('uri', $service->getListeneeURI());
80 $this->clientError(_('User being listened to does not exist.'));
84 $other = User::staticGet('uri', $service->getListenerURI());
87 $this->clientError(_('You can use the local subscription!'));
91 $remote = Remote_profile::staticGet('uri', $service->getListenerURI());
93 // Note remote profile may not have been saved yet.
94 // @fixme not convinced this is correct at all!
96 $profile = Profile::staticGet($remote->id);
98 if ($user->hasBlocked($profile)) {
99 $this->clientError(_('That user has blocked you from subscribing.'));
104 /* Perform the handling itself via libomb. */
106 $service->finishAuthorization();
107 } catch (OAuthException $e) {
108 if ($e->getMessage() == 'The authorized token does not equal the ' .
109 'submitted token.') {
110 $this->clientError(_('You are not authorized.'));
113 $this->clientError(_('Could not convert request token to ' .
117 } catch (OMB_RemoteServiceException $e) {
118 $this->clientError(_('Remote service uses unknown version of ' .
121 } catch (Exception $e) {
122 common_debug('Got exception ' . print_r($e, true), __FILE__);
123 $this->clientError($e->getMessage());
127 /* The service URLs are not accessible from datastore, so setting them
128 after insertion of the profile. */
129 $remote = Remote_profile::staticGet('uri', $service->getListenerURI());
130 $orig_remote = clone($remote);
132 $remote->postnoticeurl =
133 $service->getServiceURI(OMB_ENDPOINT_POSTNOTICE);
134 $remote->updateprofileurl =
135 $service->getServiceURI(OMB_ENDPOINT_UPDATEPROFILE);
137 if (!$remote->update($orig_remote)) {
138 $this->serverError(_('Error updating remote profile.'));
142 /* Clear the session data. */
143 unset($_SESSION['oauth_authorization_request']);
145 /* If we show subscriptions in reverse chronological order, the new one
146 should show up close to the top of the page. */
147 common_redirect(common_local_url('subscribers', array('nickname' =>