4 use Friendica\Core\Config;
5 use Friendica\Core\System;
7 require_once 'mod/hostxrd.php';
8 require_once 'mod/nodeinfo.php';
9 require_once 'mod/xrd.php';
11 function _well_known_init(App $a)
14 switch ($a->argv[1]) {
18 case "x-social-relay":
22 nodeinfo_wellknown($a);
29 System::httpExit(404);
32 function wk_social_relay()
34 $subscribe = (bool) Config::get('system', 'relay_subscribe', false);
37 $scope = Config::get('system', 'relay_scope', SR_SCOPE_ALL);
39 $scope = SR_SCOPE_NONE;
44 if ($scope == SR_SCOPE_TAGS) {
45 $server_tags = Config::get('system', 'relay_server_tags');
46 $tagitems = explode(",", $server_tags);
48 /// @todo Check if it was better to use "strtolower" on the tags
49 foreach ($tagitems AS $tag) {
50 $tag = trim($tag, "# ");
54 if (Config::get('system', 'relay_user_tags')) {
55 $terms = q("SELECT DISTINCT(`term`) FROM `search`");
57 foreach ($terms AS $term) {
58 $tag = trim($term["term"], "#");
65 foreach ($tags AS $tag) {
72 'subscribe' => $subscribe,
75 'protocols' => ['diaspora' => ['receive' => System::baseUrl() . '/receive/public'],
76 'dfrn' => ['receive' => System::baseUrl() . '/dfrn_notify']]
79 header('Content-type: application/json; charset=utf-8');
80 echo json_encode($relay, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);