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