X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2F_well_known.php;h=25289171f67f3f9f4965c7b80acda5b3dd38d66a;hb=046046e0c46b75ecff69ebeefc469be8a01bd9d3;hp=d75f43fbe0fc76bfb7859c5e1bb9696b1bf66430;hpb=32a8a28b2c28642059be7b9770002882946c5470;p=friendica.git diff --git a/mod/_well_known.php b/mod/_well_known.php index d75f43fbe0..25289171f6 100644 --- a/mod/_well_known.php +++ b/mod/_well_known.php @@ -2,19 +2,21 @@ use Friendica\App; use Friendica\Core\Config; +use Friendica\Core\System; -require_once("mod/hostxrd.php"); -require_once("mod/nodeinfo.php"); -require_once("mod/xrd.php"); +require_once 'mod/hostxrd.php'; +require_once 'mod/nodeinfo.php'; +require_once 'mod/xrd.php'; -function _well_known_init(App $a) { +function _well_known_init(App $a) +{ if ($a->argc > 1) { - switch($a->argv[1]) { + switch ($a->argv[1]) { case "host-meta": hostxrd_init($a); break; case "x-social-relay": - wk_social_relay($a); + wk_social_relay(); break; case "nodeinfo": nodeinfo_wellknown($a); @@ -24,13 +26,13 @@ function _well_known_init(App $a) { break; } } - http_status_exit(404); + System::httpExit(404); killme(); } -function wk_social_relay(App $a) { - - $subscribe = (bool)Config::get('system', 'relay_subscribe', false); +function wk_social_relay() +{ + $subscribe = (bool) Config::get('system', 'relay_subscribe', false); if ($subscribe) { $scope = Config::get('system', 'relay_scope', SR_SCOPE_ALL); @@ -38,36 +40,38 @@ function wk_social_relay(App $a) { $scope = SR_SCOPE_NONE; } - $tags = array(); + $tags = []; if ($scope == SR_SCOPE_TAGS) { $server_tags = Config::get('system', 'relay_server_tags'); $tagitems = explode(",", $server_tags); - foreach($tagitems AS $tag) { + foreach ($tagitems AS $tag) { $tags[trim($tag, "# ")] = trim($tag, "# "); } if (Config::get('system', 'relay_user_tags')) { $terms = q("SELECT DISTINCT(`term`) FROM `search`"); - foreach($terms AS $term) { + foreach ($terms AS $term) { $tag = trim($term["term"], "#"); $tags[$tag] = $tag; } } } - $taglist = array(); - foreach($tags AS $tag) { + $taglist = []; + foreach ($tags AS $tag) { $taglist[] = $tag; } - $relay = array("subscribe" => $subscribe, - "scope" => $scope, - "tags" => $taglist); + $relay = [ + "subscribe" => $subscribe, + "scope" => $scope, + "tags" => $taglist + ]; header('Content-type: application/json; charset=utf-8'); - echo json_encode($relay, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES); + echo json_encode($relay, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES); exit; }