2014-01-27 23:26:17 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Name: Statistics
|
2014-12-24 11:25:03 +00:00
|
|
|
* Description: Generates some statistics for http://the-federation.info/
|
2015-02-01 09:31:24 +00:00
|
|
|
* Version: 0.2
|
2014-01-27 23:26:17 +00:00
|
|
|
* Author: Michael Vogel <https://pirati.ca/profile/heluecht>
|
2015-08-17 06:05:10 +00:00
|
|
|
* Status: Unsupported
|
2014-01-27 23:26:17 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
function statistics_json_install() {
|
2014-02-02 09:05:23 +00:00
|
|
|
register_hook('cron', 'addon/statistics_json/statistics_json.php', 'statistics_json_cron');
|
2014-01-27 23:26:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function statistics_json_uninstall() {
|
2014-02-02 09:05:23 +00:00
|
|
|
unregister_hook('cron', 'addon/statistics_json/statistics_json.php', 'statistics_json_cron');
|
2014-01-27 23:26:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function statistics_json_module() {}
|
|
|
|
|
2014-10-07 18:15:56 +00:00
|
|
|
function statistics_json_plugin_enabled($plugin) {
|
|
|
|
$r = q("SELECT * FROM `addon` WHERE `installed` = 1 AND `name` = '%s'", $plugin);
|
|
|
|
return((bool)(count($r) > 0));
|
|
|
|
}
|
|
|
|
|
2014-01-27 23:26:17 +00:00
|
|
|
function statistics_json_init() {
|
|
|
|
global $a;
|
|
|
|
|
|
|
|
$statistics = array(
|
|
|
|
"name" => $a->config["sitename"],
|
2014-02-02 20:27:16 +00:00
|
|
|
"network" => FRIENDICA_PLATFORM,
|
2015-02-01 09:31:24 +00:00
|
|
|
"version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION,
|
2014-01-27 23:26:17 +00:00
|
|
|
"registrations_open" => ($a->config['register_policy'] != 0),
|
2014-02-02 09:05:23 +00:00
|
|
|
"total_users" => get_config('statistics_json','total_users'),
|
|
|
|
"active_users_halfyear" => get_config('statistics_json','active_users_halfyear'),
|
|
|
|
"active_users_monthly" => get_config('statistics_json','active_users_monthly'),
|
|
|
|
"local_posts" => get_config('statistics_json','local_posts')
|
2014-01-27 23:26:17 +00:00
|
|
|
);
|
|
|
|
|
2014-10-13 18:06:28 +00:00
|
|
|
$statistics["services"] = array();
|
|
|
|
$statistics["services"]["appnet"] = statistics_json_plugin_enabled("appnet");
|
|
|
|
$statistics["services"]["blogger"] = statistics_json_plugin_enabled("blogger");
|
|
|
|
$statistics["services"]["buffer"] = statistics_json_plugin_enabled("buffer");
|
|
|
|
$statistics["services"]["dreamwidth"] = statistics_json_plugin_enabled("dwpost");
|
|
|
|
$statistics["services"]["facebook"] = statistics_json_plugin_enabled("fbpost");
|
|
|
|
$statistics["services"]["gnusocial"] = statistics_json_plugin_enabled("statusnet");
|
|
|
|
$statistics["services"]["googleplus"] = statistics_json_plugin_enabled("gpluspost");
|
|
|
|
$statistics["services"]["libertree"] = statistics_json_plugin_enabled("libertree");
|
|
|
|
$statistics["services"]["livejournal"] = statistics_json_plugin_enabled("ljpost");
|
|
|
|
$statistics["services"]["pumpio"] = statistics_json_plugin_enabled("pumpio");
|
|
|
|
$statistics["services"]["twitter"] = statistics_json_plugin_enabled("twitter");
|
|
|
|
$statistics["services"]["tumblr"] = statistics_json_plugin_enabled("tumblr");
|
|
|
|
$statistics["services"]["wordpress"] = statistics_json_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"];
|
2014-10-07 18:15:56 +00:00
|
|
|
|
2014-02-02 09:05:23 +00:00
|
|
|
header("Content-Type: application/json");
|
|
|
|
echo json_encode($statistics);
|
|
|
|
logger("statistics_init: printed ".print_r($statistics, true));
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
|
|
|
function statistics_json_cron($a,$b) {
|
|
|
|
$last = get_config('statistics_json','last_calucation');
|
|
|
|
|
|
|
|
if($last) {
|
2014-03-02 00:45:59 +00:00
|
|
|
// Calculate every 24 hours
|
|
|
|
$next = $last + (24 * 60 * 60);
|
2014-02-02 09:05:23 +00:00
|
|
|
if($next > time()) {
|
|
|
|
logger('statistics_json_cron: calculation intervall not reached');
|
2014-02-05 23:25:55 +00:00
|
|
|
return;
|
2014-02-02 09:05:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
logger('statistics_json_cron: cron_start');
|
|
|
|
|
|
|
|
|
2014-01-27 23:42:48 +00:00
|
|
|
$users = q("SELECT profile.*, `user`.`login_date`, `lastitem`.`lastitem_date`
|
2014-01-27 23:26:17 +00:00
|
|
|
FROM (SELECT MAX(`item`.`changed`) as `lastitem_date`, `item`.`uid`
|
|
|
|
FROM `item`
|
|
|
|
WHERE `item`.`type` = 'wall'
|
|
|
|
GROUP BY `item`.`uid`) AS `lastitem`
|
2014-01-27 23:42:48 +00:00
|
|
|
RIGHT OUTER JOIN `user` ON `user`.`uid` = `lastitem`.`uid`, `contact`, `profile`
|
2014-01-27 23:26:17 +00:00
|
|
|
WHERE
|
2014-01-27 23:42:48 +00:00
|
|
|
`user`.`uid` = `contact`.`uid` AND `profile`.`uid` = `user`.`uid`
|
|
|
|
AND `profile`.`is-default` AND (`profile`.`publish` OR `profile`.`net-publish`)
|
2014-01-27 23:26:17 +00:00
|
|
|
AND `user`.`verified` AND `contact`.`self`
|
2014-01-27 23:42:48 +00:00
|
|
|
AND NOT `user`.`blocked`
|
2014-01-27 23:26:17 +00:00
|
|
|
AND NOT `user`.`account_removed`
|
|
|
|
AND NOT `user`.`account_expired`");
|
|
|
|
|
2014-02-02 09:05:23 +00:00
|
|
|
if (is_array($users)) {
|
|
|
|
$total_users = count($users);
|
|
|
|
$active_users_halfyear = 0;
|
|
|
|
$active_users_monthly = 0;
|
2014-01-27 23:26:17 +00:00
|
|
|
|
|
|
|
$halfyear = time() - (180 * 24 * 60 * 60);
|
|
|
|
$month = time() - (30 * 24 * 60 * 60);
|
|
|
|
|
|
|
|
foreach ($users AS $user) {
|
|
|
|
if ((strtotime($user['login_date']) > $halfyear) OR
|
|
|
|
(strtotime($user['lastitem_date']) > $halfyear))
|
2014-02-02 09:05:23 +00:00
|
|
|
++$active_users_halfyear;
|
2014-01-27 23:26:17 +00:00
|
|
|
|
|
|
|
if ((strtotime($user['login_date']) > $month) OR
|
|
|
|
(strtotime($user['lastitem_date']) > $month))
|
2014-02-02 09:05:23 +00:00
|
|
|
++$active_users_monthly;
|
2014-01-27 23:26:17 +00:00
|
|
|
|
|
|
|
}
|
2014-02-02 09:05:23 +00:00
|
|
|
set_config('statistics_json','total_users', $total_users);
|
|
|
|
logger('statistics_json_cron: total_users: '.$total_users, LOGGER_DEBUG);
|
|
|
|
|
|
|
|
set_config('statistics_json','active_users_halfyear', $active_users_halfyear);
|
|
|
|
set_config('statistics_json','active_users_monthly', $active_users_monthly);
|
2014-01-27 23:26:17 +00:00
|
|
|
}
|
|
|
|
|
2015-02-01 09:31:24 +00:00
|
|
|
$posts = q("SELECT COUNT(*) AS local_posts FROM `item` WHERE `wall` AND `uid` != 0 AND `id` = `parent` AND left(body, 6) != '[share'");
|
2014-02-02 09:05:23 +00:00
|
|
|
|
2014-01-27 23:26:17 +00:00
|
|
|
if (!is_array($posts))
|
2014-02-02 09:05:23 +00:00
|
|
|
$local_posts = -1;
|
2014-01-27 23:26:17 +00:00
|
|
|
else
|
2014-02-02 09:05:23 +00:00
|
|
|
$local_posts = $posts[0]["local_posts"];
|
2014-01-27 23:26:17 +00:00
|
|
|
|
2014-02-02 09:05:23 +00:00
|
|
|
set_config('statistics_json','local_posts', $local_posts);
|
|
|
|
|
|
|
|
logger('statistics_json_cron: local_posts: '.$local_posts, LOGGER_DEBUG);
|
|
|
|
|
2014-02-05 23:23:08 +00:00
|
|
|
// Now trying to register
|
2014-12-22 22:12:23 +00:00
|
|
|
$url = "http://the-federation.info/register/".$a->get_hostname();
|
2014-02-05 23:23:08 +00:00
|
|
|
logger('statistics_json_cron: registering url: '.$url, LOGGER_DEBUG);
|
|
|
|
$ret = fetch_url($url);
|
|
|
|
logger('statistics_json_cron: registering answer: '.$ret, LOGGER_DEBUG);
|
|
|
|
|
2014-02-02 09:05:23 +00:00
|
|
|
logger('statistics_json_cron: cron_end');
|
|
|
|
set_config('statistics_json','last_calucation', time());
|
2014-01-27 23:26:17 +00:00
|
|
|
}
|