]> git.mxchange.org Git - friendica.git/blob - src/Model/Nodeinfo.php
Funkwhale context file moved
[friendica.git] / src / Model / Nodeinfo.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
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\Core\Config\Capability\IManageConfigValues;
26 use Friendica\Database\DBA;
27 use Friendica\DI;
28 use stdClass;
29
30 /**
31  * Model interaction for the nodeinfo
32  */
33 class Nodeinfo
34 {
35         /**
36          * Updates the info about the current node
37          *
38          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
39          */
40         public static function update()
41         {
42                 $config = DI::config();
43                 $logger = DI::logger();
44
45                 // If the addon 'statistics_json' is enabled then disable it and activate nodeinfo.
46                 if (Addon::isEnabled('statistics_json')) {
47                         $config->set('system', 'nodeinfo', true);
48                         Addon::uninstall('statistics_json');
49                 }
50
51                 if (empty($config->get('system', 'nodeinfo'))) {
52                         return;
53                 }
54
55                 $userStats = User::getStatistics();
56
57                 $config->set('nodeinfo', 'total_users', $userStats['total_users']);
58                 $config->set('nodeinfo', 'active_users_halfyear', $userStats['active_users_halfyear']);
59                 $config->set('nodeinfo', 'active_users_monthly', $userStats['active_users_monthly']);
60                 $config->set('nodeinfo', 'active_users_weekly', $userStats['active_users_weekly']);
61
62                 $logger->info('user statistics', $userStats);
63
64                 $posts = DBA::count('post-thread', ["EXISTS(SELECT `uri-id` FROM `post-user` WHERE NOT `deleted` AND `origin` AND `uri-id` = `post-thread`.`uri-id`)"]);
65                 $comments = DBA::count('post', ["NOT `deleted` AND `gravity` = ? AND EXISTS(SELECT `uri-id` FROM `post-user` WHERE `origin` AND `uri-id` = `post`.`uri-id`)", GRAVITY_COMMENT]);
66                 $config->set('nodeinfo', 'local_posts', $posts);
67                 $config->set('nodeinfo', 'local_comments', $comments);
68
69                 $logger->info('User actitivy', ['posts' => $posts, 'comments' => $comments]);
70         }
71
72         /**
73          * Return the supported services
74          *
75          * @return Object with supported services
76         */
77         public static function getUsage(bool $version2 = false)
78         {
79                 $config = DI::config();
80
81                 $usage = new stdClass();
82
83                 if (!empty($config->get('system', 'nodeinfo'))) {
84                         $usage->users = [
85                                 'total'          => intval($config->get('nodeinfo', 'total_users')),
86                                 'activeHalfyear' => intval($config->get('nodeinfo', 'active_users_halfyear')),
87                                 'activeMonth'    => intval($config->get('nodeinfo', 'active_users_monthly'))
88                         ];
89                         $usage->localPosts = intval($config->get('nodeinfo', 'local_posts'));
90                         $usage->localComments = intval($config->get('nodeinfo', 'local_comments'));
91
92                         if ($version2) {
93                                 $usage->users['activeWeek'] = intval($config->get('nodeinfo', 'active_users_weekly'));
94                         }
95                 }
96
97                 return $usage;
98         }
99
100         /**
101          * Return the supported services
102          *
103          * @return array with supported services
104         */
105         public static function getServices(): array
106         {
107                 $services = [
108                         'inbound'  => [],
109                         'outbound' => [],
110                 ];
111
112                 if (Addon::isEnabled('blogger')) {
113                         $services['outbound'][] = 'blogger';
114                 }
115                 if (Addon::isEnabled('dwpost')) {
116                         $services['outbound'][] = 'dreamwidth';
117                 }
118                 if (Addon::isEnabled('statusnet')) {
119                         $services['inbound'][] = 'gnusocial';
120                         $services['outbound'][] = 'gnusocial';
121                 }
122                 if (Addon::isEnabled('ijpost')) {
123                         $services['outbound'][] = 'insanejournal';
124                 }
125                 if (Addon::isEnabled('libertree')) {
126                         $services['outbound'][] = 'libertree';
127                 }
128                 if (Addon::isEnabled('buffer')) {
129                         $services['outbound'][] = 'linkedin';
130                 }
131                 if (Addon::isEnabled('ljpost')) {
132                         $services['outbound'][] = 'livejournal';
133                 }
134                 if (Addon::isEnabled('buffer')) {
135                         $services['outbound'][] = 'pinterest';
136                 }
137                 if (Addon::isEnabled('posterous')) {
138                         $services['outbound'][] = 'posterous';
139                 }
140                 if (Addon::isEnabled('pumpio')) {
141                         $services['inbound'][] = 'pumpio';
142                         $services['outbound'][] = 'pumpio';
143                 }
144
145                 $services['outbound'][] = 'smtp';
146
147                 if (Addon::isEnabled('tumblr')) {
148                         $services['outbound'][] = 'tumblr';
149                 }
150                 if (Addon::isEnabled('twitter') || Addon::isEnabled('buffer')) {
151                         $services['outbound'][] = 'twitter';
152                 }
153                 if (Addon::isEnabled('wppost')) {
154                         $services['outbound'][] = 'wordpress';
155                 }
156
157                 return $services;
158         }
159
160         /**
161          * Gathers organization information and returns it as an array
162          *
163          * @param IManageConfigValues $config Configuration instance
164          * @return array Organization information
165          */
166         public static function getOrganization(IManageConfigValues $config): array
167         {
168                 $organization = [
169                         'name' => null,
170                         'contact' => null,
171                         'account' => null
172                 ];
173
174                 if (!empty($config->get('config', 'admin_email'))) {
175                         $adminList = explode(',', str_replace(' ', '', $config->get('config', 'admin_email')));
176                         $organization['contact'] = $adminList[0];
177                         $administrator = User::getByEmail($adminList[0], ['username', 'nickname']);
178                         if (!empty($administrator)) {
179                                 $organization['name'] = $administrator['username'];
180                                 $organization['account'] = DI::baseUrl()->get() . '/profile/' . $administrator['nickname'];
181                         }
182                 }
183
184                 return $organization;
185         }
186 }