3 * Laconica - a distributed open-source microblogging tool
4 * Copyright (C) 2008, Controlez-Vous, Inc.
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 if (!defined('LACONICA')) { exit(1); }
22 require_once(INSTALLDIR.'/lib/omb.php');
23 require_once('Auth/Yadis/Yadis.php');
25 class RemotesubscribeAction extends Action {
27 function handle($args) {
29 parent::handle($args);
31 if (common_logged_in()) {
32 common_user_error(_t('You can use the local subscription!'));
36 if ($_SERVER['REQUEST_METHOD'] == 'POST') {
37 $this->remote_subscription();
43 function show_form($err=NULL) {
44 $nickname = $this->trimmed('nickname');
45 common_show_header(_t('Remote subscribe'));
47 common_element('div', 'error', $err);
49 common_element_start('form', array('id' => 'remotesubscribe', 'method' => 'POST',
50 'action' => common_local_url('remotesubscribe')));
51 common_input('nickname', _t('User nickname'), $nickname);
52 common_input('profile', _t('Profile URL'));
53 common_submit('submit', _t('Subscribe'));
54 common_element_end('form');
58 function remote_subscription() {
59 $user = $this->get_user();
62 $this->show_form(_t('No such user!'));
66 $profile = $this->trimmed('profile');
69 $this->show_form(_t('No such user!'));
73 if (!Validate::uri($profile, array('allowed_schemes' => array('http', 'https')))) {
74 $this->show_form(_t('Invalid profile URL (bad format)'));
78 $fetcher = Auth_Yadis_Yadis::getHTTPFetcher();
79 $yadis = Auth_Yadis_Yadis::discover($profile, $fetcher);
81 common_debug('remotesubscribe.php: XRDS discovery failure? "'.$yadis->failed.'"');
83 if (!$yadis || $yadis->failed) {
84 $this->show_form(_t('Not a valid profile URL (no YADIS document).'));
88 $xrds =& Auth_Yadis_XRDS::parseXRDS($yadis->response_text);
91 $this->show_form(_t('Not a valid profile URL (no XRDS defined).'));
95 common_debug('remotesubscribe.php: XRDS is "'.print_r($xrds,TRUE).'"');
97 $omb = $this->getOmb($xrds);
100 $this->show_form(_t('Not a valid profile URL (incorrect services).'));
104 list($token, $secret) = $this->request_token($omb);
106 if (!$token || !$secret) {
107 $this->show_form(_t('Couldn\'t get a request token.'));
111 $this->request_authorization($user, $omb, $token, $secret);
114 function get_user() {
116 $nickname = $this->trimmed('nickname');
118 $user = User::staticGet('nickname', $nickname);
123 function getOmb($xrds) {
125 static $omb_endpoints = array(OMB_ENDPOINT_UPDATEPROFILE, OMB_ENDPOINT_POSTNOTICE);
126 static $oauth_endpoints = array(OAUTH_ENDPOINT_REQUEST, OAUTH_ENDPOINT_AUTHORIZE,
127 OAUTH_ENDPOINT_ACCESS);
130 # XXX: the following code could probably be refactored to eliminate dupes
132 common_debug('remotesubscribe.php - looking for oauth discovery service');
134 $oauth_services = $xrds->services(omb_service_filter(OAUTH_DISCOVERY));
136 if (!$oauth_services) {
137 common_debug('remotesubscribe.php - failed to find oauth discovery service');
141 $oauth_service = $oauth_services[0];
143 common_debug('remotesubscribe.php - looking for oauth discovery XRD');
145 $oauth_xrd = $this->getXRD($oauth_service, $xrds);
148 common_debug('remotesubscribe.php - failed to find oauth discovery XRD');
152 common_debug('remotesubscribe.php - adding OAuth services from XRD');
154 if (!$this->addServices($oauth_xrd, $oauth_endpoints, $omb)) {
155 common_debug('remotesubscribe.php - failed to add OAuth services');
159 common_debug('remotesubscribe.php - looking for OMB discovery service');
161 $omb_services = $xrds->services(omb_service_filter(OMB_NAMESPACE));
163 if (!$omb_services) {
164 common_debug('remotesubscribe.php - failed to find OMB discovery service');
168 $omb_service = $omb_services[0];
170 common_debug('remotesubscribe.php - looking for OMB discovery XRD');
172 $omb_xrd = $this->getXRD($omb_service, $xrds);
175 common_debug('remotesubscribe.php - failed to find OMB discovery XRD');
179 common_debug('remotesubscribe.php - adding OMB services from XRD');
181 if (!$this->addServices($omb_xrd, $omb_endpoints, $omb)) {
182 common_debug('remotesubscribe.php - failed to add OMB services');
186 # XXX: check that we got all the services we needed
188 foreach (array_merge($omb_endpoints, $oauth_endpoints) as $type) {
189 if (!array_key_exists($type, $omb) || !$omb[$type]) {
190 common_debug('remotesubscribe.php - could not find type "'.$type.'"');
193 common_debug('remotesubscribe.php - key ="'.$type.'" and URI ="'.omb_service_uri($omb[$type]).'"');
196 if (!omb_local_id($omb[OAUTH_ENDPOINT_REQUEST])) {
197 common_debug('remotesubscribe.php - request token service has no LocalID.');
204 function getXRD($main_service, $main_xrds) {
205 $uri = omb_service_uri($main_service);
206 if (strpos($uri, "#") !== 0) {
207 # FIXME: more rigorous handling of external service definitions
210 $id = substr($uri, 1);
211 $nodes = $main_xrds->allXrdNodes;
212 $parser = $main_xrds->parser;
213 foreach ($nodes as $node) {
214 $attrs = $parser->attributes($node);
215 if (array_key_exists('xml:id', $attrs) &&
216 $attrs['xml:id'] == $id) {
217 # XXX: trick the constructor into thinking this is the only node
218 $bogus_nodes = array($node);
219 return new Auth_Yadis_XRDS($parser, $bogus_nodes);
225 function addServices($xrd, $types, &$omb) {
226 foreach ($types as $type) {
227 $matches = $xrd->services(omb_service_filter($type));
228 common_debug('remotesubscribe.php - ' . count($matches) . ' matches for "'.$type.'"');
230 foreach ($matches as $match) {
231 common_debug('remotesubscribe.php - "' . get_service_uri($match) . '" matches "'.$type.'"');
233 $omb[$type] = $matches[0];
242 function request_token($omb) {
243 $con = omb_oauth_consumer();
245 $url = omb_service_uri($omb[OAUTH_ENDPOINT_REQUEST]);
247 # XXX: Is this the right thing to do? Strip off GET params and make them
248 # POST params? Seems wrong to me.
250 $parsed = parse_url($url);
252 parse_str($parsed['query'], $params);
254 common_debug('remotesubscribe.php - building a POST message for request token call');
256 $req = OAuthRequest::from_consumer_and_token($con, NULL, "POST", $url, $params);
258 $listener = omb_local_id($omb[OAUTH_ENDPOINT_REQUEST]);
264 common_debug('remotesubscribe.php - request token listener = "' . $listener . '"');
266 $req->set_parameter('omb_listener', $listener);
267 $req->set_parameter('omb_version', OMB_VERSION_01);
269 # XXX: test to see if endpoint accepts this signature method
271 $req->sign_request(omb_hmac_sha1(), $con, NULL);
273 # We re-use this tool's fetcher, since it's pretty good
275 $fetcher = Auth_Yadis_Yadis::getHTTPFetcher();
277 common_debug('remotesubscribe.php - request token URL = "'.$req->get_normalized_http_url().'"');
278 common_debug('remotesubscribe.php - request token data = "'.$req->to_postdata().'"');
280 $result = $fetcher->post($req->get_normalized_http_url(),
281 $req->to_postdata());
283 if ($result->status != 200) {
284 common_debug('remotesubscribe.php - request token status = "' . $result->status . '"');
285 common_debug('remotesubscribe.php - request token body = "' . $result->body . '"');
289 common_debug('remotesubscribe.php - request token body = "' . $result->body . '"');
291 parse_str($result->body, $return);
293 common_debug('remotesubscribe.php - request token token = "' . $return['oauth_token'] . '"');
294 common_debug('remotesubscribe.php - request token secret = "' . $return['oauth_token_secret'] . '"');
296 return array($return['oauth_token'], $return['oauth_token_secret']);
299 function request_authorization($user, $omb, $token, $secret) {
300 global $config; # for license URL
302 $con = omb_oauth_consumer();
303 $tok = new OAuthToken($token, $secret);
305 $url = omb_service_uri($omb[OAUTH_ENDPOINT_AUTHORIZE]);
307 common_debug('remotesubscribe.php - user authorization URI = "' . $url . '"');
309 # XXX: Is this the right thing to do? Strip off GET params and make them
310 # POST params? Seems wrong to me.
312 $parsed = parse_url($url);
314 parse_str($parsed['query'], $params);
316 $req = OAuthRequest::from_consumer_and_token($con, $tok, 'GET', $url, $params);
318 # We send over a ton of information. This lets the other
319 # server store info about our user, and it lets the current
320 # user decide if they really want to authorize the subscription.
322 $req->set_parameter('omb_version', OMB_VERSION_01);
323 $req->set_parameter('omb_listener', omb_local_id($omb[OAUTH_ENDPOINT_REQUEST]));
324 $req->set_parameter('omb_listenee', $user->uri);
325 $req->set_parameter('omb_listenee_profile', common_profile_url($user->nickname));
326 $req->set_parameter('omb_listenee_nickname', $user->nickname);
327 $req->set_parameter('omb_listenee_license', $config['license']['url']);
328 $profile = $user->getProfile();
329 if ($profile->fullname) {
330 $req->set_parameter('omb_listenee_fullname', $profile->fullname);
332 if ($profile->homepage) {
333 $req->set_parameter('omb_listenee_homepage', $profile->homepage);
336 $req->set_parameter('omb_listenee_bio', $profile->bio);
338 if ($profile->location) {
339 $req->set_parameter('omb_listenee_location', $profile->location);
341 $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
343 $req->set_parameter('omb_listenee_avatar', $avatar->url);
346 # XXX: add a nonce to prevent replay attacks
348 $req->set_parameter('oauth_callback', common_local_url('finishremotesubscribe'));
350 # XXX: test to see if endpoint accepts this signature method
352 $req->sign_request(omb_hmac_sha1(), $con, $tok);
354 # store all our info here
356 $omb['listenee'] = $user->nickname;
357 $omb['token'] = $token;
358 $omb['secret'] = $secret;
360 $_SESSION['oauth_authorization_request'] = $omb;
362 # Redirect to authorization service
364 common_redirect($req->to_url());
368 function make_nonce() {
369 return common_good_rand(16);