replace webfinger usage in hostmeta.php

This commit is contained in:
James Walker 2010-02-25 17:26:10 -05:00
parent b2dabe6a48
commit bd90ef9f66
1 changed files with 10 additions and 4 deletions

View File

@ -31,12 +31,18 @@ class HostMetaAction extends Action
{
parent::handle();
$w = new Webfinger();
$domain = common_config('site', 'server');
$url = common_local_url('webfinger');
$url.= '?uri={uri}';
print $w->getHostMeta($domain, $url);
$xrd = new XRD();
$xrd = new XRD();
$xrd->host = $domain;
$xrd->links[] = array('rel' => Discovery::LRDD_REL,
'template' => $url,
'title' => array('Resource Descriptor'));
print $xrd->toXML();
}
}