2008-06-18 19:26:47 +01:00
|
|
|
<?php
|
2009-01-22 15:30:58 +00:00
|
|
|
/**
|
2009-10-29 20:01:25 +00:00
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
2009-01-22 15:30:58 +00:00
|
|
|
*
|
2009-10-29 20:01:25 +00:00
|
|
|
* Low-level generator for HTML
|
2009-01-22 15:30:58 +00:00
|
|
|
*
|
2009-10-29 20:01:25 +00:00
|
|
|
* PHP version 5
|
2008-06-18 19:26:47 +01:00
|
|
|
*
|
2009-10-29 20:01:25 +00:00
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
2008-06-18 19:26:47 +01:00
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-10-29 20:01:25 +00:00
|
|
|
*
|
|
|
|
* @category Output
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Craig Andrews <candrews@integralblue.com>
|
|
|
|
* @copyright 2008 StatusNet, Inc.
|
2010-05-27 23:26:47 +01:00
|
|
|
* @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
|
2009-10-29 20:01:25 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
2008-06-18 19:26:47 +01:00
|
|
|
*/
|
|
|
|
|
2015-06-04 00:08:03 +01:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2008-06-18 19:26:47 +01:00
|
|
|
|
2009-01-22 15:30:58 +00:00
|
|
|
/**
|
2009-10-29 20:01:25 +00:00
|
|
|
* Low-level generator for XRDS XML
|
2009-01-22 15:30:58 +00:00
|
|
|
*
|
2009-10-29 20:01:25 +00:00
|
|
|
* @category Output
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-10-29 20:01:25 +00:00
|
|
|
* @author Craig Andrews <candrews@integralblue.com>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-01-22 15:30:58 +00:00
|
|
|
*
|
2009-10-29 20:01:25 +00:00
|
|
|
* @see Action
|
|
|
|
* @see XMLOutputter
|
2009-01-22 15:30:58 +00:00
|
|
|
*/
|
2009-10-29 20:01:25 +00:00
|
|
|
class XRDSOutputter extends XMLOutputter
|
|
|
|
{
|
|
|
|
public function startXRDS()
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
header('Content-Type: application/xrds+xml');
|
2009-04-12 20:34:38 +01:00
|
|
|
$this->startXML();
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('XRDS', array('xmlns' => 'xri://$xrds'));
|
2009-10-29 20:01:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function endXRDS()
|
|
|
|
{
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('XRDS');
|
2009-04-12 20:34:38 +01:00
|
|
|
$this->endXML();
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2008-07-09 23:46:30 +01:00
|
|
|
|
2009-01-22 15:30:58 +00:00
|
|
|
/**
|
|
|
|
* Show service.
|
2009-04-12 20:34:38 +01:00
|
|
|
*
|
2009-01-22 15:30:58 +00:00
|
|
|
* @param string $type XRDS type
|
|
|
|
* @param string $uri URI
|
|
|
|
* @param array $params type parameters, null by default
|
|
|
|
* @param array $sigs type signatures, null by default
|
|
|
|
* @param string $localId local ID, null by default
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2009-10-29 20:01:25 +00:00
|
|
|
function showXrdsService($type, $uri, $params=null, $sigs=null, $localId=null)
|
2008-12-23 19:33:23 +00:00
|
|
|
{
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementStart('Service');
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($uri) {
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->element('URI', null, $uri);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->element('Type', null, $type);
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($params) {
|
|
|
|
foreach ($params as $param) {
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->element('Type', null, $param);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($sigs) {
|
|
|
|
foreach ($sigs as $sig) {
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->element('Type', null, $sig);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($localId) {
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->element('LocalID', null, $localId);
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-15 22:57:15 +00:00
|
|
|
$this->elementEnd('Service');
|
2008-12-23 19:19:07 +00:00
|
|
|
}
|
2009-01-22 15:30:58 +00:00
|
|
|
}
|