]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/publicxrds.php
change function headers to K&R style
[quix0rs-gnu-social.git] / actions / publicxrds.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
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.
10  *
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.
15  *
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/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 require_once(INSTALLDIR.'/lib/openid.php');
23
24 # XXX: factor out similarities with XrdsAction
25
26 class PublicxrdsAction extends Action {
27
28     function is_readonly()
29     {
30         return true;
31     }
32
33     function handle($args)
34     {
35
36         parent::handle($args);
37
38         header('Content-Type: application/xrds+xml');
39
40         common_start_xml();
41         common_element_start('XRDS', array('xmlns' => 'xri://$xrds'));
42
43         common_element_start('XRD', array('xmlns' => 'xri://$xrd*($v*2.0)',
44                                           'xmlns:simple' => 'http://xrds-simple.net/core/1.0',
45                                           'version' => '2.0'));
46
47         common_element('Type', null, 'xri://$xrds*simple');
48
49         foreach (array('finishopenidlogin', 'finishaddopenid', 'finishimmediate') as $finish) {
50             $this->show_service(Auth_OpenID_RP_RETURN_TO_URL_TYPE,
51                                 common_local_url($finish));
52         }
53
54         common_element_end('XRD');
55
56         common_element_end('XRDS');
57         common_end_xml();
58     }
59
60     function show_service($type, $uri, $params=null, $sigs=null, $localId=null)
61     {
62         common_element_start('Service');
63         if ($uri) {
64             common_element('URI', null, $uri);
65         }
66         common_element('Type', null, $type);
67         if ($params) {
68             foreach ($params as $param) {
69                 common_element('Type', null, $param);
70             }
71         }
72         if ($sigs) {
73             foreach ($sigs as $sig) {
74                 common_element('Type', null, $sig);
75             }
76         }
77         if ($localId) {
78             common_element('LocalID', null, $localId);
79         }
80         common_element_end('Service');
81     }
82 }