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');
24 class XrdsAction extends Action {
26 function handle($args) {
27 parent::handle($args);
28 $nickname = $this->trimmed('nickname');
29 $user = User::staticGet('nickname', $nickname);
31 common_user_error(_t('No such user.'));
34 $this->show_xrds($user);
37 function show_xrds($user) {
39 header('Content-Type: application/xrds+xml');
42 common_element_start('XRDS', array('xmlns' => 'xri://$xrds'));
44 common_element_start('XRD', array('xmlns' => 'xri://$xrd*($v*2.0)',
46 'xmlns:simple' => 'http://xrds-simple.net/core/1.0',
49 common_element('Type', NULL, 'xri://$xrds*simple');
51 $this->show_service(OAUTH_ENDPOINT_REQUEST,
52 common_local_url('requesttoken'),
53 array(OAUTH_AUTH_HEADER, OAUTH_POST_BODY),
54 array(OAUTH_HMAC_SHA1),
57 $this->show_service(OAUTH_ENDPOINT_AUTHORIZE,
58 common_local_url('userauthorization'),
59 array(OAUTH_AUTH_HEADER, OAUTH_POST_BODY),
60 array(OAUTH_HMAC_SHA1));
62 $this->show_service(OAUTH_ENDPOINT_ACCESS,
63 common_local_url('accesstoken'),
64 array(OAUTH_AUTH_HEADER, OAUTH_POST_BODY),
65 array(OAUTH_HMAC_SHA1));
67 $this->show_service(OAUTH_ENDPOINT_RESOURCE,
69 array(OAUTH_AUTH_HEADER, OAUTH_POST_BODY),
70 array(OAUTH_HMAC_SHA1));
72 common_element_end('XRD');
74 # XXX: decide whether to include user's ID/nickname in postNotice URL
76 common_element_start('XRD', array('xmlns' => 'xri://$xrd*($v*2.0)',
78 'xmlns:simple' => 'http://xrds-simple.net/core/1.0',
81 common_element('Type', NULL, 'xri://$xrds*simple');
83 $this->show_service(OMB_ENDPOINT_POSTNOTICE,
84 common_local_url('postnotice'));
86 $this->show_service(OMB_ENDPOINT_UPDATEPROFILE,
87 common_local_url('updateprofile'));
89 common_element_end('XRD');
91 common_element_start('XRD', array('xmlns' => 'xri://$xrd*($v*2.0)',
94 common_element('Type', NULL, 'xri://$xrds*simple');
96 $this->show_service(OAUTH_DISCOVERY,
98 $this->show_service(OMB_NAMESPACE,
101 common_element_end('XRD');
103 common_element_end('XRDS');
107 function show_service($type, $uri, $params=NULL, $sigs=NULL, $localId=NULL) {
108 common_element_start('Service');
110 common_element('URI', NULL, $uri);
112 common_element('Type', NULL, $type);
114 foreach ($params as $param) {
115 common_element('Type', NULL, $param);
119 foreach ($sigs as $sig) {
120 common_element('Type', NULL, $sig);
124 common_element('LocalID', NULL, $localId);
126 common_element_end('Service');