]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OpenID/lib/xrdsoutputter.php
Merge remote-tracking branch 'upstream/nightly' into nightly
[quix0rs-gnu-social.git] / plugins / OpenID / lib / xrdsoutputter.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Low-level generator for HTML
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Output
23  * @package   StatusNet
24  * @author    Craig Andrews <candrews@integralblue.com>
25  * @copyright 2008 StatusNet, Inc.
26  * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('GNUSOCIAL')) { exit(1); }
32
33 /**
34  * Low-level generator for XRDS XML
35  *
36  * @category Output
37  * @package  StatusNet
38  * @author   Craig Andrews <candrews@integralblue.com>
39  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
40  * @link     http://status.net/
41  *
42  * @see      Action
43  * @see      XMLOutputter
44  */
45 class XRDSOutputter extends XMLOutputter
46 {
47     public function startXRDS()
48     {
49         header('Content-Type: application/xrds+xml');
50         $this->startXML();
51         $this->elementStart('XRDS', array('xmlns' => 'xri://$xrds'));
52     }
53     
54     public function endXRDS()
55     {
56         $this->elementEnd('XRDS');
57         $this->endXML();
58     }
59
60     /**
61      * Show service.
62      *
63      * @param string $type    XRDS type
64      * @param string $uri     URI
65      * @param array  $params  type parameters, null by default
66      * @param array  $sigs    type signatures, null by default
67      * @param string $localId local ID, null by default
68      *
69      * @return void
70      */
71     function showXrdsService($type, $uri, $params=null, $sigs=null, $localId=null)
72     {
73         $this->elementStart('Service');
74         if ($uri) {
75             $this->element('URI', null, $uri);
76         }
77         $this->element('Type', null, $type);
78         if ($params) {
79             foreach ($params as $param) {
80                 $this->element('Type', null, $param);
81             }
82         }
83         if ($sigs) {
84             foreach ($sigs as $sig) {
85                 $this->element('Type', null, $sig);
86             }
87         }
88         if ($localId) {
89             $this->element('LocalID', null, $localId);
90         }
91         $this->elementEnd('Service');
92     }
93 }