2010-02-09 06:37:45 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2010, StatusNet, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-09-05 22:43:29 +01:00
|
|
|
* @category Action
|
|
|
|
* @package StatusNet
|
2010-02-09 06:37:45 +00:00
|
|
|
* @maintainer James Walker <james@status.net>
|
2010-09-05 22:43:29 +01:00
|
|
|
* @author Craig Andrews <candrews@integralblue.com>
|
2010-02-09 06:37:45 +00:00
|
|
|
*/
|
|
|
|
|
2010-10-08 18:42:59 +01:00
|
|
|
if (!defined('STATUSNET')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
2010-02-09 06:37:45 +00:00
|
|
|
|
2011-01-31 17:16:55 +00:00
|
|
|
// @todo XXX: Add documentation.
|
2010-02-09 06:37:45 +00:00
|
|
|
class HostMetaAction extends Action
|
|
|
|
{
|
2010-09-05 22:43:29 +01:00
|
|
|
/**
|
|
|
|
* Is read only?
|
|
|
|
*
|
|
|
|
* @return boolean true
|
|
|
|
*/
|
|
|
|
function isReadOnly()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-02-09 06:37:45 +00:00
|
|
|
function handle()
|
|
|
|
{
|
|
|
|
parent::handle();
|
|
|
|
|
|
|
|
$domain = common_config('site', 'server');
|
2010-02-25 22:26:10 +00:00
|
|
|
|
|
|
|
$xrd = new XRD();
|
|
|
|
$xrd->host = $domain;
|
2010-09-05 22:43:29 +01:00
|
|
|
|
|
|
|
if(Event::handle('StartHostMetaLinks', array(&$xrd->links))) {
|
2010-12-07 18:50:05 +00:00
|
|
|
$url = common_local_url('userxrd');
|
|
|
|
$url.= '?uri={uri}';
|
|
|
|
$xrd->links[] = array('rel' => Discovery::LRDD_REL,
|
|
|
|
'template' => $url,
|
|
|
|
'title' => array('Resource Descriptor'));
|
2010-09-05 22:43:29 +01:00
|
|
|
Event::handle('EndHostMetaLinks', array(&$xrd->links));
|
|
|
|
}
|
2010-02-25 22:26:10 +00:00
|
|
|
|
2010-08-02 19:47:13 +01:00
|
|
|
header('Content-type: application/xrd+xml');
|
2010-02-25 22:26:10 +00:00
|
|
|
print $xrd->toXML();
|
2010-02-09 06:37:45 +00:00
|
|
|
}
|
|
|
|
}
|