]> git.mxchange.org Git - friendica.git/blob - src/Module/Statistics.php
Prevent template generation in media/photo/upload output
[friendica.git] / src / Module / Statistics.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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\Module;
23
24 use Friendica\App;
25 use Friendica\BaseModule;
26 use Friendica\Core\Addon;
27 use Friendica\Core\Config\Capability\IManageConfigValues;
28 use Friendica\Core\KeyValueStorage\Capabilities\IManageKeyValuePairs;
29 use Friendica\Core\L10n;
30 use Friendica\Core\System;
31 use Friendica\Network\HTTPException\NotFoundException;
32 use Friendica\Util\Profiler;
33 use Psr\Log\LoggerInterface;
34
35 class Statistics extends BaseModule
36 {
37         /** @var IManageConfigValues */
38         protected $config;
39         /** @var IManageKeyValuePairs */
40         protected $keyValue;
41         
42         public function __construct(L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, IManageConfigValues $config, IManageKeyValuePairs $keyValue, Response $response, array $server, array $parameters = [])
43         {
44                 parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
45
46                 $this->config   = $config;
47                 $this->keyValue = $keyValue;
48                 if (!$this->config->get("system", "nodeinfo")) {
49                         throw new NotFoundException();
50                 }
51         }
52
53         protected function rawContent(array $request = [])
54         {
55                 $registration_open =
56                         intval($this->config->get('config', 'register_policy')) !== Register::CLOSED
57                         && !$this->config->get('config', 'invitation_only');
58
59                 /// @todo mark the "service" addons and load them dynamically here
60                 $services = [
61                         'appnet'      => Addon::isEnabled('appnet'),
62                         'buffer'      => Addon::isEnabled('buffer'),
63                         'dreamwidth'  => Addon::isEnabled('dreamwidth'),
64                         'gnusocial'   => Addon::isEnabled('gnusocial'),
65                         'libertree'   => Addon::isEnabled('libertree'),
66                         'livejournal' => Addon::isEnabled('livejournal'),
67                         'pumpio'      => Addon::isEnabled('pumpio'),
68                         'twitter'     => Addon::isEnabled('twitter'),
69                         'tumblr'      => Addon::isEnabled('tumblr'),
70                         'wordpress'   => Addon::isEnabled('wordpress'),
71                 ];
72
73                 $statistics = array_merge([
74                         'name'                  => $this->config->get('config', 'sitename'),
75                         'network'               => App::PLATFORM,
76                         'version'               => App::VERSION . '-' . DB_UPDATE_VERSION,
77                         'registrations_open'    => $registration_open,
78                         'total_users'           => $this->keyValue->get('nodeinfo_total_users'),
79                         'active_users_halfyear' => $this->keyValue->get('nodeinfo_active_users_halfyear'),
80                         'active_users_monthly'  => $this->keyValue->get('nodeinfo_active_users_monthly'),
81                         'local_posts'           => $this->keyValue->get('nodeinfo_local_posts'),
82                         'services'              => $services,
83                 ], $services);
84
85                 $this->logger->debug("statistics.", ['statistics' => $statistics]);
86                 System::jsonExit($statistics);
87         }
88 }