2019-04-30 16:22:36 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\Renderer;
|
|
|
|
use Friendica\Protocol\Salmon;
|
|
|
|
use Friendica\Util\Crypto;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prints the host-meta text
|
|
|
|
*/
|
2019-04-30 16:36:28 -04:00
|
|
|
class HostMeta extends BaseModule
|
2019-04-30 16:22:36 -04:00
|
|
|
{
|
|
|
|
public static function rawContent()
|
|
|
|
{
|
|
|
|
parent::rawContent();
|
|
|
|
|
|
|
|
self::printHostMeta();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prints the host-meta output of this node
|
|
|
|
*
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
*/
|
|
|
|
public static function printHostMeta()
|
|
|
|
{
|
|
|
|
$app = self::getApp();
|
|
|
|
$config = $app->getConfig();
|
|
|
|
|
|
|
|
header("Content-type: text/xml");
|
|
|
|
|
2019-04-30 16:25:38 -04:00
|
|
|
if (!$config->get('system', 'site_pubkey', false)) {
|
2019-04-30 16:22:36 -04:00
|
|
|
$res = Crypto::newKeypair(1024);
|
|
|
|
|
|
|
|
$config->set('system','site_prvkey', $res['prvkey']);
|
|
|
|
$config->set('system','site_pubkey', $res['pubkey']);
|
|
|
|
}
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('xrd_host.tpl');
|
|
|
|
echo Renderer::replaceMacros($tpl, [
|
|
|
|
'$zhost' => $app->getHostName(),
|
|
|
|
'$zroot' => $app->getBaseURL(),
|
|
|
|
'$domain' => $app->getBaseURL(),
|
|
|
|
'$bigkey' => Salmon::salmonKey($config->get('system', 'site_pubkey'))]
|
|
|
|
);
|
|
|
|
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|