. * */ namespace Friendica\Module\WellKnown; use Friendica\BaseModule; use Friendica\Core\Renderer; use Friendica\Core\System; use Friendica\DI; use Friendica\Module\Response; use Friendica\Protocol\Salmon; use Friendica\Util\Crypto; /** * Prints the metadata for describing this host * @see https://tools.ietf.org/html/rfc6415 */ class HostMeta extends BaseModule { protected function rawContent(array $request = []) { $config = DI::config(); if (!$config->get('system', 'site_pubkey', false)) { $res = Crypto::newKeypair(1024); $config->set('system', 'site_prvkey', $res['prvkey']); $config->set('system', 'site_pubkey', $res['pubkey']); } $tpl = Renderer::getMarkupTemplate('xrd_host.tpl'); $content = Renderer::replaceMacros($tpl, [ '$zhost' => DI::baseUrl()->getHostname(), '$zroot' => DI::baseUrl()->get(), '$domain' => DI::baseUrl()->get(), '$bigkey' => Salmon::salmonKey($config->get('system', 'site_pubkey')) ]); System::httpExit($content, Response::TYPE_XML); } }