]> git.mxchange.org Git - friendica.git/blob - src/Model/Nodeinfo.php
File and category aren't using "term" anymore
[friendica.git] / src / Model / Nodeinfo.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Model;
23
24 use Friendica\Core\Addon;
25 use Friendica\Database\DBA;
26 use Friendica\DI;
27
28 /**
29  * Model interaction for the nodeinfo
30  */
31 class Nodeinfo
32 {
33         /**
34          * Updates the info about the current node
35          *
36          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
37          */
38         public static function update()
39         {
40                 $config = DI::config();
41                 $logger = DI::logger();
42
43                 // If the addon 'statistics_json' is enabled then disable it and activate nodeinfo.
44                 if (Addon::isEnabled('statistics_json')) {
45                         $config->set('system', 'nodeinfo', true);
46                         Addon::uninstall('statistics_json');
47                 }
48
49                 if (empty($config->get('system', 'nodeinfo'))) {
50                         return;
51                 }
52
53                 $userStats = User::getStatistics();
54
55                 $config->set('nodeinfo', 'total_users', $userStats['total_users']);
56                 $config->set('nodeinfo', 'active_users_halfyear', $userStats['active_users_halfyear']);
57                 $config->set('nodeinfo', 'active_users_monthly', $userStats['active_users_monthly']);
58
59                 $logger->debug('user statistics', $userStats);
60
61                 $items = DBA::p("SELECT COUNT(*) AS `total`, `gravity` FROM `item` WHERE `origin` AND NOT `deleted` AND `uid` != 0 AND `gravity` IN (?, ?) GROUP BY `gravity`",
62                         GRAVITY_PARENT, GRAVITY_COMMENT);
63                 while ($item = DBA::fetch($items)) {
64                         if ($item['gravity'] == GRAVITY_PARENT) {
65                                 $config->set('nodeinfo', 'local_posts', $item['total']);
66                         } elseif ($item['gravity'] == GRAVITY_COMMENT) {
67                                 $config->set('nodeinfo', 'local_comments', $item['total']);
68                         }
69                 }
70                 DBA::close($items);
71         }
72 }