]> git.mxchange.org Git - friendica.git/blob - src/Module/Admin/Site.php
added two help texts in the admin panel site config
[friendica.git] / src / Module / Admin / Site.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\Admin;
23
24 use Friendica\App;
25 use Friendica\Core\Renderer;
26 use Friendica\Core\Search;
27 use Friendica\Core\System;
28 use Friendica\Core\Theme;
29 use Friendica\Core\Worker;
30 use Friendica\Database\DBA;
31 use Friendica\DI;
32 use Friendica\Model\Contact;
33 use Friendica\Model\User;
34 use Friendica\Module\BaseAdmin;
35 use Friendica\Module\Register;
36 use Friendica\Protocol\Relay;
37 use Friendica\Util\BasePath;
38 use Friendica\Util\EMailer\MailBuilder;
39 use Friendica\Util\Strings;
40 use Friendica\Worker\Delivery;
41
42 require_once __DIR__ . '/../../../boot.php';
43
44 class Site extends BaseAdmin
45 {
46         protected function post(array $request = [])
47         {
48                 self::checkAdminAccess();
49
50                 self::checkFormSecurityTokenRedirectOnError('/admin/site', 'admin_site');
51
52                 $a = DI::app();
53
54                 if (!empty($_POST['republish_directory'])) {
55                         Worker::add(PRIORITY_LOW, 'Directory');
56                         return;
57                 }
58
59                 if (empty($_POST['page_site'])) {
60                         return;
61                 }
62
63                 // relocate
64                 // @TODO This file could benefit from moving this feature away in a Module\Admin\Relocate class for example
65                 if (!empty($_POST['relocate']) && !empty($_POST['relocate_url']) && $_POST['relocate_url'] != "") {
66                         $new_url = $_POST['relocate_url'];
67                         $new_url = rtrim($new_url, "/");
68
69                         $parsed = @parse_url($new_url);
70                         if (!is_array($parsed) || empty($parsed['host']) || empty($parsed['scheme'])) {
71                                 notice(DI::l10n()->t("Can not parse base url. Must have at least <scheme>://<domain>"));
72                                 DI::baseUrl()->redirect('admin/site');
73                         }
74
75                         /* steps:
76                          * replace all "baseurl" to "new_url" in config, profile, term, items and contacts
77                          * send relocate for every local user
78                          * */
79
80                         $old_url = DI::baseUrl()->get(true);
81
82                         // Generate host names for relocation the addresses in the format user@address.tld
83                         $new_host = str_replace("http://", "@", Strings::normaliseLink($new_url));
84                         $old_host = str_replace("http://", "@", Strings::normaliseLink($old_url));
85
86                         function update_table(App $a, $table_name, $fields, $old_url, $new_url)
87                         {
88                                 $dbold = DBA::escape($old_url);
89                                 $dbnew = DBA::escape($new_url);
90
91                                 $upd = [];
92                                 foreach ($fields as $f) {
93                                         $upd[] = "`$f` = REPLACE(`$f`, '$dbold', '$dbnew')";
94                                 }
95
96                                 $upds = implode(", ", $upd);
97
98                                 $r = DBA::e(sprintf("UPDATE %s SET %s;", $table_name, $upds));
99                                 if (!DBA::isResult($r)) {
100                                         notice("Failed updating '$table_name': " . DBA::errorMessage());
101                                         DI::baseUrl()->redirect('admin/site');
102                                 }
103                         }
104
105                         // update tables
106                         // update profile links in the format "http://server.tld"
107                         update_table($a, "profile", ['photo', 'thumb'], $old_url, $new_url);
108                         update_table($a, "contact", ['photo', 'thumb', 'micro', 'url', 'nurl', 'alias', 'request', 'notify', 'poll', 'confirm', 'poco', 'avatar'], $old_url, $new_url);
109                         update_table($a, "post-content", ['body'], $old_url, $new_url);
110
111                         // update profile addresses in the format "user@server.tld"
112                         update_table($a, "contact", ['addr'], $old_host, $new_host);
113
114                         // update config
115                         DI::config()->set('system', 'url', $new_url);
116                         DI::baseUrl()->saveByURL($new_url);
117
118                         // send relocate
119                         $usersStmt = DBA::select('user', ['uid'], ['account_removed' => false, 'account_expired' => false]);
120                         while ($user = DBA::fetch($usersStmt)) {
121                                 Worker::add(PRIORITY_HIGH, 'Notifier', Delivery::RELOCATION, $user['uid']);
122                         }
123                         DBA::close($usersStmt);
124
125                         info(DI::l10n()->t("Relocation started. Could take a while to complete."));
126
127                         DI::baseUrl()->redirect('admin/site');
128                 }
129                 // end relocate
130
131                 $sitename         = (!empty($_POST['sitename'])         ? trim($_POST['sitename'])      : '');
132                 $sender_email     = (!empty($_POST['sender_email'])     ? trim($_POST['sender_email'])  : '');
133                 $banner           = (!empty($_POST['banner'])           ? trim($_POST['banner'])                             : false);
134                 $email_banner     = (!empty($_POST['email_banner'])     ? trim($_POST['email_banner'])                       : false);
135                 $shortcut_icon    = (!empty($_POST['shortcut_icon'])    ? trim($_POST['shortcut_icon']) : '');
136                 $touch_icon       = (!empty($_POST['touch_icon'])       ? trim($_POST['touch_icon'])    : '');
137                 $additional_info  = (!empty($_POST['additional_info'])  ? trim($_POST['additional_info'])                    : '');
138                 $language         = (!empty($_POST['language'])         ? trim($_POST['language'])      : '');
139                 $theme            = (!empty($_POST['theme'])            ? trim($_POST['theme'])         : '');
140                 $theme_mobile     = (!empty($_POST['theme_mobile'])     ? trim($_POST['theme_mobile'])  : '');
141                 $maximagesize     = (!empty($_POST['maximagesize'])     ? intval(trim($_POST['maximagesize']))               : 0);
142                 $maximagelength   = (!empty($_POST['maximagelength'])   ? intval(trim($_POST['maximagelength']))             : -1);
143                 $jpegimagequality = (!empty($_POST['jpegimagequality']) ? intval(trim($_POST['jpegimagequality']))           : 100);
144
145                 $register_policy        = (!empty($_POST['register_policy'])         ? intval(trim($_POST['register_policy']))             : 0);
146                 $daily_registrations    = (!empty($_POST['max_daily_registrations']) ? intval(trim($_POST['max_daily_registrations']))     : 0);
147                 $abandon_days           = (!empty($_POST['abandon_days'])            ? intval(trim($_POST['abandon_days']))                : 0);
148
149                 $register_text          = (!empty($_POST['register_text'])           ? strip_tags(trim($_POST['register_text']))           : '');
150
151                 $allowed_sites          = (!empty($_POST['allowed_sites'])           ? trim($_POST['allowed_sites'])  : '');
152                 $allowed_email          = (!empty($_POST['allowed_email'])           ? trim($_POST['allowed_email'])  : '');
153                 $forbidden_nicknames    = (!empty($_POST['forbidden_nicknames'])     ? strtolower(trim($_POST['forbidden_nicknames'])) : '');
154                 $system_actor_name      = (!empty($_POST['system_actor_name'])       ? trim($_POST['system_actor_name']) : '');
155                 $no_oembed_rich_content = !empty($_POST['no_oembed_rich_content']);
156                 $allowed_oembed         = (!empty($_POST['allowed_oembed'])          ? trim($_POST['allowed_oembed']) : '');
157                 $block_public           = !empty($_POST['block_public']);
158                 $force_publish          = !empty($_POST['publish_all']);
159                 $global_directory       = (!empty($_POST['directory'])               ? trim($_POST['directory'])      : '');
160                 $newuser_private        = !empty($_POST['newuser_private']);
161                 $enotify_no_content     = !empty($_POST['enotify_no_content']);
162                 $private_addons         = !empty($_POST['private_addons']);
163                 $disable_embedded       = !empty($_POST['disable_embedded']);
164                 $allow_users_remote_self = !empty($_POST['allow_users_remote_self']);
165                 $explicit_content       = !empty($_POST['explicit_content']);
166                 $proxify_content        = !empty($_POST['proxify_content']);
167                 $cache_contact_avatar   = !empty($_POST['cache_contact_avatar']);
168
169                 $enable_multi_reg       = !empty($_POST['enable_multi_reg']);
170                 $enable_openid          = !empty($_POST['enable_openid']);
171                 $enable_regfullname     = !empty($_POST['enable_regfullname']);
172                 $community_page_style   = (!empty($_POST['community_page_style']) ? intval(trim($_POST['community_page_style'])) : 0);
173                 $max_author_posts_community_page = (!empty($_POST['max_author_posts_community_page']) ? intval(trim($_POST['max_author_posts_community_page'])) : 0);
174
175                 $verifyssl              = !empty($_POST['verifyssl']);
176                 $proxyuser              = (!empty($_POST['proxyuser'])              ? trim($_POST['proxyuser']) : '');
177                 $proxy                  = (!empty($_POST['proxy'])                  ? trim($_POST['proxy'])     : '');
178                 $timeout                = (!empty($_POST['timeout'])                ? intval(trim($_POST['timeout']))                : 60);
179                 $maxloadavg             = (!empty($_POST['maxloadavg'])             ? intval(trim($_POST['maxloadavg']))             : 20);
180                 $min_memory             = (!empty($_POST['min_memory'])             ? intval(trim($_POST['min_memory']))             : 0);
181                 $optimize_tables        = (!empty($_POST['optimize_tables'])        ? intval(trim($_POST['optimize_tables']))        : false);
182                 $contact_discovery      = (!empty($_POST['contact_discovery'])      ? intval(trim($_POST['contact_discovery']))      : Contact\Relation::DISCOVERY_NONE);
183                 $synchronize_directory  = (!empty($_POST['synchronize_directory'])  ? intval(trim($_POST['synchronize_directory']))  : false);
184                 $poco_requery_days      = (!empty($_POST['poco_requery_days'])      ? intval(trim($_POST['poco_requery_days']))      : 7);
185                 $poco_discovery         = (!empty($_POST['poco_discovery'])         ? intval(trim($_POST['poco_discovery']))         : false);
186                 $poco_local_search      = !empty($_POST['poco_local_search']);
187                 $nodeinfo               = !empty($_POST['nodeinfo']);
188                 $mail_enabled           = !empty($_POST['mail_enabled']);
189                 $ostatus_enabled        = !empty($_POST['ostatus_enabled']);
190                 $diaspora_enabled       = !empty($_POST['diaspora_enabled']);
191                 $ssl_policy             = (!empty($_POST['ssl_policy'])             ? intval($_POST['ssl_policy'])                    : 0);
192                 $force_ssl              = !empty($_POST['force_ssl']);
193                 $show_help              = !empty($_POST['show_help']);
194                 $dbclean                = !empty($_POST['dbclean']);
195                 $dbclean_expire_days    = (!empty($_POST['dbclean_expire_days'])    ? intval($_POST['dbclean_expire_days'])           : 0);
196                 $dbclean_unclaimed      = (!empty($_POST['dbclean_unclaimed'])      ? intval($_POST['dbclean_unclaimed'])             : 0);
197                 $dbclean_expire_conv    = (!empty($_POST['dbclean_expire_conv'])    ? intval($_POST['dbclean_expire_conv'])           : 0);
198                 $suppress_tags          = !empty($_POST['suppress_tags']);
199                 $max_comments           = (!empty($_POST['max_comments'])           ? intval($_POST['max_comments'])                  : 0);
200                 $max_display_comments   = (!empty($_POST['max_display_comments'])   ? intval($_POST['max_display_comments'])          : 0);
201                 $temppath               = (!empty($_POST['temppath'])               ? trim($_POST['temppath'])   : '');
202                 $singleuser             = (!empty($_POST['singleuser'])             ? trim($_POST['singleuser']) : '');
203                 $only_tag_search        = !empty($_POST['only_tag_search']);
204                 $check_new_version_url  = (!empty($_POST['check_new_version_url'])  ? trim($_POST['check_new_version_url']) : 'none');
205
206                 $worker_queues    = (!empty($_POST['worker_queues'])                ? intval($_POST['worker_queues'])                 : 10);
207                 $worker_fastlane  = !empty($_POST['worker_fastlane']);
208
209                 $relay_directly    = !empty($_POST['relay_directly']);
210                 $relay_scope       = (!empty($_POST['relay_scope'])       ? trim($_POST['relay_scope'])        : '');
211                 $relay_server_tags = (!empty($_POST['relay_server_tags']) ? trim($_POST['relay_server_tags'])  : '');
212                 $relay_deny_tags   = (!empty($_POST['relay_deny_tags'])   ? trim($_POST['relay_deny_tags'])    : '');
213                 $relay_user_tags   = !empty($_POST['relay_user_tags']);
214                 $active_panel      = (!empty($_POST['active_panel'])      ? "#" . trim($_POST['active_panel']) : '');
215
216                 // Has the directory url changed? If yes, then resubmit the existing profiles there
217                 if ($global_directory != DI::config()->get('system', 'directory') && ($global_directory != '')) {
218                         DI::config()->set('system', 'directory', $global_directory);
219                         Worker::add(PRIORITY_LOW, 'Directory');
220                 }
221
222                 if (DI::baseUrl()->getUrlPath() != "") {
223                         $diaspora_enabled = false;
224                 }
225                 if ($ssl_policy != intval(DI::config()->get('system', 'ssl_policy'))) {
226                         if ($ssl_policy == App\BaseURL::SSL_POLICY_FULL) {
227                                 DBA::e("UPDATE `contact` SET
228                                 `url`     = REPLACE(`url`    , 'http:' , 'https:'),
229                                 `photo`   = REPLACE(`photo`  , 'http:' , 'https:'),
230                                 `thumb`   = REPLACE(`thumb`  , 'http:' , 'https:'),
231                                 `micro`   = REPLACE(`micro`  , 'http:' , 'https:'),
232                                 `request` = REPLACE(`request`, 'http:' , 'https:'),
233                                 `notify`  = REPLACE(`notify` , 'http:' , 'https:'),
234                                 `poll`    = REPLACE(`poll`   , 'http:' , 'https:'),
235                                 `confirm` = REPLACE(`confirm`, 'http:' , 'https:'),
236                                 `poco`    = REPLACE(`poco`   , 'http:' , 'https:')
237                                 WHERE `self` = 1"
238                                 );
239                                 DBA::e("UPDATE `profile` SET
240                                 `photo`   = REPLACE(`photo`  , 'http:' , 'https:'),
241                                 `thumb`   = REPLACE(`thumb`  , 'http:' , 'https:')
242                                 WHERE 1 "
243                                 );
244                         } elseif ($ssl_policy == App\BaseURL::SSL_POLICY_SELFSIGN) {
245                                 DBA::e("UPDATE `contact` SET
246                                 `url`     = REPLACE(`url`    , 'https:' , 'http:'),
247                                 `photo`   = REPLACE(`photo`  , 'https:' , 'http:'),
248                                 `thumb`   = REPLACE(`thumb`  , 'https:' , 'http:'),
249                                 `micro`   = REPLACE(`micro`  , 'https:' , 'http:'),
250                                 `request` = REPLACE(`request`, 'https:' , 'http:'),
251                                 `notify`  = REPLACE(`notify` , 'https:' , 'http:'),
252                                 `poll`    = REPLACE(`poll`   , 'https:' , 'http:'),
253                                 `confirm` = REPLACE(`confirm`, 'https:' , 'http:'),
254                                 `poco`    = REPLACE(`poco`   , 'https:' , 'http:')
255                                 WHERE `self` = 1"
256                                 );
257                                 DBA::e("UPDATE `profile` SET
258                                 `photo`   = REPLACE(`photo`  , 'https:' , 'http:'),
259                                 `thumb`   = REPLACE(`thumb`  , 'https:' , 'http:')
260                                 WHERE 1 "
261                                 );
262                         }
263                 }
264                 DI::config()->set('system', 'ssl_policy'            , $ssl_policy);
265                 DI::config()->set('system', 'maxloadavg'            , $maxloadavg);
266                 DI::config()->set('system', 'min_memory'            , $min_memory);
267                 DI::config()->set('system', 'optimize_tables'       , $optimize_tables);
268                 DI::config()->set('system', 'contact_discovery'     , $contact_discovery);
269                 DI::config()->set('system', 'synchronize_directory' , $synchronize_directory);
270                 DI::config()->set('system', 'poco_requery_days'     , $poco_requery_days);
271                 DI::config()->set('system', 'poco_discovery'        , $poco_discovery);
272                 DI::config()->set('system', 'poco_local_search'     , $poco_local_search);
273                 DI::config()->set('system', 'nodeinfo'              , $nodeinfo);
274                 DI::config()->set('config', 'sitename'              , $sitename);
275                 DI::config()->set('config', 'sender_email'          , $sender_email);
276                 DI::config()->set('system', 'suppress_tags'         , $suppress_tags);
277                 DI::config()->set('system', 'shortcut_icon'         , $shortcut_icon);
278                 DI::config()->set('system', 'touch_icon'            , $touch_icon);
279
280                 if ($banner == "") {
281                         DI::config()->delete('system', 'banner');
282                 } else {
283                         DI::config()->set('system', 'banner', $banner);
284                 }
285
286                 if (empty($email_banner)) {
287                         DI::config()->delete('system', 'email_banner');
288                 } else {
289                         DI::config()->set('system', 'email_banner', $email_banner);
290                 }
291
292                 if (empty($additional_info)) {
293                         DI::config()->delete('config', 'info');
294                 } else {
295                         DI::config()->set('config', 'info', $additional_info);
296                 }
297                 DI::config()->set('system', 'language', $language);
298                 DI::config()->set('system', 'theme', $theme);
299                 Theme::install($theme);
300
301                 if ($theme_mobile == '---') {
302                         DI::config()->delete('system', 'mobile-theme');
303                 } else {
304                         DI::config()->set('system', 'mobile-theme', $theme_mobile);
305                 }
306                 if ($singleuser == '---') {
307                         DI::config()->delete('system', 'singleuser');
308                 } else {
309                         DI::config()->set('system', 'singleuser', $singleuser);
310                 }
311                 DI::config()->set('system', 'maximagesize'           , $maximagesize);
312                 DI::config()->set('system', 'max_image_length'       , $maximagelength);
313                 DI::config()->set('system', 'jpeg_quality'           , $jpegimagequality);
314
315                 DI::config()->set('config', 'register_policy'        , $register_policy);
316                 DI::config()->set('system', 'max_daily_registrations', $daily_registrations);
317                 DI::config()->set('system', 'account_abandon_days'   , $abandon_days);
318                 DI::config()->set('config', 'register_text'          , $register_text);
319                 DI::config()->set('system', 'allowed_sites'          , $allowed_sites);
320                 DI::config()->set('system', 'allowed_email'          , $allowed_email);
321                 DI::config()->set('system', 'forbidden_nicknames'    , $forbidden_nicknames);
322                 DI::config()->set('system', 'system_actor_name'      , $system_actor_name);
323                 DI::config()->set('system', 'no_oembed_rich_content' , $no_oembed_rich_content);
324                 DI::config()->set('system', 'allowed_oembed'         , $allowed_oembed);
325                 DI::config()->set('system', 'block_public'           , $block_public);
326                 DI::config()->set('system', 'publish_all'            , $force_publish);
327                 DI::config()->set('system', 'newuser_private'        , $newuser_private);
328                 DI::config()->set('system', 'enotify_no_content'     , $enotify_no_content);
329                 DI::config()->set('system', 'disable_embedded'       , $disable_embedded);
330                 DI::config()->set('system', 'allow_users_remote_self', $allow_users_remote_self);
331                 DI::config()->set('system', 'explicit_content'       , $explicit_content);
332                 DI::config()->set('system', 'proxify_content'        , $proxify_content);
333                 DI::config()->set('system', 'cache_contact_avatar'   , $cache_contact_avatar);
334                 DI::config()->set('system', 'check_new_version_url'  , $check_new_version_url);
335
336                 DI::config()->set('system', 'block_extended_register', !$enable_multi_reg);
337                 DI::config()->set('system', 'no_openid'              , !$enable_openid);
338                 DI::config()->set('system', 'no_regfullname'         , !$enable_regfullname);
339                 DI::config()->set('system', 'community_page_style'   , $community_page_style);
340                 DI::config()->set('system', 'max_author_posts_community_page', $max_author_posts_community_page);
341                 DI::config()->set('system', 'verifyssl'              , $verifyssl);
342                 DI::config()->set('system', 'proxyuser'              , $proxyuser);
343                 DI::config()->set('system', 'proxy'                  , $proxy);
344                 DI::config()->set('system', 'curl_timeout'           , $timeout);
345                 DI::config()->set('system', 'imap_disabled'          , !$mail_enabled && function_exists('imap_open'));
346                 DI::config()->set('system', 'ostatus_disabled'       , !$ostatus_enabled);
347                 DI::config()->set('system', 'diaspora_enabled'       , $diaspora_enabled);
348
349                 DI::config()->set('config', 'private_addons'         , $private_addons);
350
351                 DI::config()->set('system', 'force_ssl'              , $force_ssl);
352                 DI::config()->set('system', 'hide_help'              , !$show_help);
353
354                 DI::config()->set('system', 'dbclean'                , $dbclean);
355                 DI::config()->set('system', 'dbclean-expire-days'    , $dbclean_expire_days);
356                 DI::config()->set('system', 'dbclean_expire_conversation', $dbclean_expire_conv);
357
358                 if ($dbclean_unclaimed == 0) {
359                         $dbclean_unclaimed = $dbclean_expire_days;
360                 }
361
362                 DI::config()->set('system', 'dbclean-expire-unclaimed', $dbclean_unclaimed);
363
364                 DI::config()->set('system', 'max_comments', $max_comments);
365                 DI::config()->set('system', 'max_display_comments', $max_display_comments);
366
367                 if ($temppath != '') {
368                         $temppath = BasePath::getRealPath($temppath);
369                 }
370
371                 DI::config()->set('system', 'temppath', $temppath);
372
373                 DI::config()->set('system', 'only_tag_search'  , $only_tag_search);
374
375                 DI::config()->set('system', 'worker_queues'    , $worker_queues);
376                 DI::config()->set('system', 'worker_fastlane'  , $worker_fastlane);
377
378                 DI::config()->set('system', 'relay_directly'   , $relay_directly);
379                 DI::config()->set('system', 'relay_scope'      , $relay_scope);
380                 DI::config()->set('system', 'relay_server_tags', $relay_server_tags);
381                 DI::config()->set('system', 'relay_deny_tags'  , $relay_deny_tags);
382                 DI::config()->set('system', 'relay_user_tags'  , $relay_user_tags);
383
384                 DI::baseUrl()->redirect('admin/site' . $active_panel);
385         }
386
387         protected function content(array $request = []): string
388         {
389                 parent::content();
390
391                 /* Installed langs */
392                 $lang_choices = DI::l10n()->getAvailableLanguages();
393
394                 if (strlen(DI::config()->get('system', 'directory_submit_url')) &&
395                         !strlen(DI::config()->get('system', 'directory'))) {
396                         DI::config()->set('system', 'directory', dirname(DI::config()->get('system', 'directory_submit_url')));
397                         DI::config()->delete('system', 'directory_submit_url');
398                 }
399
400                 /* Installed themes */
401                 $theme_choices = [];
402                 $theme_choices_mobile = [];
403                 $theme_choices_mobile['---'] = DI::l10n()->t('No special theme for mobile devices');
404                 $files = glob('view/theme/*');
405                 if (is_array($files)) {
406                         $allowed_theme_list = DI::config()->get('system', 'allowed_themes');
407
408                         foreach ($files as $file) {
409                                 if (intval(file_exists($file . '/unsupported'))) {
410                                         continue;
411                                 }
412
413                                 $f = basename($file);
414
415                                 // Only show allowed themes here
416                                 if (($allowed_theme_list != '') && !strstr($allowed_theme_list, $f)) {
417                                         continue;
418                                 }
419
420                                 $theme_name = ((file_exists($file . '/experimental')) ? DI::l10n()->t('%s - (Experimental)', $f) : $f);
421
422                                 if (file_exists($file . '/mobile')) {
423                                         $theme_choices_mobile[$f] = $theme_name;
424                                 } else {
425                                         $theme_choices[$f] = $theme_name;
426                                 }
427                         }
428                 }
429
430                 /* Community page style */
431                 $community_page_style_choices = [
432                         CP_NO_INTERNAL_COMMUNITY => DI::l10n()->t('No community page for local users'),
433                         CP_NO_COMMUNITY_PAGE => DI::l10n()->t('No community page'),
434                         CP_USERS_ON_SERVER => DI::l10n()->t('Public postings from users of this site'),
435                         CP_GLOBAL_COMMUNITY => DI::l10n()->t('Public postings from the federated network'),
436                         CP_USERS_AND_GLOBAL => DI::l10n()->t('Public postings from local users and the federated network')
437                 ];
438
439                 /* get user names to make the install a personal install of X */
440                 // @TODO Move to Model\User::getNames()
441                 $user_names = [];
442                 $user_names['---'] = DI::l10n()->t('Multi user instance');
443
444                 $usersStmt = DBA::select('user', ['username', 'nickname'], ['account_removed' => 0, 'account_expired' => 0]);
445                 foreach (DBA::toArray($usersStmt) as $user) {
446                         $user_names[$user['nickname']] = $user['username'];
447                 }
448
449                 /* Banner */
450                 $banner = DI::config()->get('system', 'banner');
451
452                 if ($banner == false) {
453                         $banner = '<a href="https://friendi.ca"><img id="logo-img" src="images/friendica-32.png" alt="logo" /></a><span id="logo-text"><a href="https://friendi.ca">Friendica</a></span>';
454                 }
455
456                 $email_banner = DI::config()->get('system', 'email_banner');
457
458                 if ($email_banner == false) {
459                         $email_banner = MailBuilder::DEFAULT_EMAIL_BANNER;
460                 }
461
462                 $additional_info = DI::config()->get('config', 'info');
463
464                 // Automatically create temporary paths
465                 System::getTempPath();
466
467                 /* Register policy */
468                 $register_choices = [
469                         Register::CLOSED => DI::l10n()->t('Closed'),
470                         Register::APPROVE => DI::l10n()->t('Requires approval'),
471                         Register::OPEN => DI::l10n()->t('Open')
472                 ];
473
474                 $ssl_choices = [
475                         App\BaseURL::SSL_POLICY_NONE => DI::l10n()->t('No SSL policy, links will track page SSL state'),
476                         App\BaseURL::SSL_POLICY_FULL => DI::l10n()->t('Force all links to use SSL'),
477                         App\BaseURL::SSL_POLICY_SELFSIGN => DI::l10n()->t('Self-signed certificate, use SSL for local links only (discouraged)')
478                 ];
479
480                 $check_git_version_choices = [
481                         'none' => DI::l10n()->t('Don\'t check'),
482                         'stable' => DI::l10n()->t('check the stable version'),
483                         'develop' => DI::l10n()->t('check the development version')
484                 ];
485
486                 $discovery_choices = [
487                         Contact\Relation::DISCOVERY_NONE => DI::l10n()->t('none'),
488                         Contact\Relation::DISCOVERY_LOCAL => DI::l10n()->t('Local contacts'),
489                         Contact\Relation::DISCOVERY_INTERACTOR => DI::l10n()->t('Interactors'),
490                         // "All" is deactivated until we are sure not to put too much stress on the fediverse with this
491                         // ContactRelation::DISCOVERY_ALL => DI::l10n()->t('All'),
492                 ];
493
494                 $diaspora_able = (DI::baseUrl()->getUrlPath() == '');
495
496                 $t = Renderer::getMarkupTemplate('admin/site.tpl');
497                 return Renderer::replaceMacros($t, [
498                         '$title'             => DI::l10n()->t('Administration'),
499                         '$page'              => DI::l10n()->t('Site'),
500                         '$general_info'      => DI::l10n()->t('General Information'),
501                         '$submit'            => DI::l10n()->t('Save Settings'),
502                         '$republish'         => DI::l10n()->t('Republish users to directory'),
503                         '$registration'      => DI::l10n()->t('Registration'),
504                         '$upload'            => DI::l10n()->t('File upload'),
505                         '$corporate'         => DI::l10n()->t('Policies'),
506                         '$advanced'          => DI::l10n()->t('Advanced'),
507                         '$portable_contacts' => DI::l10n()->t('Auto Discovered Contact Directory'),
508                         '$performance'       => DI::l10n()->t('Performance'),
509                         '$worker_title'      => DI::l10n()->t('Worker'),
510                         '$relay_title'       => DI::l10n()->t('Message Relay'),
511                         '$relay_description' => DI::l10n()->t('Use the command "console relay" in the command line to add or remove relays.'),
512                         '$no_relay_list'     => DI::l10n()->t('The system is not subscribed to any relays at the moment.'),
513                         '$relay_list_title'  => DI::l10n()->t('The system is currently subscribed to the following relays:'),
514                         '$relay_list'        => Relay::getList(['url']),
515                         '$relocate'          => DI::l10n()->t('Relocate Instance'),
516                         '$relocate_warning'  => DI::l10n()->t('<strong>Warning!</strong> Advanced function. Could make this server unreachable.'),
517                         '$baseurl'           => DI::baseUrl()->get(true),
518
519                         // name, label, value, help string, extra data...
520                         '$sitename'         => ['sitename', DI::l10n()->t('Site name'), DI::config()->get('config', 'sitename'), ''],
521                         '$sender_email'     => ['sender_email', DI::l10n()->t('Sender Email'), DI::config()->get('config', 'sender_email'), DI::l10n()->t('The email address your server shall use to send notification emails from.'), '', '', 'email'],
522                         '$system_actor_name' => ['system_actor_name', DI::l10n()->t('Name of the system actor'), User::getActorName(), DI::l10n()->t("Name of the internal system account that is used to perform ActivityPub requests. This must be an unused username. If set, this can't be changed again.")],
523                         '$banner'           => ['banner', DI::l10n()->t('Banner/Logo'), $banner, ''],
524                         '$email_banner'     => ['email_banner', DI::l10n()->t('Email Banner/Logo'), $email_banner, ''],
525                         '$shortcut_icon'    => ['shortcut_icon', DI::l10n()->t('Shortcut icon'), DI::config()->get('system', 'shortcut_icon'), DI::l10n()->t('Link to an icon that will be used for browsers.')],
526                         '$touch_icon'       => ['touch_icon', DI::l10n()->t('Touch icon'), DI::config()->get('system', 'touch_icon'), DI::l10n()->t('Link to an icon that will be used for tablets and mobiles.')],
527                         '$additional_info'  => ['additional_info', DI::l10n()->t('Additional Info'), $additional_info, DI::l10n()->t('For public servers: you can add additional information here that will be listed at %s/servers.', Search::getGlobalDirectory())],
528                         '$language'         => ['language', DI::l10n()->t('System language'), DI::config()->get('system', 'language'), '', $lang_choices],
529                         '$theme'            => ['theme', DI::l10n()->t('System theme'), DI::config()->get('system', 'theme'), DI::l10n()->t('Default system theme - may be over-ridden by user profiles - <a href="/admin/themes" id="cnftheme">Change default theme settings</a>'), $theme_choices],
530                         '$theme_mobile'     => ['theme_mobile', DI::l10n()->t('Mobile system theme'), DI::config()->get('system', 'mobile-theme', '---'), DI::l10n()->t('Theme for mobile devices'), $theme_choices_mobile],
531                         '$ssl_policy'       => ['ssl_policy', DI::l10n()->t('SSL link policy'), DI::config()->get('system', 'ssl_policy'), DI::l10n()->t('Determines whether generated links should be forced to use SSL'), $ssl_choices],
532                         '$force_ssl'        => ['force_ssl', DI::l10n()->t('Force SSL'), DI::config()->get('system', 'force_ssl'), DI::l10n()->t('Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.')],
533                         '$show_help'        => ['show_help', DI::l10n()->t('Show help entry from navigation menu'), !DI::config()->get('system', 'hide_help'), DI::l10n()->t('Displays the menu entry for the Help pages from the navigation menu. It is always accessible by calling /help directly.')],
534                         '$singleuser'       => ['singleuser', DI::l10n()->t('Single user instance'), DI::config()->get('system', 'singleuser', '---'), DI::l10n()->t('Make this instance multi-user or single-user for the named user'), $user_names],
535
536                         '$maximagesize'     => ['maximagesize', DI::l10n()->t('Maximum image size'), DI::config()->get('system', 'maximagesize'), DI::l10n()->t('Maximum size in bytes of uploaded images. Default is 0, which means no limits.')],
537                         '$maximagelength'   => ['maximagelength', DI::l10n()->t('Maximum image length'), DI::config()->get('system', 'max_image_length'), DI::l10n()->t('Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.')],
538                         '$jpegimagequality' => ['jpegimagequality', DI::l10n()->t('JPEG image quality'), DI::config()->get('system', 'jpeg_quality'), DI::l10n()->t('Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.')],
539
540                         '$register_policy'        => ['register_policy', DI::l10n()->t('Register policy'), DI::config()->get('config', 'register_policy'), '', $register_choices],
541                         '$daily_registrations'    => ['max_daily_registrations', DI::l10n()->t('Maximum Daily Registrations'), DI::config()->get('system', 'max_daily_registrations'), DI::l10n()->t('If registration is permitted above, this sets the maximum number of new user registrations to accept per day.  If register is set to closed, this setting has no effect.')],
542                         '$register_text'          => ['register_text', DI::l10n()->t('Register text'), DI::config()->get('config', 'register_text'), DI::l10n()->t('Will be displayed prominently on the registration page. You can use BBCode here.')],
543                         '$forbidden_nicknames'    => ['forbidden_nicknames', DI::l10n()->t('Forbidden Nicknames'), DI::config()->get('system', 'forbidden_nicknames'), DI::l10n()->t('Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142.')],
544                         '$abandon_days'           => ['abandon_days', DI::l10n()->t('Accounts abandoned after x days'), DI::config()->get('system', 'account_abandon_days'), DI::l10n()->t('Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.')],
545                         '$allowed_sites'          => ['allowed_sites', DI::l10n()->t('Allowed friend domains'), DI::config()->get('system', 'allowed_sites'), DI::l10n()->t('Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains')],
546                         '$allowed_email'          => ['allowed_email', DI::l10n()->t('Allowed email domains'), DI::config()->get('system', 'allowed_email'), DI::l10n()->t('Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains')],
547                         '$no_oembed_rich_content' => ['no_oembed_rich_content', DI::l10n()->t('No OEmbed rich content'), DI::config()->get('system', 'no_oembed_rich_content'), DI::l10n()->t('Don\'t show the rich content (e.g. embedded PDF), except from the domains listed below.')],
548                         '$allowed_oembed'         => ['allowed_oembed', DI::l10n()->t('Trusted third-party domains'), DI::config()->get('system', 'allowed_oembed'), DI::l10n()->t('Comma separated list of domains from which content is allowed to be embedded in posts like with OEmbed. All sub-domains of the listed domains are allowed as well.')],
549                         '$block_public'           => ['block_public', DI::l10n()->t('Block public'), DI::config()->get('system', 'block_public'), DI::l10n()->t('Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.')],
550                         '$force_publish'          => ['publish_all', DI::l10n()->t('Force publish'), DI::config()->get('system', 'publish_all'), DI::l10n()->t('Check to force all profiles on this site to be listed in the site directory.') . '<strong>' . DI::l10n()->t('Enabling this may violate privacy laws like the GDPR') . '</strong>'],
551                         '$global_directory'       => ['directory', DI::l10n()->t('Global directory URL'), DI::config()->get('system', 'directory'), DI::l10n()->t('URL to the global directory. If this is not set, the global directory is completely unavailable to the application.')],
552                         '$newuser_private'        => ['newuser_private', DI::l10n()->t('Private posts by default for new users'), DI::config()->get('system', 'newuser_private'), DI::l10n()->t('Set default post permissions for all new members to the default privacy group rather than public.')],
553                         '$enotify_no_content'     => ['enotify_no_content', DI::l10n()->t('Don\'t include post content in email notifications'), DI::config()->get('system', 'enotify_no_content'), DI::l10n()->t('Don\'t include the content of a post/comment/private message/etc. in the email notifications that are sent out from this site, as a privacy measure.')],
554                         '$private_addons'         => ['private_addons', DI::l10n()->t('Disallow public access to addons listed in the apps menu.'), DI::config()->get('config', 'private_addons'), DI::l10n()->t('Checking this box will restrict addons listed in the apps menu to members only.')],
555                         '$disable_embedded'       => ['disable_embedded', DI::l10n()->t('Don\'t embed private images in posts'), DI::config()->get('system', 'disable_embedded'), DI::l10n()->t('Don\'t replace locally-hosted private photos in posts with an embedded copy of the image. This means that contacts who receive posts containing private photos will have to authenticate and load each image, which may take a while.')],
556                         '$explicit_content'       => ['explicit_content', DI::l10n()->t('Explicit Content'), DI::config()->get('system', 'explicit_content'), DI::l10n()->t('Set this to announce that your node is used mostly for explicit content that might not be suited for minors. This information will be published in the node information and might be used, e.g. by the global directory, to filter your node from listings of nodes to join. Additionally a note about this will be shown at the user registration page.')],
557                         '$proxify_content'        => ['proxify_content', DI::l10n()->t('Proxify external content'), DI::config()->get('system', 'proxify_content'), DI::l10n()->t('Route external content via the proxy functionality. This is used for example for some OEmbed accesses and in some other rare cases.')],
558                         '$cache_contact_avatar'   => ['cache_contact_avatar', DI::l10n()->t('Cache contact avatars'), DI::config()->get('system', 'cache_contact_avatar'), DI::l10n()->t('Locally store the avatar pictures of the contacts. This uses a lot of storage space but it increases the performance.')],
559                         '$allow_users_remote_self'=> ['allow_users_remote_self', DI::l10n()->t('Allow Users to set remote_self'), DI::config()->get('system', 'allow_users_remote_self'), DI::l10n()->t('With checking this, every user is allowed to mark every contact as a remote_self in the repair contact dialog. Setting this flag on a contact causes mirroring every posting of that contact in the users stream.')],
560                         '$enable_multi_reg'       => ['enable_multi_reg', DI::l10n()->t('Enable multiple registrations'), !DI::config()->get('system', 'block_extended_register'), DI::l10n()->t('Enable users to register additional accounts for use as pages.')],
561                         '$enable_openid'          => ['enable_openid', DI::l10n()->t('Enable OpenID'), !DI::config()->get('system', 'no_openid'), DI::l10n()->t('Enable OpenID support for registration and logins.')],
562                         '$enable_regfullname'     => ['enable_regfullname', DI::l10n()->t('Enable Fullname check'), !DI::config()->get('system', 'no_regfullname'), DI::l10n()->t('Enable check to only allow users to register with a space between the first name and the last name in their full name.')],
563                         '$community_page_style'   => ['community_page_style', DI::l10n()->t('Community pages for visitors'), DI::config()->get('system', 'community_page_style'), DI::l10n()->t('Which community pages should be available for visitors. Local users always see both pages.'), $community_page_style_choices],
564                         '$max_author_posts_community_page' => ['max_author_posts_community_page', DI::l10n()->t('Posts per user on community page'), DI::config()->get('system', 'max_author_posts_community_page'), DI::l10n()->t('The maximum number of posts per user on the community page. (Not valid for "Global Community")')],
565                         '$mail_able'              => function_exists('imap_open'),
566                         '$mail_enabled'           => ['mail_enabled', DI::l10n()->t('Enable Mail support'), !DI::config()->get('system', 'imap_disabled', !function_exists('imap_open')), DI::l10n()->t('Enable built-in mail support to poll IMAP folders and to reply via mail.')],
567                         '$mail_not_able'          => DI::l10n()->t('Mail support can\'t be enabled because the PHP IMAP module is not installed.'),
568                         '$ostatus_enabled'        => ['ostatus_enabled', DI::l10n()->t('Enable OStatus support'), !DI::config()->get('system', 'ostatus_disabled'), DI::l10n()->t('Enable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public.')],
569                         '$diaspora_able'          => $diaspora_able,
570                         '$diaspora_not_able'      => DI::l10n()->t('Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'),
571                         '$diaspora_enabled'       => ['diaspora_enabled', DI::l10n()->t('Enable Diaspora support'), DI::config()->get('system', 'diaspora_enabled', $diaspora_able), DI::l10n()->t('Enable built-in Diaspora network compatibility for communicating with diaspora servers.')],
572                         '$verifyssl'              => ['verifyssl', DI::l10n()->t('Verify SSL'), DI::config()->get('system', 'verifyssl'), DI::l10n()->t('If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.')],
573                         '$proxyuser'              => ['proxyuser', DI::l10n()->t('Proxy user'), DI::config()->get('system', 'proxyuser'), DI::l10n()->t('User name for the proxy server.')],
574                         '$proxy'                  => ['proxy', DI::l10n()->t('Proxy URL'), DI::config()->get('system', 'proxy'), DI::l10n()->t('If you want to use a proxy server that Friendica should use to connect to the network, put the URL of the proxy here.')],
575                         '$timeout'                => ['timeout', DI::l10n()->t('Network timeout'), DI::config()->get('system', 'curl_timeout'), DI::l10n()->t('Value is in seconds. Set to 0 for unlimited (not recommended).')],
576                         '$maxloadavg'             => ['maxloadavg', DI::l10n()->t('Maximum Load Average'), DI::config()->get('system', 'maxloadavg'), DI::l10n()->t('Maximum system load before delivery and poll processes are deferred - default %d.', 20)],
577                         '$min_memory'             => ['min_memory', DI::l10n()->t('Minimal Memory'), DI::config()->get('system', 'min_memory'), DI::l10n()->t('Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).')],
578                         '$optimize_tables'        => ['optimize_tables', DI::l10n()->t('Periodically optimize tables'), DI::config()->get('system', 'optimize_tables'), DI::l10n()->t('Periodically optimize tables like the cache and the workerqueue')],
579
580                         '$contact_discovery'      => ['contact_discovery', DI::l10n()->t('Discover followers/followings from contacts'), DI::config()->get('system', 'contact_discovery'), DI::l10n()->t('If enabled, contacts are checked for their followers and following contacts.') . '<ul>' .
581                                 '<li>' . DI::l10n()->t('None - deactivated') . '</li>' .
582                                 '<li>' . DI::l10n()->t('Local contacts - contacts of our local contacts are discovered for their followers/followings.') . '</li>' .
583                                 '<li>' . DI::l10n()->t('Interactors - contacts of our local contacts and contacts who interacted on locally visible postings are discovered for their followers/followings.') . '</li></ul>',
584                                 $discovery_choices],
585                         '$synchronize_directory'  => ['synchronize_directory', DI::l10n()->t('Synchronize the contacts with the directory server'), DI::config()->get('system', 'synchronize_directory'), DI::l10n()->t('if enabled, the system will check periodically for new contacts on the defined directory server.')],
586
587                         '$poco_requery_days'      => ['poco_requery_days', DI::l10n()->t('Days between requery'), DI::config()->get('system', 'poco_requery_days'), DI::l10n()->t('Number of days after which a server is requeried for his contacts.')],
588                         '$poco_discovery'         => ['poco_discovery', DI::l10n()->t('Discover contacts from other servers'), DI::config()->get('system', 'poco_discovery'), DI::l10n()->t('Periodically query other servers for contacts. The system queries Friendica, Mastodon and Hubzilla servers.')],
589                         '$poco_local_search'      => ['poco_local_search', DI::l10n()->t('Search the local directory'), DI::config()->get('system', 'poco_local_search'), DI::l10n()->t('Search the local directory instead of the global directory. When searching locally, every search will be executed on the global directory in the background. This improves the search results when the search is repeated.')],
590
591                         '$nodeinfo'               => ['nodeinfo', DI::l10n()->t('Publish server information'), DI::config()->get('system', 'nodeinfo'), DI::l10n()->t('If enabled, general server and usage data will be published. The data contains the name and version of the server, number of users with public profiles, number of posts and the activated protocols and connectors. See <a href="http://the-federation.info/">the-federation.info</a> for details.')],
592
593                         '$check_new_version_url'  => ['check_new_version_url', DI::l10n()->t('Check upstream version'), DI::config()->get('system', 'check_new_version_url'), DI::l10n()->t('Enables checking for new Friendica versions at github. If there is a new version, you will be informed in the admin panel overview.'), $check_git_version_choices],
594                         '$suppress_tags'          => ['suppress_tags', DI::l10n()->t('Suppress Tags'), DI::config()->get('system', 'suppress_tags'), DI::l10n()->t('Suppress showing a list of hashtags at the end of the posting.')],
595                         '$dbclean'                => ['dbclean', DI::l10n()->t('Clean database'), DI::config()->get('system', 'dbclean'), DI::l10n()->t('Remove old remote items, orphaned database records and old content from some other helper tables.')],
596                         '$dbclean_expire_days'    => ['dbclean_expire_days', DI::l10n()->t('Lifespan of remote items'), DI::config()->get('system', 'dbclean-expire-days'), DI::l10n()->t('When the database cleanup is enabled, this defines the days after which remote items will be deleted. Own items, and marked or filed items are always kept. 0 disables this behaviour.')],
597                         '$dbclean_unclaimed'      => ['dbclean_unclaimed', DI::l10n()->t('Lifespan of unclaimed items'), DI::config()->get('system', 'dbclean-expire-unclaimed'), DI::l10n()->t('When the database cleanup is enabled, this defines the days after which unclaimed remote items (mostly content from the relay) will be deleted. Default value is 90 days. Defaults to the general lifespan value of remote items if set to 0.')],
598                         '$dbclean_expire_conv'    => ['dbclean_expire_conv', DI::l10n()->t('Lifespan of raw conversation data'), DI::config()->get('system', 'dbclean_expire_conversation'), DI::l10n()->t('The conversation data is used for ActivityPub and OStatus, as well as for debug purposes. It should be safe to remove it after 14 days, default is 90 days.')],
599                         '$max_comments'           => ['max_comments', DI::l10n()->t('Maximum numbers of comments per post'), DI::config()->get('system', 'max_comments'), DI::l10n()->t('How much comments should be shown for each post? Default value is 100.')],
600                         '$max_display_comments'   => ['max_display_comments', DI::l10n()->t('Maximum numbers of comments per post on the display page'), DI::config()->get('system', 'max_display_comments'), DI::l10n()->t('How many comments should be shown on the single view for each post? Default value is 1000.')],
601                         '$temppath'               => ['temppath', DI::l10n()->t('Temp path'), DI::config()->get('system', 'temppath'), DI::l10n()->t('If you have a restricted system where the webserver can\'t access the system temp path, enter another path here.')],
602                         '$only_tag_search'        => ['only_tag_search', DI::l10n()->t('Only search in tags'), DI::config()->get('system', 'only_tag_search'), DI::l10n()->t('On large systems the text search can slow down the system extremely.')],
603
604                         '$relocate_url'           => ['relocate_url', DI::l10n()->t('New base url'), DI::baseUrl()->get(), DI::l10n()->t('Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users.')],
605
606                         '$worker_queues'          => ['worker_queues', DI::l10n()->t('Maximum number of parallel workers'), DI::config()->get('system', 'worker_queues'), DI::l10n()->t('On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d.', 5, 20, 10)],
607                         '$worker_fastlane'        => ['worker_fastlane', DI::l10n()->t('Enable fastlane'), DI::config()->get('system', 'worker_fastlane'), DI::l10n()->t('When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.')],
608
609                         '$relay_directly'         => ['relay_directly', DI::l10n()->t('Direct relay transfer'), DI::config()->get('system', 'relay_directly'), DI::l10n()->t('Enables the direct transfer to other servers without using the relay servers')],
610                         '$relay_scope'            => ['relay_scope', DI::l10n()->t('Relay scope'), DI::config()->get('system', 'relay_scope'), DI::l10n()->t('Can be "all" or "tags". "all" means that every public post should be received. "tags" means that only posts with selected tags should be received.'), [Relay::SCOPE_NONE => DI::l10n()->t('Disabled'), Relay::SCOPE_ALL => DI::l10n()->t('all'), Relay::SCOPE_TAGS => DI::l10n()->t('tags')]],
611                         '$relay_server_tags'      => ['relay_server_tags', DI::l10n()->t('Server tags'), DI::config()->get('system', 'relay_server_tags'), DI::l10n()->t('Comma separated list of tags for the "tags" subscription.')],
612                         '$relay_deny_tags'        => ['relay_deny_tags', DI::l10n()->t('Deny Server tags'), DI::config()->get('system', 'relay_deny_tags'), DI::l10n()->t('Comma separated list of tags that are rejected.')],
613                         '$relay_user_tags'        => ['relay_user_tags', DI::l10n()->t('Allow user tags'), DI::config()->get('system', 'relay_user_tags'), DI::l10n()->t('If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".')],
614
615                         '$form_security_token'    => self::getFormSecurityToken('admin_site'),
616                         '$relocate_button'        => DI::l10n()->t('Start Relocation'),
617                 ]);
618         }
619 }