2015-08-16 21:45:51 +02:00
|
|
|
<?php
|
2017-04-30 06:01:26 +02:00
|
|
|
|
2015-11-11 22:41:44 +01:00
|
|
|
/**
|
2015-11-11 21:37:16 +01:00
|
|
|
* @file mod/statistics_json.php
|
|
|
|
*/
|
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-01-17 19:42:40 +01:00
|
|
|
use Friendica\Core\Addon;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\Config;
|
2018-01-27 17:59:10 +01:00
|
|
|
use Friendica\Core\System;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2017-01-09 13:14:55 +01:00
|
|
|
function statistics_json_init(App $a) {
|
2015-08-16 21:45:51 +02:00
|
|
|
|
2017-11-07 03:22:52 +01:00
|
|
|
if (!Config::get("system", "nodeinfo")) {
|
2018-01-27 17:59:10 +01:00
|
|
|
System::httpExit(404);
|
2017-04-30 06:01:26 +02:00
|
|
|
killme();
|
|
|
|
}
|
2015-08-16 21:45:51 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$statistics = [
|
2018-07-07 23:46:30 +02:00
|
|
|
"name" => Config::get('config', 'sitename'),
|
2017-04-30 06:01:26 +02:00
|
|
|
"network" => FRIENDICA_PLATFORM,
|
|
|
|
"version" => FRIENDICA_VERSION . "-" . DB_UPDATE_VERSION,
|
2018-07-15 21:04:48 +02:00
|
|
|
"registrations_open" => intval(Config::get('config', 'register_policy')) !== REGISTER_CLOSED,
|
2017-11-07 03:22:52 +01:00
|
|
|
"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')
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2015-08-16 21:45:51 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$statistics["services"] = [];
|
2018-01-17 19:42:40 +01:00
|
|
|
$statistics["services"]["appnet"] = Addon::isEnabled("appnet");
|
|
|
|
$statistics["services"]["blogger"] = Addon::isEnabled("blogger");
|
|
|
|
$statistics["services"]["buffer"] = Addon::isEnabled("buffer");
|
|
|
|
$statistics["services"]["dreamwidth"] = Addon::isEnabled("dwpost");
|
|
|
|
$statistics["services"]["gnusocial"] = Addon::isEnabled("statusnet");
|
|
|
|
$statistics["services"]["googleplus"] = Addon::isEnabled("gpluspost");
|
|
|
|
$statistics["services"]["libertree"] = Addon::isEnabled("libertree");
|
|
|
|
$statistics["services"]["livejournal"] = Addon::isEnabled("ljpost");
|
|
|
|
$statistics["services"]["pumpio"] = Addon::isEnabled("pumpio");
|
|
|
|
$statistics["services"]["twitter"] = Addon::isEnabled("twitter");
|
|
|
|
$statistics["services"]["tumblr"] = Addon::isEnabled("tumblr");
|
|
|
|
$statistics["services"]["wordpress"] = Addon::isEnabled("wppost");
|
2015-08-16 21:45:51 +02:00
|
|
|
|
|
|
|
$statistics["appnet"] = $statistics["services"]["appnet"];
|
|
|
|
$statistics["blogger"] = $statistics["services"]["blogger"];
|
|
|
|
$statistics["buffer"] = $statistics["services"]["buffer"];
|
|
|
|
$statistics["dreamwidth"] = $statistics["services"]["dreamwidth"];
|
|
|
|
$statistics["gnusocial"] = $statistics["services"]["gnusocial"];
|
|
|
|
$statistics["googleplus"] = $statistics["services"]["googleplus"];
|
|
|
|
$statistics["libertree"] = $statistics["services"]["libertree"];
|
|
|
|
$statistics["livejournal"] = $statistics["services"]["livejournal"];
|
|
|
|
$statistics["pumpio"] = $statistics["services"]["pumpio"];
|
|
|
|
$statistics["twitter"] = $statistics["services"]["twitter"];
|
|
|
|
$statistics["tumblr"] = $statistics["services"]["tumblr"];
|
|
|
|
$statistics["wordpress"] = $statistics["services"]["wordpress"];
|
|
|
|
|
|
|
|
header("Content-Type: application/json");
|
2017-04-30 06:01:26 +02:00
|
|
|
echo json_encode($statistics, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
|
|
|
|
logger("statistics_init: printed " . print_r($statistics, true), LOGGER_DATA);
|
2015-08-16 21:45:51 +02:00
|
|
|
killme();
|
|
|
|
}
|