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;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2019-04-30 16:22:36 -04:00
|
|
|
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 16:48:54 -05:00
|
|
|
public static function rawContent(array $parameters = [])
|
2019-04-30 16:22:36 -04:00
|
|
|
{
|
2019-12-15 16:34:11 -05:00
|
|
|
$app = DI::app();
|
2019-12-15 17:44:33 -05:00
|
|
|
$config = DI::config();
|
2019-04-30 16:22:36 -04:00
|
|
|
|
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-12-15 18:47:24 -05:00
|
|
|
'$zhost' => DI::baseUrl()->getHostname()(),
|
2019-05-01 13:17:52 -04:00
|
|
|
'$zroot' => $app->getBaseURL(),
|
|
|
|
'$domain' => $app->getBaseURL(),
|
|
|
|
'$bigkey' => Salmon::salmonKey($config->get('system', 'site_pubkey'))
|
|
|
|
]);
|
2019-04-30 16:22:36 -04:00
|
|
|
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|