]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/xrdsoutputter.php
Misses this file to merge. I like the comments.
[quix0rs-gnu-social.git] / 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('STATUSNET') && !defined('LACONICA')) {
32     exit(1);
33 }
34
35 require_once INSTALLDIR.'/lib/xmloutputter.php';
36
37 /**
38  * Low-level generator for XRDS XML
39  *
40  * @category Output
41  * @package  StatusNet
42  * @author   Craig Andrews <candrews@integralblue.com>
43  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
44  * @link     http://status.net/
45  *
46  * @see      Action
47  * @see      XMLOutputter
48  */
49 class XRDSOutputter extends XMLOutputter
50 {
51     public function startXRDS()
52     {
53         header('Content-Type: application/xrds+xml');
54         $this->startXML();
55         $this->elementStart('XRDS', array('xmlns' => 'xri://$xrds'));
56     }
57     
58     public function endXRDS()
59     {
60         $this->elementEnd('XRDS');
61         $this->endXML();
62     }
63
64     /**
65      * Show service.
66      *
67      * @param string $type    XRDS type
68      * @param string $uri     URI
69      * @param array  $params  type parameters, null by default
70      * @param array  $sigs    type signatures, null by default
71      * @param string $localId local ID, null by default
72      *
73      * @return void
74      */
75     function showXrdsService($type, $uri, $params=null, $sigs=null, $localId=null)
76     {
77         $this->elementStart('Service');
78         if ($uri) {
79             $this->element('URI', null, $uri);
80         }
81         $this->element('Type', null, $type);
82         if ($params) {
83             foreach ($params as $param) {
84                 $this->element('Type', null, $param);
85             }
86         }
87         if ($sigs) {
88             foreach ($sigs as $sig) {
89                 $this->element('Type', null, $sig);
90             }
91         }
92         if ($localId) {
93             $this->element('LocalID', null, $localId);
94         }
95         $this->elementEnd('Service');
96     }
97 }