friendica/src/Module/WellKnown/HostMeta.php

41 lines
963 B
PHP
Raw Normal View History

2019-04-30 22:22:36 +02:00
<?php
namespace Friendica\Module\WellKnown;
2019-04-30 22:22:36 +02:00
use Friendica\BaseModule;
use Friendica\Core\Renderer;
use Friendica\DI;
2019-04-30 22:22:36 +02:00
use Friendica\Protocol\Salmon;
use Friendica\Util\Crypto;
/**
* Prints the metadata for describing this host
* @see https://tools.ietf.org/html/rfc6415
2019-04-30 22:22:36 +02:00
*/
2019-04-30 22:36:28 +02:00
class HostMeta extends BaseModule
2019-04-30 22:22:36 +02:00
{
public static function rawContent(array $parameters = [])
2019-04-30 22:22:36 +02:00
{
$config = DI::config();
2019-04-30 22:22:36 +02:00
header('Content-type: text/xml');
2019-04-30 22:22:36 +02:00
2019-04-30 22:25:38 +02:00
if (!$config->get('system', 'site_pubkey', false)) {
2019-04-30 22:22:36 +02:00
$res = Crypto::newKeypair(1024);
$config->set('system', 'site_prvkey', $res['prvkey']);
$config->set('system', 'site_pubkey', $res['pubkey']);
2019-04-30 22:22:36 +02:00
}
$tpl = Renderer::getMarkupTemplate('xrd_host.tpl');
echo Renderer::replaceMacros($tpl, [
2019-12-30 02:17:16 +01:00
'$zhost' => DI::baseUrl()->getHostname(),
'$zroot' => DI::baseUrl()->get(),
'$domain' => DI::baseUrl()->get(),
'$bigkey' => Salmon::salmonKey($config->get('system', 'site_pubkey'))
]);
2019-04-30 22:22:36 +02:00
exit();
}
}