X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fnodeinfo.php;h=ca4a622fbb8e7afd78d334c99960e2c065e5155f;hb=826965f6df87dd8a98697becb9a801ea504c4252;hp=bcaf8e7a931cc590853722580b6dbc31a31a4092;hpb=610f017b28edc37212df6385126993f2dfc41f59;p=friendica.git diff --git a/mod/nodeinfo.php b/mod/nodeinfo.php index bcaf8e7a93..ca4a622fbb 100644 --- a/mod/nodeinfo.php +++ b/mod/nodeinfo.php @@ -7,8 +7,12 @@ use Friendica\App; use Friendica\Core\Addon; -use Friendica\Core\System; use Friendica\Core\Config; +use Friendica\Core\Logger; +use Friendica\Core\System; +use Friendica\Database\DBA; +use Friendica\Util\Network; +require_once 'include/dba.php'; function nodeinfo_wellknown(App $a) { $nodeinfo = ['links' => [['rel' => 'http://nodeinfo.diaspora.software/ns/schema/1.0', @@ -21,12 +25,12 @@ function nodeinfo_wellknown(App $a) { function nodeinfo_init(App $a) { if (!Config::get('system', 'nodeinfo')) { - http_status_exit(404); + System::httpExit(404); killme(); } if (($a->argc != 2) || ($a->argv[1] != '1.0')) { - http_status_exit(404); + System::httpExit(404); killme(); } @@ -59,9 +63,9 @@ function nodeinfo_init(App $a) { $nodeinfo['usage'] = []; - $nodeinfo['openRegistrations'] = ($a->config['register_policy'] != 0); + $nodeinfo['openRegistrations'] = intval(Config::get('config', 'register_policy')) !== REGISTER_CLOSED; - $nodeinfo['metadata'] = ['nodeName' => $a->config['sitename']]; + $nodeinfo['metadata'] = ['nodeName' => Config::get('config', 'sitename')]; if (Config::get('system', 'nodeinfo')) { @@ -71,21 +75,12 @@ function nodeinfo_init(App $a) { $nodeinfo['usage']['localPosts'] = (int)Config::get('nodeinfo', 'local_posts'); $nodeinfo['usage']['localComments'] = (int)Config::get('nodeinfo', 'local_comments'); - if (Addon::isEnabled('appnet')) { - $nodeinfo['services']['inbound'][] = 'appnet'; - } - if (Addon::isEnabled('appnet') || Addon::isEnabled('buffer')) { - $nodeinfo['services']['outbound'][] = 'appnet'; - } if (Addon::isEnabled('blogger')) { $nodeinfo['services']['outbound'][] = 'blogger'; } if (Addon::isEnabled('dwpost')) { $nodeinfo['services']['outbound'][] = 'dreamwidth'; } - if (Addon::isEnabled('fbpost') || Addon::isEnabled('buffer')) { - $nodeinfo['services']['outbound'][] = 'facebook'; - } if (Addon::isEnabled('statusnet')) { $nodeinfo['services']['inbound'][] = 'gnusocial'; $nodeinfo['services']['outbound'][] = 'gnusocial'; @@ -139,6 +134,8 @@ function nodeinfo_init(App $a) { if (Addon::isEnabled('twitter')) { $nodeinfo['metadata']['services']['inbound'][] = 'twitter'; } + + $nodeinfo['metadata']['explicitContent'] = Config::get('system', 'explicit_content', false) == true; } header('Content-type: application/json; charset=utf-8'); @@ -152,7 +149,7 @@ function nodeinfo_cron() { $a = get_app(); - // If the addon 'statistics_json' is enabled then disable it and actrivate nodeinfo. + // If the addon 'statistics_json' is enabled then disable it and activate nodeinfo. if (Addon::isEnabled('statistics_json')) { Config::set('system', 'nodeinfo', true); @@ -175,17 +172,8 @@ function nodeinfo_cron() { if (!Config::get('system', 'nodeinfo')) { return; } - $last = Config::get('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'); + Logger::log('cron_start'); $users = q("SELECT `user`.`uid`, `user`.`login_date`, `contact`.`last-item` FROM `user` @@ -195,60 +183,43 @@ function nodeinfo_cron() { 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) || - (strtotime($user['last-item']) > $halfyear)) { - ++$active_users_halfyear; - } - if ((strtotime($user['login_date']) > $month) || - (strtotime($user['last-item']) > $month)) { - ++$active_users_monthly; - } - } - Config::set('nodeinfo', 'total_users', $total_users); - logger('total_users: '.$total_users, LOGGER_DEBUG); + $total_users = count($users); + $active_users_halfyear = 0; + $active_users_monthly = 0; - Config::set('nodeinfo', 'active_users_halfyear', $active_users_halfyear); - Config::set('nodeinfo', 'active_users_monthly', $active_users_monthly); - } + $halfyear = time() - (180 * 24 * 60 * 60); + $month = time() - (30 * 24 * 60 * 60); - $posts = q("SELECT COUNT(*) AS `local_posts` FROM `thread` WHERE `thread`.`wall` AND `thread`.`uid` != 0"); + foreach ($users AS $user) { + if ((strtotime($user['login_date']) > $halfyear) || + (strtotime($user['last-item']) > $halfyear)) { + ++$active_users_halfyear; + } + if ((strtotime($user['login_date']) > $month) || + (strtotime($user['last-item']) > $month)) { + ++$active_users_monthly; + } + } + Config::set('nodeinfo', 'total_users', $total_users); + Config::set('nodeinfo', 'active_users_halfyear', $active_users_halfyear); + Config::set('nodeinfo', 'active_users_monthly', $active_users_monthly); - if (!is_array($posts)) { - $local_posts = -1; - } else { - $local_posts = $posts[0]['local_posts']; + Logger::log('total_users: ' . $total_users . '/' . $active_users_halfyear. '/' . $active_users_monthly, Logger::DEBUG); } - Config::set('nodeinfo', 'local_posts', $local_posts); - - logger('local_posts: '.$local_posts, LOGGER_DEBUG); - $posts = q("SELECT COUNT(*) AS `local_comments` 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`", - dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_DFRN)); + $local_posts = DBA::count('thread', ["`wall` AND NOT `deleted` AND `uid` != 0"]); + Config::set('nodeinfo', 'local_posts', $local_posts); + Logger::log('local_posts: ' . $local_posts, Logger::DEBUG); - if (!is_array($posts)) { - $local_comments = -1; - } else { - $local_comments = $posts[0]['local_comments']; - } + $local_comments = DBA::count('item', ["`origin` AND `id` != `parent` AND NOT `deleted` AND `uid` != 0"]); Config::set('nodeinfo', 'local_comments', $local_comments); + Logger::log('local_comments: ' . $local_comments, Logger::DEBUG); // Now trying to register - $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); + $url = 'http://the-federation.info/register/'.$a->getHostName(); + Logger::log('registering url: '.$url, Logger::DEBUG); + $ret = Network::fetchUrl($url); + Logger::log('registering answer: '.$ret, Logger::DEBUG); - logger('cron_end'); - Config::set('nodeinfo', 'last_calucation', time()); + Logger::log('cron_end'); }