2019-04-30 16:22:36 -04:00
|
|
|
<?php
|
|
|
|
|
2019-04-30 18:14:06 -04:00
|
|
|
namespace Friendica\Module\WellKnown;
|
2019-04-30 16:22:36 -04:00
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\Renderer;
|
|
|
|
use Friendica\Protocol\Salmon;
|
|
|
|
use Friendica\Util\Crypto;
|
|
|
|
|
|
|
|
/**
|
2019-04-30 18:14:06 -04:00
|
|
|
* Prints the metadata for describing this host
|
|
|
|
* @see https://tools.ietf.org/html/rfc6415
|
2019-04-30 16:22:36 -04:00
|
|
|
*/
|
2019-04-30 16:36:28 -04:00
|
|
|
class HostMeta extends BaseModule
|
2019-04-30 16:22:36 -04:00
|
|
|
{
|
2019-11-05 14:16:26 -05:00
|
|
|
public static function rawContent($parameters)
|
2019-04-30 16:22:36 -04:00
|
|
|
{
|
|
|
|
$app = self::getApp();
|
|
|
|
$config = $app->getConfig();
|
|
|
|
|
2019-05-01 13:17:52 -04:00
|
|
|
header('Content-type: text/xml');
|
2019-04-30 16:22:36 -04:00
|
|
|
|
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);
|
|
|
|
|
2019-05-01 13:17:52 -04:00
|
|
|
$config->set('system', 'site_prvkey', $res['prvkey']);
|
|
|
|
$config->set('system', 'site_pubkey', $res['pubkey']);
|
2019-04-30 16:22:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('xrd_host.tpl');
|
|
|
|
echo Renderer::replaceMacros($tpl, [
|
2019-05-01 13:17:52 -04:00
|
|
|
'$zhost' => $app->getHostName(),
|
|
|
|
'$zroot' => $app->getBaseURL(),
|
|
|
|
'$domain' => $app->getBaseURL(),
|
|
|
|
'$bigkey' => Salmon::salmonKey($config->get('system', 'site_pubkey'))
|
|
|
|
]);
|
2019-04-30 16:22:36 -04:00
|
|
|
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|