Move .well-known, webfinger, xrd to src/Module/

This commit is contained in:
Philipp Holzer 2019-05-01 00:14:06 +02:00
parent e7f8d8c3b6
commit 90248f6bb7
No known key found for this signature in database
GPG key ID: 517BE60E2CE5C8A5
10 changed files with 358 additions and 275 deletions

View file

@ -0,0 +1,42 @@
<?php
namespace Friendica\Module\WellKnown;
use Friendica\BaseModule;
use Friendica\Core\Renderer;
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
{
public static function rawContent()
{
parent::rawContent();
$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();
}
}

View file

@ -0,0 +1,62 @@
<?php
namespace Friendica\Module\WellKnown;
use Friendica\BaseModule;
use Friendica\Model\Search;
/**
* Node subscription preferences for social realy systems
* @see https://git.feneas.org/jaywink/social-relay/blob/master/docs/relays.md
*/
class XSocialRelay extends BaseModule
{
public static function rawContent()
{
parent::rawContent();
$app = self::getApp();
$config = $app->getConfig();
$subscribe = $config->get('system', 'relay_subscribe', false);
if ($subscribe) {
$scope = $config->get('system', 'relay_scope', SR_SCOPE_ALL);
} else {
$scope = SR_SCOPE_NONE;
}
$systemTags = [];
$userTags = [];
if ($scope == SR_SCOPE_TAGS) {
$server_tags = $config->get('system', 'relay_server_tags');
$tagitems = explode(",", $server_tags);
/// @todo Check if it was better to use "strtolower" on the tags
foreach ($tagitems AS $tag) {
$systemTags[] = trim($tag, "# ");
}
if ($config->get('system', 'relay_user_tags')) {
$userTags = Search::getUserTags();
}
}
$tagList = array_unique(array_merge($systemTags, $userTags));
$relay = [
'subscribe' => $subscribe,
'scope' => $scope,
'tags' => $tagList,
'protocols' => ['diaspora' =>
['receive' => $app->getBaseURL() . '/receive/public'],
'dfrn' =>
['receive' => $app->getBaseURL() . '/dfrn_notify']]
];
header('Content-type: application/json; charset=utf-8');
echo json_encode($relay, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
exit;
}
}