2015-08-10 21:33:57 +02:00
|
|
|
<?php
|
2015-11-11 22:41:44 +01:00
|
|
|
/**
|
2015-11-11 21:37:16 +01:00
|
|
|
* @file mod/nodeinfo.php
|
|
|
|
*
|
|
|
|
* Documentation: http://nodeinfo.diaspora.software/schema.html
|
2015-08-10 21:33:57 +02:00
|
|
|
*/
|
|
|
|
|
2015-08-16 21:45:51 +02:00
|
|
|
require_once("include/plugin.php");
|
|
|
|
|
2015-08-10 21:33:57 +02:00
|
|
|
function nodeinfo_wellknown(&$a) {
|
|
|
|
if (!get_config("system", "nodeinfo")) {
|
|
|
|
http_status_exit(404);
|
|
|
|
killme();
|
|
|
|
}
|
2015-09-05 04:33:18 +02:00
|
|
|
$nodeinfo = array("links" => array(array("rel" => "http://nodeinfo.diaspora.software/ns/schema/1.0",
|
|
|
|
"href" => $a->get_baseurl()."/nodeinfo/1.0")));
|
2015-08-10 21:33:57 +02:00
|
|
|
|
|
|
|
header('Content-type: application/json; charset=utf-8');
|
2015-08-10 21:54:57 +02:00
|
|
|
echo json_encode($nodeinfo, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES);
|
2015-08-10 21:33:57 +02:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
function nodeinfo_init(&$a){
|
|
|
|
if (!get_config("system", "nodeinfo")) {
|
|
|
|
http_status_exit(404);
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (($a->argc != 2) OR ($a->argv[1] != "1.0")) {
|
|
|
|
http_status_exit(404);
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
|
|
|
$smtp = (function_exists("imap_open") AND !get_config("system","imap_disabled") AND !get_config("system","dfrn_only"));
|
|
|
|
|
|
|
|
$nodeinfo = array();
|
|
|
|
$nodeinfo["version"] = "1.0";
|
|
|
|
$nodeinfo["software"] = array("name" => "friendica", "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION);
|
|
|
|
|
|
|
|
$nodeinfo["protocols"] = array();
|
|
|
|
$nodeinfo["protocols"]["inbound"] = array();
|
|
|
|
$nodeinfo["protocols"]["outbound"] = array();
|
|
|
|
|
|
|
|
if (get_config("system","diaspora_enabled")) {
|
|
|
|
$nodeinfo["protocols"]["inbound"][] = "diaspora";
|
|
|
|
$nodeinfo["protocols"]["outbound"][] = "diaspora";
|
|
|
|
}
|
|
|
|
|
|
|
|
$nodeinfo["protocols"]["inbound"][] = "friendica";
|
|
|
|
$nodeinfo["protocols"]["outbound"][] = "friendica";
|
|
|
|
|
|
|
|
if (!get_config("system","ostatus_disabled")) {
|
|
|
|
$nodeinfo["protocols"]["inbound"][] = "gnusocial";
|
|
|
|
$nodeinfo["protocols"]["outbound"][] = "gnusocial";
|
|
|
|
}
|
|
|
|
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["services"] = array();
|
|
|
|
$nodeinfo["services"]["inbound"] = array();
|
|
|
|
$nodeinfo["services"]["outbound"] = array();
|
2015-08-11 00:37:27 +02:00
|
|
|
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["openRegistrations"] = ($a->config['register_policy'] != 0);
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["usage"] = array();
|
|
|
|
$nodeinfo["usage"]["users"] = array("total" => (int)get_config("nodeinfo","total_users"),
|
|
|
|
"activeHalfyear" => (int)get_config("nodeinfo","active_users_halfyear"),
|
|
|
|
"activeMonth" => (int)get_config("nodeinfo","active_users_monthly"));
|
|
|
|
$nodeinfo["usage"]["localPosts"] = (int)get_config("nodeinfo","local_posts");
|
|
|
|
$nodeinfo["usage"]["localComments"] = (int)get_config("nodeinfo","local_comments");
|
|
|
|
|
|
|
|
$nodeinfo["metadata"] = array("nodeName" => $a->config["sitename"]);
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2015-11-11 21:31:26 +01:00
|
|
|
if (plugin_enabled("appnet"))
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["services"]["inbound"][] = "appnet";
|
2015-08-24 08:18:17 +02:00
|
|
|
|
2015-11-11 21:31:26 +01:00
|
|
|
if (plugin_enabled("appnet") OR plugin_enabled("buffer"))
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["services"]["outbound"][] = "appnet";
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2015-11-11 21:31:26 +01:00
|
|
|
if (plugin_enabled("blogger"))
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["services"]["outbound"][] = "blogger";
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2015-11-11 21:31:26 +01:00
|
|
|
if (plugin_enabled("dwpost"))
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["services"]["outbound"][] = "dreamwidth";
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2015-11-11 21:31:26 +01:00
|
|
|
if (plugin_enabled("fbpost") OR plugin_enabled("buffer"))
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["services"]["outbound"][] = "facebook";
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2015-11-11 21:31:26 +01:00
|
|
|
if (plugin_enabled("statusnet")) {
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["services"]["inbound"][] = "gnusocial";
|
|
|
|
$nodeinfo["services"]["outbound"][] = "gnusocial";
|
|
|
|
}
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2015-11-11 21:31:26 +01:00
|
|
|
if (plugin_enabled("gpluspost") OR plugin_enabled("buffer"))
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["services"]["outbound"][] = "google";
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2015-11-11 21:31:26 +01:00
|
|
|
if (plugin_enabled("ijpost"))
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["services"]["outbound"][] = "insanejournal";
|
2015-08-11 00:37:27 +02:00
|
|
|
|
2015-11-11 21:31:26 +01:00
|
|
|
if (plugin_enabled("libertree"))
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["services"]["outbound"][] = "libertree";
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2015-11-11 21:31:26 +01:00
|
|
|
if (plugin_enabled("buffer"))
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["services"]["outbound"][] = "linkedin";
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2015-11-11 21:31:26 +01:00
|
|
|
if (plugin_enabled("ljpost"))
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["services"]["outbound"][] = "livejournal";
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2015-11-11 21:31:26 +01:00
|
|
|
if (plugin_enabled("buffer"))
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["services"]["outbound"][] = "pinterest";
|
2015-08-11 00:37:27 +02:00
|
|
|
|
2015-11-11 21:31:26 +01:00
|
|
|
if (plugin_enabled("posterous"))
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["services"]["outbound"][] = "posterous";
|
2015-08-11 00:37:27 +02:00
|
|
|
|
2015-11-11 21:31:26 +01:00
|
|
|
if (plugin_enabled("pumpio")) {
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["services"]["inbound"][] = "pumpio";
|
|
|
|
$nodeinfo["services"]["outbound"][] = "pumpio";
|
|
|
|
}
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2015-08-11 00:37:27 +02:00
|
|
|
// redmatrix
|
|
|
|
|
2015-08-10 21:33:57 +02:00
|
|
|
if ($smtp)
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["services"]["outbound"][] = "smtp";
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2015-11-11 21:31:26 +01:00
|
|
|
if (plugin_enabled("tumblr"))
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["services"]["outbound"][] = "tumblr";
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2015-11-11 21:31:26 +01:00
|
|
|
if (plugin_enabled("twitter") OR plugin_enabled("buffer"))
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["services"]["outbound"][] = "twitter";
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2015-11-11 21:31:26 +01:00
|
|
|
if (plugin_enabled("wppost"))
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["services"]["outbound"][] = "wordpress";
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2015-08-24 08:15:34 +02:00
|
|
|
$nodeinfo["metadata"]["protocols"] = $nodeinfo["protocols"];
|
|
|
|
$nodeinfo["metadata"]["protocols"]["outbound"][] = "atom1.0";
|
|
|
|
$nodeinfo["metadata"]["protocols"]["inbound"][] = "atom1.0";
|
|
|
|
$nodeinfo["metadata"]["protocols"]["inbound"][] = "rss2.0";
|
|
|
|
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["metadata"]["services"] = $nodeinfo["services"];
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2015-11-11 21:31:26 +01:00
|
|
|
if (plugin_enabled("twitter"))
|
2015-08-24 07:47:42 +02:00
|
|
|
$nodeinfo["metadata"]["services"]["inbound"][] = "twitter";
|
2015-08-10 21:33:57 +02:00
|
|
|
|
|
|
|
header('Content-type: application/json; charset=utf-8');
|
2015-08-10 21:54:57 +02:00
|
|
|
echo json_encode($nodeinfo, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES);
|
2015-08-10 21:33:57 +02:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2015-11-11 21:31:26 +01:00
|
|
|
|
2015-08-10 21:33:57 +02:00
|
|
|
|
|
|
|
function nodeinfo_cron() {
|
2015-08-11 23:50:31 +02:00
|
|
|
|
|
|
|
$a = get_app();
|
|
|
|
|
2015-08-16 21:45:51 +02:00
|
|
|
// If the plugin "statistics_json" is enabled then disable it and actrivate nodeinfo.
|
2015-11-11 21:31:26 +01:00
|
|
|
if (plugin_enabled("statistics_json")) {
|
2015-08-16 21:45:51 +02:00
|
|
|
set_config("system", "nodeinfo", true);
|
|
|
|
|
|
|
|
$plugin = "statistics_json";
|
|
|
|
$plugins = get_config("system","addon");
|
|
|
|
$plugins_arr = array();
|
|
|
|
|
|
|
|
if($plugins) {
|
|
|
|
$plugins_arr = explode(",",str_replace(" ", "",$plugins));
|
|
|
|
|
|
|
|
$idx = array_search($plugin, $plugins_arr);
|
|
|
|
if ($idx !== false){
|
|
|
|
unset($plugins_arr[$idx]);
|
|
|
|
uninstall_plugin($plugin);
|
|
|
|
set_config("system","addon", implode(", ",$plugins_arr));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-10 21:33:57 +02:00
|
|
|
if (!get_config("system", "nodeinfo"))
|
|
|
|
return;
|
|
|
|
|
|
|
|
$last = get_config('nodeinfo','last_calucation');
|
|
|
|
|
|
|
|
if($last) {
|
|
|
|
// Calculate every 24 hours
|
|
|
|
$next = $last + (24 * 60 * 60);
|
|
|
|
if($next > time()) {
|
|
|
|
logger("calculation intervall not reached");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
logger("cron_start");
|
|
|
|
|
|
|
|
$users = q("SELECT profile.*, `user`.`login_date`, `lastitem`.`lastitem_date`
|
|
|
|
FROM (SELECT MAX(`item`.`changed`) as `lastitem_date`, `item`.`uid`
|
|
|
|
FROM `item`
|
|
|
|
WHERE `item`.`type` = 'wall'
|
|
|
|
GROUP BY `item`.`uid`) AS `lastitem`
|
|
|
|
RIGHT OUTER JOIN `user` ON `user`.`uid` = `lastitem`.`uid`, `contact`, `profile`
|
|
|
|
WHERE
|
|
|
|
`user`.`uid` = `contact`.`uid` AND `profile`.`uid` = `user`.`uid`
|
|
|
|
AND `profile`.`is-default` AND (`profile`.`publish` OR `profile`.`net-publish`)
|
|
|
|
AND `user`.`verified` AND `contact`.`self`
|
|
|
|
AND NOT `user`.`blocked`
|
|
|
|
AND NOT `user`.`account_removed`
|
|
|
|
AND NOT `user`.`account_expired`");
|
|
|
|
|
|
|
|
if (is_array($users)) {
|
|
|
|
$total_users = count($users);
|
|
|
|
$active_users_halfyear = 0;
|
|
|
|
$active_users_monthly = 0;
|
|
|
|
|
|
|
|
$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))
|
|
|
|
++$active_users_halfyear;
|
|
|
|
|
|
|
|
if ((strtotime($user['login_date']) > $month) OR
|
|
|
|
(strtotime($user['lastitem_date']) > $month))
|
|
|
|
++$active_users_monthly;
|
|
|
|
|
|
|
|
}
|
|
|
|
set_config('nodeinfo','total_users', $total_users);
|
|
|
|
logger("total_users: ".$total_users, LOGGER_DEBUG);
|
|
|
|
|
|
|
|
set_config('nodeinfo','active_users_halfyear', $active_users_halfyear);
|
|
|
|
set_config('nodeinfo','active_users_monthly', $active_users_monthly);
|
|
|
|
}
|
|
|
|
|
|
|
|
//$posts = q("SELECT COUNT(*) AS local_posts FROM `item` WHERE `wall` AND `uid` != 0 AND `id` = `parent` AND left(body, 6) != '[share'");
|
|
|
|
$posts = q("SELECT COUNT(*) AS `local_posts` FROM `item`
|
|
|
|
INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
|
|
|
|
WHERE `contact`.`self` and `item`.`id` = `item`.`parent` AND left(body, 6) != '[share' AND `item`.`network` IN ('%s', '%s', '%s')",
|
|
|
|
dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_DFRN));
|
|
|
|
|
|
|
|
if (!is_array($posts))
|
|
|
|
$local_posts = -1;
|
|
|
|
else
|
|
|
|
$local_posts = $posts[0]["local_posts"];
|
|
|
|
|
|
|
|
set_config('nodeinfo','local_posts', $local_posts);
|
|
|
|
|
|
|
|
logger("local_posts: ".$local_posts, LOGGER_DEBUG);
|
|
|
|
|
|
|
|
$posts = q("SELECT COUNT(*) AS `local_comments` FROM `item`
|
|
|
|
INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
|
|
|
|
WHERE `contact`.`self` and `item`.`id` != `item`.`parent` AND `item`.`network` IN ('%s', '%s', '%s')",
|
|
|
|
dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_DFRN));
|
|
|
|
|
|
|
|
if (!is_array($posts))
|
|
|
|
$local_comments = -1;
|
|
|
|
else
|
|
|
|
$local_comments = $posts[0]["local_comments"];
|
|
|
|
|
|
|
|
set_config('nodeinfo','local_comments', $local_comments);
|
|
|
|
|
|
|
|
// Now trying to register
|
2015-08-11 10:23:33 +02:00
|
|
|
$url = "http://the-federation.info/register/".$a->get_hostname();
|
|
|
|
logger('registering url: '.$url, LOGGER_DEBUG);
|
|
|
|
$ret = fetch_url($url);
|
|
|
|
logger('registering answer: '.$ret, LOGGER_DEBUG);
|
2015-08-10 21:33:57 +02:00
|
|
|
|
|
|
|
logger("cron_end");
|
|
|
|
set_config('nodeinfo','last_calucation', time());
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|