3 * Handler for remote subscription
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.'/lib/omb.php';
34 require_once INSTALLDIR.'/extlib/libomb/service_consumer.php';
35 require_once INSTALLDIR.'/extlib/libomb/profile.php';
38 * Handler for remote subscription
42 * @author Evan Prodromou <evan@status.net>
43 * @author Robin Millette <millette@status.net>
44 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
45 * @link http://status.net/
47 class RemotesubscribeAction extends Action
53 function prepare($args)
55 parent::prepare($args);
57 if (common_logged_in()) {
58 // TRANS: Client error displayed when using remote subscribe for a local entity.
59 $this->clientError(_('You can use the local subscription!'));
63 $this->nickname = $this->trimmed('nickname');
64 $this->profile_url = $this->trimmed('profile_url');
69 function handle($args)
71 parent::handle($args);
73 if ($_SERVER['REQUEST_METHOD'] == 'POST') {
74 /* Use a session token for CSRF protection. */
75 $token = $this->trimmed('token');
76 if (!$token || $token != common_session_token()) {
77 // TRANS: Client error displayed when the session token does not match or is not given.
78 $this->showForm(_('There was a problem with your session token. '.
79 'Try again, please.'));
82 $this->remoteSubscription();
88 function showForm($err=null)
94 function showPageNotice()
97 $this->element('div', 'error', $this->err);
99 // TRANS: Page notice for remote subscribe. This message contains Markdown links.
100 // TRANS: Ensure to keep the correct markup of [link description](link).
101 $inst = _('To subscribe, you can [login](%%action.login%%),' .
102 ' or [register](%%action.register%%) a new ' .
103 ' account. If you already have an account ' .
104 ' on a [compatible microblogging site](%%doc.openmublog%%), ' .
105 ' enter your profile URL below.');
106 $output = common_markup_to_html($inst);
107 $this->elementStart('div', 'instructions');
109 $this->elementEnd('div');
115 // TRANS: Page title for Remote subscribe.
116 return _('Remote subscribe');
119 function showContent()
121 /* The id 'remotesubscribe' conflicts with the
122 button on profile page. */
123 $this->elementStart('form', array('id' => 'form_remote_subscribe',
125 'class' => 'form_settings',
126 'action' => common_local_url('remotesubscribe')));
127 $this->elementStart('fieldset');
128 // TRANS: Field legend on page for remote subscribe.
129 $this->element('legend', _('Subscribe to a remote user'));
130 $this->hidden('token', common_session_token());
132 $this->elementStart('ul', 'form_data');
133 $this->elementStart('li');
134 // TRANS: Field label on page for remote subscribe.
135 $this->input('nickname', _('User nickname'), $this->nickname,
136 // TRANS: Field title on page for remote subscribe.
137 _('Nickname of the user you want to follow.'));
138 $this->elementEnd('li');
139 $this->elementStart('li');
140 // TRANS: Field label on page for remote subscribe.
141 $this->input('profile_url', _('Profile URL'), $this->profile_url,
142 // TRANS: Field title on page for remote subscribe.
143 _('URL of your profile on another compatible microblogging service.'));
144 $this->elementEnd('li');
145 $this->elementEnd('ul');
146 // TRANS: Button text on page for remote subscribe.
147 $this->submit('submit', _m('BUTTON','Subscribe'));
148 $this->elementEnd('fieldset');
149 $this->elementEnd('form');
152 function remoteSubscription()
154 if (!$this->nickname) {
155 // TRANS: Form validation error on page for remote subscribe when no user was provided.
156 $this->showForm(_('No such user.'));
160 $user = User::staticGet('nickname', $this->nickname);
162 $this->profile_url = $this->trimmed('profile_url');
164 if (!$this->profile_url) {
165 // TRANS: Form validation error on page for remote subscribe when no user profile was found.
166 $this->showForm(_('No such user.'));
170 if (!common_valid_http_url($this->profile_url)) {
171 // TRANS: Form validation error on page for remote subscribe when an invalid profile URL was provided.
172 $this->showForm(_('Invalid profile URL (bad format).'));
177 $service = new OMB_Service_Consumer($this->profile_url,
179 omb_oauth_datastore());
180 } catch (OMB_InvalidYadisException $e) {
181 // TRANS: Form validation error on page for remote subscribe when no the provided profile URL
182 // TRANS: does not contain expected data.
183 $this->showForm(_('Not a valid profile URL (no YADIS document or ' .
184 'invalid XRDS defined).'));
188 if ($service->getServiceURI(OAUTH_ENDPOINT_REQUEST) ==
189 common_local_url('requesttoken') ||
190 User::staticGet('uri', $service->getRemoteUserURI())) {
191 // TRANS: Form validation error on page for remote subscribe.
192 $this->showForm(_('That is a local profile! Login to subscribe.'));
197 $service->requestToken();
198 } catch (OMB_RemoteServiceException $e) {
199 // TRANS: Form validation error on page for remote subscribe when the remote service is not providing a request token.
200 $this->showForm(_('Could not get a request token.'));
204 /* Create an OMB_Profile from $user. */
205 $profile = $user->getProfile();
207 common_log_db_error($user, 'SELECT', __FILE__);
208 // TRANS: Server error displayed on page for remote subscribe when user does not have a matching profile.
209 $this->serverError(_('User without matching profile.'));
213 $target_url = $service->requestAuthorization(
214 profile_to_omb_profile($user->uri, $profile),
215 common_local_url('finishremotesubscribe'));
217 common_ensure_session();
219 $_SESSION['oauth_authorization_request'] = serialize($service);
221 /* Redirect to the remote service for authorization. */
222 common_redirect($target_url, 303);