]> git.mxchange.org Git - friendica.git/blob - src/Module/Friendica.php
Several performance improvements
[friendica.git] / src / Module / Friendica.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\Module;
23
24 use Friendica\BaseModule;
25 use Friendica\Core\Addon;
26 use Friendica\Core\Hook;
27 use Friendica\Core\Renderer;
28 use Friendica\Core\System;
29 use Friendica\Database\PostUpdate;
30 use Friendica\DI;
31 use Friendica\Model\User;
32 use Friendica\Network\HTTPException;
33 use Friendica\Protocol\ActivityPub;
34
35 /**
36  * Prints information about the current node
37  * Either in human readable form or in JSON
38  */
39 class Friendica extends BaseModule
40 {
41         protected function content(array $request = []): string
42         {
43                 $config = DI::config();
44
45                 $visibleAddonList = Addon::getVisibleList();
46                 if (!empty($visibleAddonList)) {
47
48                         $sorted = $visibleAddonList;
49                         sort($sorted);
50
51                         $sortedAddonList = '';
52
53                         foreach ($sorted as $addon) {
54                                 if (strlen($addon)) {
55                                         if (strlen($sortedAddonList)) {
56                                                 $sortedAddonList .= ', ';
57                                         }
58                                         $sortedAddonList .= $addon;
59                                 }
60                         }
61                         $addon = [
62                                 'title' => DI::l10n()->t('Installed addons/apps:'),
63                                 'list'  => $sortedAddonList,
64                         ];
65                 } else {
66                         $addon = [
67                                 'title' => DI::l10n()->t('No installed addons/apps'),
68                         ];
69                 }
70
71                 $tos = ($config->get('system', 'tosdisplay')) ?
72                         DI::l10n()->t('Read about the <a href="%1$s/tos">Terms of Service</a> of this node.', DI::baseUrl()->get()) :
73                         '';
74
75                 $blockList = $config->get('system', 'blocklist');
76
77                 if (!empty($blockList)) {
78                         $blocked = [
79                                 'title'    => DI::l10n()->t('On this server the following remote servers are blocked.'),
80                                 'header'   => [
81                                         DI::l10n()->t('Blocked domain'),
82                                         DI::l10n()->t('Reason for the block'),
83                                 ],
84                                 'download' => DI::l10n()->t('Download this list in CSV format'),
85                                 'list'     => $blockList,
86                         ];
87                 } else {
88                         $blocked = null;
89                 }
90
91                 $hooked = '';
92
93                 Hook::callAll('about_hook', $hooked);
94
95                 $tpl = Renderer::getMarkupTemplate('friendica.tpl');
96
97                 return Renderer::replaceMacros($tpl, [
98                         'about'     => DI::l10n()->t('This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s.',
99                                 '<strong>' . FRIENDICA_VERSION . '</strong>',
100                                 DI::baseUrl()->get(),
101                                 '<strong>' . $config->get('system', 'build') . '/' . DB_UPDATE_VERSION . '</strong>',
102                                 '<strong>' . $config->get('system', 'post_update_version') . '/' . PostUpdate::VERSION . '</strong>'),
103                         'friendica' => DI::l10n()->t('Please visit <a href="https://friendi.ca">Friendi.ca</a> to learn more about the Friendica project.'),
104                         'bugs'      => DI::l10n()->t('Bug reports and issues: please visit') . ' ' . '<a href="https://github.com/friendica/friendica/issues?state=open">' . DI::l10n()->t('the bugtracker at github') . '</a>',
105                         'info'      => DI::l10n()->t('Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'),
106
107                         'visible_addons' => $addon,
108                         'tos'            => $tos,
109                         'block_list'     => $blocked,
110                         'hooked'         => $hooked,
111                 ]);
112         }
113
114         protected function rawContent(array $request = [])
115         {
116                 // @TODO: Replace with parameter from router
117                 if (DI::args()->getArgc() <= 1 || (DI::args()->getArgv()[1] !== 'json')) {
118                         if (!ActivityPub::isRequest()) {
119                                 return;
120                         }
121
122                         try {
123                                 $data = ActivityPub\Transmitter::getProfile(0);
124                                 header('Access-Control-Allow-Origin: *');
125                                 header('Cache-Control: max-age=23200, stale-while-revalidate=23200');
126                                 System::jsonExit($data, 'application/activity+json');
127                         } catch (HTTPException\NotFoundException $e) {
128                                 System::jsonError(404, ['error' => 'Record not found']);
129                         }
130                 }
131
132                 $config = DI::config();
133
134                 $register_policies = [
135                         Register::CLOSED  => 'REGISTER_CLOSED',
136                         Register::APPROVE => 'REGISTER_APPROVE',
137                         Register::OPEN    => 'REGISTER_OPEN'
138                 ];
139
140                 $register_policy_int = intval($config->get('config', 'register_policy'));
141                 if ($register_policy_int !== Register::CLOSED && $config->get('config', 'invitation_only')) {
142                         $register_policy = 'REGISTER_INVITATION';
143                 } else {
144                         $register_policy = $register_policies[$register_policy_int];
145                 }
146
147                 $admin = [];
148                 $administrator = User::getFirstAdmin(['username', 'nickname']);
149                 if (!empty($administrator)) {
150                         $admin = [
151                                 'name'    => $administrator['username'],
152                                 'profile' => DI::baseUrl()->get() . '/profile/' . $administrator['nickname'],
153                         ];
154                 }
155
156                 $visible_addons = Addon::getVisibleList();
157
158                 $config->load('feature_lock');
159                 $locked_features = [];
160                 $featureLocks = $config->get('config', 'feature_lock');
161                 if (isset($featureLocks)) {
162                         foreach ($featureLocks as $feature => $lock) {
163                                 if ($feature === 'config_loaded') {
164                                         continue;
165                                 }
166
167                                 $locked_features[$feature] = intval($lock);
168                         }
169                 }
170
171                 $data = [
172                         'version'          => FRIENDICA_VERSION,
173                         'url'              => DI::baseUrl()->get(),
174                         'addons'           => $visible_addons,
175                         'locked_features'  => $locked_features,
176                         'explicit_content' => intval($config->get('system', 'explicit_content', 0)),
177                         'language'         => $config->get('system', 'language'),
178                         'register_policy'  => $register_policy,
179                         'admin'            => $admin,
180                         'site_name'        => $config->get('config', 'sitename'),
181                         'platform'         => strtolower(FRIENDICA_PLATFORM),
182                         'info'             => $config->get('config', 'info'),
183                         'no_scrape_url'    => DI::baseUrl()->get() . '/noscrape',
184                 ];
185
186                 System::jsonExit($data);
187         }
188 }