63 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * @file mod/statistics_json.php
 | 
						|
 */
 | 
						|
 | 
						|
use Friendica\App;
 | 
						|
use Friendica\Core\Config;
 | 
						|
 | 
						|
require_once("include/plugin.php");
 | 
						|
 | 
						|
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");
 | 
						|
	$statistics["services"]["dreamwidth"] = plugin_enabled("dwpost");
 | 
						|
	$statistics["services"]["facebook"] = plugin_enabled("fbpost");
 | 
						|
	$statistics["services"]["gnusocial"] = plugin_enabled("statusnet");
 | 
						|
	$statistics["services"]["googleplus"] = plugin_enabled("gpluspost");
 | 
						|
	$statistics["services"]["libertree"] = plugin_enabled("libertree");
 | 
						|
	$statistics["services"]["livejournal"] = plugin_enabled("ljpost");
 | 
						|
	$statistics["services"]["pumpio"] = plugin_enabled("pumpio");
 | 
						|
	$statistics["services"]["twitter"] = plugin_enabled("twitter");
 | 
						|
	$statistics["services"]["tumblr"] = plugin_enabled("tumblr");
 | 
						|
	$statistics["services"]["wordpress"] = plugin_enabled("wppost");
 | 
						|
 | 
						|
	$statistics["appnet"] = $statistics["services"]["appnet"];
 | 
						|
	$statistics["blogger"] = $statistics["services"]["blogger"];
 | 
						|
	$statistics["buffer"] = $statistics["services"]["buffer"];
 | 
						|
	$statistics["dreamwidth"] = $statistics["services"]["dreamwidth"];
 | 
						|
	$statistics["facebook"] = $statistics["services"]["facebook"];
 | 
						|
	$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");
 | 
						|
	echo json_encode($statistics, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
 | 
						|
	logger("statistics_init: printed " . print_r($statistics, true), LOGGER_DATA);
 | 
						|
	killme();
 | 
						|
}
 |