X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fstatistics_json.php;h=21eb10ab4803cf5f849a5cda57b148a851e20161;hb=39ff6e9ce9251fe69b56ba05ea7bdc1896f34de2;hp=21a9a0521c63d395267bfbe60f0431936ab3e071;hpb=804c04a06f590ef860bea7ad95b24633d2fa048b;p=friendica.git diff --git a/mod/statistics_json.php b/mod/statistics_json.php index 21a9a0521c..21eb10ab48 100644 --- a/mod/statistics_json.php +++ b/mod/statistics_json.php @@ -1,29 +1,33 @@ $a->config["sitename"], - "network" => FRIENDICA_PLATFORM, - "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION, - "registrations_open" => ($a->config['register_policy'] != 0), - "total_users" => get_config('nodeinfo','total_users'), - "active_users_halfyear" => get_config('nodeinfo','active_users_halfyear'), - "active_users_monthly" => get_config('nodeinfo','active_users_monthly'), - "local_posts" => get_config('nodeinfo','local_posts') - ); - - $statistics["services"] = array(); +function statistics_json_init(App $a) { + + if (!Config::get("system", "nodeinfo")) { + http_status_exit(404); + killme(); + } + + $statistics = [ + "name" => $a->config["sitename"], + "network" => FRIENDICA_PLATFORM, + "version" => FRIENDICA_VERSION . "-" . DB_UPDATE_VERSION, + "registrations_open" => ($a->config['register_policy'] != 0), + "total_users" => Config::get('nodeinfo', 'total_users'), + "active_users_halfyear" => Config::get('nodeinfo', 'active_users_halfyear'), + "active_users_monthly" => Config::get('nodeinfo', 'active_users_monthly'), + "local_posts" => Config::get('nodeinfo', 'local_posts') + ]; + + $statistics["services"] = []; $statistics["services"]["appnet"] = plugin_enabled("appnet"); $statistics["services"]["blogger"] = plugin_enabled("blogger"); $statistics["services"]["buffer"] = plugin_enabled("buffer"); @@ -53,7 +57,7 @@ function statistics_json_init(&$a) { $statistics["wordpress"] = $statistics["services"]["wordpress"]; header("Content-Type: application/json"); - echo json_encode($statistics, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES); - logger("statistics_init: printed ".print_r($statistics, true), LOGGER_DATA); + echo json_encode($statistics, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES); + logger("statistics_init: printed " . print_r($statistics, true), LOGGER_DATA); killme(); }