use Friendica\App;
use Friendica\Core\Config;
use Friendica\Core\System;
-use Friendica\Module\Hostxrd;
+use Friendica\Module\HostMeta;
use Friendica\Module\Nodeinfo;
require_once 'mod/xrd.php';
if ($a->argc > 1) {
switch ($a->argv[1]) {
case "host-meta":
- Hostxrd::printHostMeta();
+ HostMeta::printHostMeta();
break;
case "x-social-relay":
wk_social_relay();
{
$this->routeCollector->addRoute(['GET', 'POST'], '/itemsource[/{guid}]', Module\Itemsource::class);
$this->routeCollector->addRoute(['GET'], '/amcd', Module\AccountManagementControlDocument::class);
+ $this->routeCollector->addRoute(['GET'], '/host-meta', Module\HostMeta::class);
+ $this->routeCollector->addRoute(['GET'], '/hostxrd', Module\HostMeta::class);
}
public function __construct(RouteCollector $routeCollector = null)
--- /dev/null
+<?php
+
+namespace Friendica\Module;
+
+use Friendica\BaseModule;
+use Friendica\Core\Renderer;
+use Friendica\Protocol\Salmon;
+use Friendica\Util\Crypto;
+
+/**
+ * Prints the host-meta text
+ */
+class HostMeta extends BaseModule
+{
+ public static function rawContent()
+ {
+ parent::rawContent();
+
+ self::printHostMeta();
+ }
+
+ /**
+ * Prints the host-meta output of this node
+ *
+ * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+ */
+ public static function printHostMeta()
+ {
+ $app = self::getApp();
+ $config = $app->getConfig();
+
+ header("Content-type: text/xml");
+
+ 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');
+ echo Renderer::replaceMacros($tpl, [
+ '$zhost' => $app->getHostName(),
+ '$zroot' => $app->getBaseURL(),
+ '$domain' => $app->getBaseURL(),
+ '$bigkey' => Salmon::salmonKey($config->get('system', 'site_pubkey'))]
+ );
+
+ exit();
+ }
+}
+++ /dev/null
-<?php
-
-namespace Friendica\Module;
-
-use Friendica\BaseModule;
-use Friendica\Core\Renderer;
-use Friendica\Protocol\Salmon;
-use Friendica\Util\Crypto;
-
-/**
- * Prints the host-meta text
- */
-class Hostxrd extends BaseModule
-{
- public static function rawContent()
- {
- parent::rawContent();
-
- self::printHostMeta();
- }
-
- /**
- * Prints the host-meta output of this node
- *
- * @throws \Friendica\Network\HTTPException\InternalServerErrorException
- */
- public static function printHostMeta()
- {
- $app = self::getApp();
- $config = $app->getConfig();
-
- header("Content-type: text/xml");
-
- 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');
- echo Renderer::replaceMacros($tpl, [
- '$zhost' => $app->getHostName(),
- '$zroot' => $app->getBaseURL(),
- '$domain' => $app->getBaseURL(),
- '$bigkey' => Salmon::salmonKey($config->get('system', 'site_pubkey'))]
- );
-
- exit();
- }
-}