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
|
2017-01-09 13:14:25 +01:00
|
|
|
*
|
2015-11-11 21:37:16 +01:00
|
|
|
* Documentation: http://nodeinfo.diaspora.software/schema.html
|
2015-08-10 21:33:57 +02:00
|
|
|
*/
|
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-04-30 06:01:26 +02:00
|
|
|
use Friendica\Core\Config;
|
2017-03-26 14:51:25 +02:00
|
|
|
|
2017-03-26 15:12:02 +02:00
|
|
|
require_once 'include/plugin.php';
|
2015-08-16 21:45:51 +02:00
|
|
|
|
2017-01-09 13:14:25 +01:00
|
|
|
function nodeinfo_wellknown(App $a) {
|
2017-03-26 14:51:25 +02:00
|
|
|
$nodeinfo = array('links' => array(array('rel' => 'http://nodeinfo.diaspora.software/ns/schema/1.0',
|
|
|
|
'href' => App::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;
|
|
|
|
}
|
|
|
|
|
2017-01-09 13:14:25 +01:00
|
|
|
function nodeinfo_init(App $a) {
|
2017-03-26 14:51:25 +02:00
|
|
|
if (!Config::get('system', 'nodeinfo')) {
|
2015-08-10 21:33:57 +02:00
|
|
|
http_status_exit(404);
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
2017-06-08 04:00:59 +02:00
|
|
|
if (($a->argc != 2) || ($a->argv[1] != '1.0')) {
|
2015-08-10 21:33:57 +02:00
|
|
|
http_status_exit(404);
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|
2017-06-08 04:00:59 +02:00
|
|
|
$smtp = (function_exists('imap_open') && !Config::get('system', 'imap_disabled') && !Config::get('system', 'dfrn_only'));
|
2015-08-10 21:33:57 +02:00
|
|
|
|
|
|
|
$nodeinfo = array();
|
2017-03-26 14:51:25 +02:00
|
|
|
$nodeinfo['version'] = '1.0';
|
|
|
|
$nodeinfo['software'] = array('name' => 'friendica', 'version' => FRIENDICA_VERSION.'-'.DB_UPDATE_VERSION);
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
$nodeinfo['protocols'] = array();
|
|
|
|
$nodeinfo['protocols']['inbound'] = array();
|
|
|
|
$nodeinfo['protocols']['outbound'] = array();
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
if (Config::get('system', 'diaspora_enabled')) {
|
|
|
|
$nodeinfo['protocols']['inbound'][] = 'diaspora';
|
|
|
|
$nodeinfo['protocols']['outbound'][] = 'diaspora';
|
2015-08-10 21:33:57 +02:00
|
|
|
}
|
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
$nodeinfo['protocols']['inbound'][] = 'friendica';
|
|
|
|
$nodeinfo['protocols']['outbound'][] = 'friendica';
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
if (!Config::get('system', 'ostatus_disabled')) {
|
|
|
|
$nodeinfo['protocols']['inbound'][] = 'gnusocial';
|
|
|
|
$nodeinfo['protocols']['outbound'][] = 'gnusocial';
|
2015-08-10 21:33:57 +02:00
|
|
|
}
|
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
$nodeinfo['services'] = array();
|
|
|
|
$nodeinfo['services']['inbound'] = array();
|
|
|
|
$nodeinfo['services']['outbound'] = array();
|
2015-08-24 07:47:42 +02:00
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
$nodeinfo['usage'] = array();
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
$nodeinfo['openRegistrations'] = ($a->config['register_policy'] != 0);
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
$nodeinfo['metadata'] = array('nodeName' => $a->config['sitename']);
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
if (Config::get('system', 'nodeinfo')) {
|
2015-08-11 00:37:27 +02:00
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
$nodeinfo['usage']['users'] = array('total' => (int)Config::get('nodeinfo', 'total_users'),
|
|
|
|
'activeHalfyear' => (int)Config::get('nodeinfo', 'active_users_halfyear'),
|
|
|
|
'activeMonth' => (int)Config::get('nodeinfo', 'active_users_monthly'));
|
|
|
|
$nodeinfo['usage']['localPosts'] = (int)Config::get('nodeinfo', 'local_posts');
|
|
|
|
$nodeinfo['usage']['localComments'] = (int)Config::get('nodeinfo', 'local_comments');
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
if (plugin_enabled('appnet')) {
|
|
|
|
$nodeinfo['services']['inbound'][] = 'appnet';
|
|
|
|
}
|
2017-06-08 04:00:59 +02:00
|
|
|
if (plugin_enabled('appnet') || plugin_enabled('buffer')) {
|
2017-03-26 14:51:25 +02:00
|
|
|
$nodeinfo['services']['outbound'][] = 'appnet';
|
|
|
|
}
|
|
|
|
if (plugin_enabled('blogger')) {
|
|
|
|
$nodeinfo['services']['outbound'][] = 'blogger';
|
|
|
|
}
|
|
|
|
if (plugin_enabled('dwpost')) {
|
|
|
|
$nodeinfo['services']['outbound'][] = 'dreamwidth';
|
|
|
|
}
|
2017-06-08 04:00:59 +02:00
|
|
|
if (plugin_enabled('fbpost') || plugin_enabled('buffer')) {
|
2017-03-26 14:51:25 +02:00
|
|
|
$nodeinfo['services']['outbound'][] = 'facebook';
|
|
|
|
}
|
|
|
|
if (plugin_enabled('statusnet')) {
|
|
|
|
$nodeinfo['services']['inbound'][] = 'gnusocial';
|
|
|
|
$nodeinfo['services']['outbound'][] = 'gnusocial';
|
|
|
|
}
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2017-06-08 04:00:59 +02:00
|
|
|
if (plugin_enabled('gpluspost') || plugin_enabled('buffer')) {
|
2017-03-26 14:51:25 +02:00
|
|
|
$nodeinfo['services']['outbound'][] = 'google';
|
|
|
|
}
|
|
|
|
if (plugin_enabled('ijpost')) {
|
|
|
|
$nodeinfo['services']['outbound'][] = 'insanejournal';
|
|
|
|
}
|
|
|
|
if (plugin_enabled('libertree')) {
|
|
|
|
$nodeinfo['services']['outbound'][] = 'libertree';
|
|
|
|
}
|
|
|
|
if (plugin_enabled('buffer')) {
|
|
|
|
$nodeinfo['services']['outbound'][] = 'linkedin';
|
|
|
|
}
|
|
|
|
if (plugin_enabled('ljpost')) {
|
|
|
|
$nodeinfo['services']['outbound'][] = 'livejournal';
|
|
|
|
}
|
|
|
|
if (plugin_enabled('buffer')) {
|
|
|
|
$nodeinfo['services']['outbound'][] = 'pinterest';
|
|
|
|
}
|
|
|
|
if (plugin_enabled('posterous')) {
|
|
|
|
$nodeinfo['services']['outbound'][] = 'posterous';
|
|
|
|
}
|
|
|
|
if (plugin_enabled('pumpio')) {
|
|
|
|
$nodeinfo['services']['inbound'][] = 'pumpio';
|
|
|
|
$nodeinfo['services']['outbound'][] = 'pumpio';
|
|
|
|
}
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
if ($smtp) {
|
|
|
|
$nodeinfo['services']['outbound'][] = 'smtp';
|
|
|
|
}
|
|
|
|
if (plugin_enabled('tumblr')) {
|
|
|
|
$nodeinfo['services']['outbound'][] = 'tumblr';
|
|
|
|
}
|
2017-06-08 04:00:59 +02:00
|
|
|
if (plugin_enabled('twitter') || plugin_enabled('buffer')) {
|
2017-03-26 14:51:25 +02:00
|
|
|
$nodeinfo['services']['outbound'][] = 'twitter';
|
|
|
|
}
|
|
|
|
if (plugin_enabled('wppost')) {
|
|
|
|
$nodeinfo['services']['outbound'][] = 'wordpress';
|
|
|
|
}
|
|
|
|
$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-11 00:37:27 +02:00
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
$nodeinfo['metadata']['services'] = $nodeinfo['services'];
|
2015-08-11 00:37:27 +02:00
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
if (plugin_enabled('twitter')) {
|
|
|
|
$nodeinfo['metadata']['services']['inbound'][] = 'twitter';
|
|
|
|
}
|
2015-08-24 07:47:42 +02:00
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
|
2016-02-07 15:11:34 +01:00
|
|
|
|
|
|
|
|
2015-08-10 21:33:57 +02:00
|
|
|
function nodeinfo_cron() {
|
2015-08-11 23:50:31 +02:00
|
|
|
|
|
|
|
$a = get_app();
|
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
// If the plugin 'statistics_json' is enabled then disable it and actrivate nodeinfo.
|
|
|
|
if (plugin_enabled('statistics_json')) {
|
|
|
|
Config::set('system', 'nodeinfo', true);
|
2015-08-16 21:45:51 +02:00
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
$plugin = 'statistics_json';
|
|
|
|
$plugins = Config::get('system', 'addon');
|
2015-08-16 21:45:51 +02:00
|
|
|
$plugins_arr = array();
|
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
if ($plugins) {
|
|
|
|
$plugins_arr = explode(',',str_replace(' ', '',$plugins));
|
2015-08-16 21:45:51 +02:00
|
|
|
|
|
|
|
$idx = array_search($plugin, $plugins_arr);
|
2017-03-26 14:51:25 +02:00
|
|
|
if ($idx !== false) {
|
2015-08-16 21:45:51 +02:00
|
|
|
unset($plugins_arr[$idx]);
|
|
|
|
uninstall_plugin($plugin);
|
2017-03-26 14:51:25 +02:00
|
|
|
Config::set('system', 'addon', implode(', ',$plugins_arr));
|
2015-08-16 21:45:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
if (!Config::get('system', 'nodeinfo')) {
|
2015-08-10 21:33:57 +02:00
|
|
|
return;
|
2017-03-26 14:51:25 +02:00
|
|
|
}
|
|
|
|
$last = Config::get('nodeinfo', 'last_calucation');
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
if ($last) {
|
2015-08-10 21:33:57 +02:00
|
|
|
// Calculate every 24 hours
|
|
|
|
$next = $last + (24 * 60 * 60);
|
2017-03-26 14:51:25 +02:00
|
|
|
if ($next > time()) {
|
|
|
|
logger('calculation intervall not reached');
|
2015-08-10 21:33:57 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2017-03-26 14:51:25 +02:00
|
|
|
logger('cron_start');
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2016-10-14 07:45:32 +02:00
|
|
|
$users = qu("SELECT `user`.`uid`, `user`.`login_date`, `contact`.`last-item`
|
2016-10-04 05:51:13 +02:00
|
|
|
FROM `user`
|
|
|
|
INNER JOIN `profile` ON `profile`.`uid` = `user`.`uid` AND `profile`.`is-default`
|
2016-10-14 07:45:32 +02:00
|
|
|
INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid` AND `contact`.`self`
|
2016-10-04 05:51:13 +02:00
|
|
|
WHERE (`profile`.`publish` OR `profile`.`net-publish`) AND `user`.`verified`
|
|
|
|
AND NOT `user`.`blocked` AND NOT `user`.`account_removed`
|
|
|
|
AND NOT `user`.`account_expired`");
|
2015-08-10 21:33:57 +02:00
|
|
|
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) {
|
2017-06-08 04:00:59 +02:00
|
|
|
if ((strtotime($user['login_date']) > $halfyear) ||
|
2017-03-26 14:51:25 +02:00
|
|
|
(strtotime($user['last-item']) > $halfyear)) {
|
2015-08-10 21:33:57 +02:00
|
|
|
++$active_users_halfyear;
|
2017-03-26 14:51:25 +02:00
|
|
|
}
|
2017-06-08 04:00:59 +02:00
|
|
|
if ((strtotime($user['login_date']) > $month) ||
|
2017-03-26 14:51:25 +02:00
|
|
|
(strtotime($user['last-item']) > $month)) {
|
2015-08-10 21:33:57 +02:00
|
|
|
++$active_users_monthly;
|
2017-03-26 14:51:25 +02:00
|
|
|
}
|
2015-08-10 21:33:57 +02:00
|
|
|
}
|
2017-03-26 14:51:25 +02:00
|
|
|
Config::set('nodeinfo', 'total_users', $total_users);
|
|
|
|
logger('total_users: '.$total_users, LOGGER_DEBUG);
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
Config::set('nodeinfo', 'active_users_halfyear', $active_users_halfyear);
|
|
|
|
Config::set('nodeinfo', 'active_users_monthly', $active_users_monthly);
|
2015-08-10 21:33:57 +02:00
|
|
|
}
|
|
|
|
|
2016-12-10 13:28:49 +01:00
|
|
|
$posts = qu("SELECT COUNT(*) AS local_posts FROM `thread` WHERE `thread`.`wall` AND `thread`.`uid` != 0");
|
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
if (!is_array($posts)) {
|
2015-08-10 21:33:57 +02:00
|
|
|
$local_posts = -1;
|
2017-03-26 14:51:25 +02:00
|
|
|
} else {
|
|
|
|
$local_posts = $posts[0]['local_posts'];
|
|
|
|
}
|
|
|
|
Config::set('nodeinfo', 'local_posts', $local_posts);
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
logger('local_posts: '.$local_posts, LOGGER_DEBUG);
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2017-02-04 17:16:15 +01:00
|
|
|
$posts = qu("SELECT COUNT(*) FROM `contact`
|
|
|
|
INNER JOIN `item` ON `item`.`contact-id` = `contact`.`id` AND `item`.`uid` = `contact`.`uid` AND
|
|
|
|
`item`.`id` != `item`.`parent` AND `item`.`network` IN ('%s', '%s', '%s')
|
|
|
|
WHERE `contact`.`self`",
|
2015-08-10 21:33:57 +02:00
|
|
|
dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_DFRN));
|
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
if (!is_array($posts)) {
|
2015-08-10 21:33:57 +02:00
|
|
|
$local_comments = -1;
|
2017-03-26 14:51:25 +02:00
|
|
|
} else {
|
|
|
|
$local_comments = $posts[0]['local_comments'];
|
|
|
|
}
|
|
|
|
Config::set('nodeinfo', 'local_comments', $local_comments);
|
2015-08-10 21:33:57 +02:00
|
|
|
|
|
|
|
// Now trying to register
|
2017-03-26 14:51:25 +02:00
|
|
|
$url = 'http://the-federation.info/register/'.$a->get_hostname();
|
2015-08-11 10:23:33 +02:00
|
|
|
logger('registering url: '.$url, LOGGER_DEBUG);
|
|
|
|
$ret = fetch_url($url);
|
|
|
|
logger('registering answer: '.$ret, LOGGER_DEBUG);
|
2015-08-10 21:33:57 +02:00
|
|
|
|
2017-03-26 14:51:25 +02:00
|
|
|
logger('cron_end');
|
|
|
|
Config::set('nodeinfo', 'last_calucation', time());
|
2015-08-10 21:33:57 +02:00
|
|
|
}
|