]> git.mxchange.org Git - friendica.git/blob - src/Module/Admin/Site.php
Merge pull request #8249 from annando/a11y-4
[friendica.git] / src / Module / Admin / Site.php
1 <?php
2
3 namespace Friendica\Module\Admin;
4
5 use Friendica\App;
6 use Friendica\Core\Renderer;
7 use Friendica\Core\Search;
8 use Friendica\Core\Theme;
9 use Friendica\Core\Worker;
10 use Friendica\Database\DBA;
11 use Friendica\DI;
12 use Friendica\Module\BaseAdmin;
13 use Friendica\Module\Register;
14 use Friendica\Protocol\PortableContact;
15 use Friendica\Util\BasePath;
16 use Friendica\Util\EMailer\MailBuilder;
17 use Friendica\Util\Strings;
18 use Friendica\Worker\Delivery;
19
20 require_once __DIR__ . '/../../../boot.php';
21
22 class Site extends BaseAdmin
23 {
24         public static function post(array $parameters = [])
25         {
26                 parent::post($parameters);
27
28                 self::checkFormSecurityTokenRedirectOnError('/admin/site', 'admin_site');
29
30                 $a = DI::app();
31
32                 if (!empty($_POST['republish_directory'])) {
33                         Worker::add(PRIORITY_LOW, 'Directory');
34                         return;
35                 }
36
37                 if (empty($_POST['page_site'])) {
38                         return;
39                 }
40
41                 // relocate
42                 // @TODO This file could benefit from moving this feature away in a Module\Admin\Relocate class for example
43                 if (!empty($_POST['relocate']) && !empty($_POST['relocate_url']) && $_POST['relocate_url'] != "") {
44                         $new_url = $_POST['relocate_url'];
45                         $new_url = rtrim($new_url, "/");
46
47                         $parsed = @parse_url($new_url);
48                         if (!is_array($parsed) || empty($parsed['host']) || empty($parsed['scheme'])) {
49                                 notice(DI::l10n()->t("Can not parse base url. Must have at least <scheme>://<domain>"));
50                                 DI::baseUrl()->redirect('admin/site');
51                         }
52
53                         /* steps:
54                          * replace all "baseurl" to "new_url" in config, profile, term, items and contacts
55                          * send relocate for every local user
56                          * */
57
58                         $old_url = DI::baseUrl()->get(true);
59
60                         // Generate host names for relocation the addresses in the format user@address.tld
61                         $new_host = str_replace("http://", "@", Strings::normaliseLink($new_url));
62                         $old_host = str_replace("http://", "@", Strings::normaliseLink($old_url));
63
64                         function update_table(App $a, $table_name, $fields, $old_url, $new_url)
65                         {
66                                 $dbold = DBA::escape($old_url);
67                                 $dbnew = DBA::escape($new_url);
68
69                                 $upd = [];
70                                 foreach ($fields as $f) {
71                                         $upd[] = "`$f` = REPLACE(`$f`, '$dbold', '$dbnew')";
72                                 }
73
74                                 $upds = implode(", ", $upd);
75
76                                 $r = DBA::e(sprintf("UPDATE %s SET %s;", $table_name, $upds));
77                                 if (!DBA::isResult($r)) {
78                                         notice("Failed updating '$table_name': " . DBA::errorMessage());
79                                         DI::baseUrl()->redirect('admin/site');
80                                 }
81                         }
82
83                         // update tables
84                         // update profile links in the format "http://server.tld"
85                         update_table($a, "profile", ['photo', 'thumb'], $old_url, $new_url);
86                         update_table($a, "term", ['url'], $old_url, $new_url);
87                         update_table($a, "contact", ['photo', 'thumb', 'micro', 'url', 'nurl', 'alias', 'request', 'notify', 'poll', 'confirm', 'poco', 'avatar'], $old_url, $new_url);
88                         update_table($a, "gcontact", ['url', 'nurl', 'photo', 'server_url', 'notify', 'alias'], $old_url, $new_url);
89                         update_table($a, "item", ['owner-link', 'author-link', 'body', 'plink', 'tag'], $old_url, $new_url);
90
91                         // update profile addresses in the format "user@server.tld"
92                         update_table($a, "contact", ['addr'], $old_host, $new_host);
93                         update_table($a, "gcontact", ['connect', 'addr'], $old_host, $new_host);
94
95                         // update config
96                         DI::config()->set('system', 'url', $new_url);
97                         DI::baseUrl()->saveByURL($new_url);
98
99                         // send relocate
100                         $usersStmt = DBA::select('user', ['uid'], ['account_removed' => false, 'account_expired' => false]);
101                         while ($user = DBA::fetch($usersStmt)) {
102                                 Worker::add(PRIORITY_HIGH, 'Notifier', Delivery::RELOCATION, $user['uid']);
103                         }
104
105                         info("Relocation started. Could take a while to complete.");
106
107                         DI::baseUrl()->redirect('admin/site');
108                 }
109                 // end relocate
110
111                 $sitename         = (!empty($_POST['sitename'])         ? Strings::escapeTags(trim($_POST['sitename']))      : '');
112                 $sender_email     = (!empty($_POST['sender_email'])     ? Strings::escapeTags(trim($_POST['sender_email']))  : '');
113                 $banner           = (!empty($_POST['banner'])           ? trim($_POST['banner'])                             : false);
114                 $email_banner     = (!empty($_POST['email_banner'])     ? trim($_POST['email_banner'])                       : false);
115                 $shortcut_icon    = (!empty($_POST['shortcut_icon'])    ? Strings::escapeTags(trim($_POST['shortcut_icon'])) : '');
116                 $touch_icon       = (!empty($_POST['touch_icon'])       ? Strings::escapeTags(trim($_POST['touch_icon']))    : '');
117                 $additional_info  = (!empty($_POST['additional_info'])  ? trim($_POST['additional_info'])                    : '');
118                 $language         = (!empty($_POST['language'])         ? Strings::escapeTags(trim($_POST['language']))      : '');
119                 $theme            = (!empty($_POST['theme'])            ? Strings::escapeTags(trim($_POST['theme']))         : '');
120                 $theme_mobile     = (!empty($_POST['theme_mobile'])     ? Strings::escapeTags(trim($_POST['theme_mobile']))  : '');
121                 $maximagesize     = (!empty($_POST['maximagesize'])     ? intval(trim($_POST['maximagesize']))               : 0);
122                 $maximagelength   = (!empty($_POST['maximagelength'])   ? intval(trim($_POST['maximagelength']))             : MAX_IMAGE_LENGTH);
123                 $jpegimagequality = (!empty($_POST['jpegimagequality']) ? intval(trim($_POST['jpegimagequality']))           : JPEG_QUALITY);
124
125                 $register_policy        = (!empty($_POST['register_policy'])         ? intval(trim($_POST['register_policy']))             : 0);
126                 $daily_registrations    = (!empty($_POST['max_daily_registrations']) ? intval(trim($_POST['max_daily_registrations']))     : 0);
127                 $abandon_days           = (!empty($_POST['abandon_days'])            ? intval(trim($_POST['abandon_days']))                : 0);
128
129                 $register_text          = (!empty($_POST['register_text'])           ? strip_tags(trim($_POST['register_text']))           : '');
130
131                 $allowed_sites          = (!empty($_POST['allowed_sites'])           ? Strings::escapeTags(trim($_POST['allowed_sites']))  : '');
132                 $allowed_email          = (!empty($_POST['allowed_email'])           ? Strings::escapeTags(trim($_POST['allowed_email']))  : '');
133                 $forbidden_nicknames    = (!empty($_POST['forbidden_nicknames'])     ? strtolower(Strings::escapeTags(trim($_POST['forbidden_nicknames']))) : '');
134                 $no_oembed_rich_content = !empty($_POST['no_oembed_rich_content']);
135                 $allowed_oembed         = (!empty($_POST['allowed_oembed'])          ? Strings::escapeTags(trim($_POST['allowed_oembed'])) : '');
136                 $block_public           = !empty($_POST['block_public']);
137                 $force_publish          = !empty($_POST['publish_all']);
138                 $global_directory       = (!empty($_POST['directory'])               ? Strings::escapeTags(trim($_POST['directory']))      : '');
139                 $newuser_private        = !empty($_POST['newuser_private']);
140                 $enotify_no_content     = !empty($_POST['enotify_no_content']);
141                 $private_addons         = !empty($_POST['private_addons']);
142                 $disable_embedded       = !empty($_POST['disable_embedded']);
143                 $allow_users_remote_self = !empty($_POST['allow_users_remote_self']);
144                 $explicit_content       = !empty($_POST['explicit_content']);
145
146                 $no_multi_reg           = !empty($_POST['no_multi_reg']);
147                 $no_openid              = !empty($_POST['no_openid']);
148                 $no_regfullname         = !empty($_POST['no_regfullname']);
149                 $community_page_style   = (!empty($_POST['community_page_style']) ? intval(trim($_POST['community_page_style'])) : 0);
150                 $max_author_posts_community_page = (!empty($_POST['max_author_posts_community_page']) ? intval(trim($_POST['max_author_posts_community_page'])) : 0);
151
152                 $verifyssl              = !empty($_POST['verifyssl']);
153                 $proxyuser              = (!empty($_POST['proxyuser'])              ? Strings::escapeTags(trim($_POST['proxyuser'])) : '');
154                 $proxy                  = (!empty($_POST['proxy'])                  ? Strings::escapeTags(trim($_POST['proxy']))     : '');
155                 $timeout                = (!empty($_POST['timeout'])                ? intval(trim($_POST['timeout']))                : 60);
156                 $maxloadavg             = (!empty($_POST['maxloadavg'])             ? intval(trim($_POST['maxloadavg']))             : 20);
157                 $maxloadavg_frontend    = (!empty($_POST['maxloadavg_frontend'])    ? intval(trim($_POST['maxloadavg_frontend']))    : 50);
158                 $min_memory             = (!empty($_POST['min_memory'])             ? intval(trim($_POST['min_memory']))             : 0);
159                 $optimize_max_tablesize = (!empty($_POST['optimize_max_tablesize']) ? intval(trim($_POST['optimize_max_tablesize'])) : 100);
160                 $optimize_fragmentation = (!empty($_POST['optimize_fragmentation']) ? intval(trim($_POST['optimize_fragmentation'])) : 30);
161                 $poco_completion        = (!empty($_POST['poco_completion'])        ? intval(trim($_POST['poco_completion']))        : false);
162                 $poco_requery_days      = (!empty($_POST['poco_requery_days'])      ? intval(trim($_POST['poco_requery_days']))      : 7);
163                 $poco_discovery         = (!empty($_POST['poco_discovery'])         ? intval(trim($_POST['poco_discovery']))         : PortableContact::DISABLED);
164                 $poco_discovery_since   = (!empty($_POST['poco_discovery_since'])   ? intval(trim($_POST['poco_discovery_since']))   : 30);
165                 $poco_local_search      = !empty($_POST['poco_local_search']);
166                 $nodeinfo               = !empty($_POST['nodeinfo']);
167                 $dfrn_only              = !empty($_POST['dfrn_only']);
168                 $ostatus_disabled       = !empty($_POST['ostatus_disabled']);
169                 $diaspora_enabled       = !empty($_POST['diaspora_enabled']);
170                 $ssl_policy             = (!empty($_POST['ssl_policy'])             ? intval($_POST['ssl_policy'])                    : 0);
171                 $force_ssl              = !empty($_POST['force_ssl']);
172                 $hide_help              = !empty($_POST['hide_help']);
173                 $dbclean                = !empty($_POST['dbclean']);
174                 $dbclean_expire_days    = (!empty($_POST['dbclean_expire_days'])    ? intval($_POST['dbclean_expire_days'])           : 0);
175                 $dbclean_unclaimed      = (!empty($_POST['dbclean_unclaimed'])      ? intval($_POST['dbclean_unclaimed'])             : 0);
176                 $dbclean_expire_conv    = (!empty($_POST['dbclean_expire_conv'])    ? intval($_POST['dbclean_expire_conv'])           : 0);
177                 $suppress_tags          = !empty($_POST['suppress_tags']);
178                 $itemcache              = (!empty($_POST['itemcache'])              ? Strings::escapeTags(trim($_POST['itemcache']))  : '');
179                 $itemcache_duration     = (!empty($_POST['itemcache_duration'])     ? intval($_POST['itemcache_duration'])            : 0);
180                 $max_comments           = (!empty($_POST['max_comments'])           ? intval($_POST['max_comments'])                  : 0);
181                 $temppath               = (!empty($_POST['temppath'])               ? Strings::escapeTags(trim($_POST['temppath']))   : '');
182                 $singleuser             = (!empty($_POST['singleuser'])             ? Strings::escapeTags(trim($_POST['singleuser'])) : '');
183                 $proxy_disabled         = !empty($_POST['proxy_disabled']);
184                 $only_tag_search        = !empty($_POST['only_tag_search']);
185                 $rino                   = (!empty($_POST['rino'])                   ? intval($_POST['rino'])                          : 0);
186                 $check_new_version_url  = (!empty($_POST['check_new_version_url'])  ? Strings::escapeTags(trim($_POST['check_new_version_url'])) : 'none');
187
188                 $worker_queues    = (!empty($_POST['worker_queues'])                ? intval($_POST['worker_queues'])                 : 10);
189                 $worker_dont_fork = !empty($_POST['worker_dont_fork']);
190                 $worker_fastlane  = !empty($_POST['worker_fastlane']);
191                 $worker_frontend  = !empty($_POST['worker_frontend']);
192
193                 $relay_directly    = !empty($_POST['relay_directly']);
194                 $relay_server      = (!empty($_POST['relay_server'])      ? Strings::escapeTags(trim($_POST['relay_server']))       : '');
195                 $relay_subscribe   = !empty($_POST['relay_subscribe']);
196                 $relay_scope       = (!empty($_POST['relay_scope'])       ? Strings::escapeTags(trim($_POST['relay_scope']))        : '');
197                 $relay_server_tags = (!empty($_POST['relay_server_tags']) ? Strings::escapeTags(trim($_POST['relay_server_tags']))  : '');
198                 $relay_user_tags   = !empty($_POST['relay_user_tags']);
199                 $active_panel      = (!empty($_POST['active_panel'])      ? "#" . Strings::escapeTags(trim($_POST['active_panel'])) : '');
200
201                 $storagebackend    = Strings::escapeTags(trim($_POST['storagebackend'] ?? ''));
202
203                 // save storage backend form
204                 if (DI::storageManager()->setBackend($storagebackend)) {
205                         $storage_opts     = DI::storage()->getOptions();
206                         $storage_form_prefix = preg_replace('|[^a-zA-Z0-9]|', '', $storagebackend);
207                         $storage_opts_data   = [];
208                         foreach ($storage_opts as $name => $info) {
209                                 $fieldname = $storage_form_prefix . '_' . $name;
210                                 switch ($info[0]) { // type
211                                         case 'checkbox':
212                                         case 'yesno':
213                                                 $value = !empty($_POST[$fieldname]);
214                                                 break;
215                                         default:
216                                                 $value = $_POST[$fieldname] ?? '';
217                                 }
218                                 $storage_opts_data[$name] = $value;
219                         }
220                         unset($name);
221                         unset($info);
222
223                         $storage_form_errors = DI::storage()->saveOptions($storage_opts_data);
224                         if (count($storage_form_errors)) {
225                                 foreach ($storage_form_errors as $name => $err) {
226                                         notice('Storage backend, ' . $storage_opts[$name][1] . ': ' . $err);
227                                 }
228                                 DI::baseUrl()->redirect('admin/site' . $active_panel);
229                         }
230                 } else {
231                         info(DI::l10n()->t('Invalid storage backend setting value.'));
232                 }
233
234                 // Has the directory url changed? If yes, then resubmit the existing profiles there
235                 if ($global_directory != DI::config()->get('system', 'directory') && ($global_directory != '')) {
236                         DI::config()->set('system', 'directory', $global_directory);
237                         Worker::add(PRIORITY_LOW, 'Directory');
238                 }
239
240                 if (DI::baseUrl()->getUrlPath() != "") {
241                         $diaspora_enabled = false;
242                 }
243                 if ($ssl_policy != intval(DI::config()->get('system', 'ssl_policy'))) {
244                         if ($ssl_policy == App\BaseURL::SSL_POLICY_FULL) {
245                                 DBA::e("UPDATE `contact` SET
246                                 `url`     = REPLACE(`url`    , 'http:' , 'https:'),
247                                 `photo`   = REPLACE(`photo`  , 'http:' , 'https:'),
248                                 `thumb`   = REPLACE(`thumb`  , 'http:' , 'https:'),
249                                 `micro`   = REPLACE(`micro`  , 'http:' , 'https:'),
250                                 `request` = REPLACE(`request`, 'http:' , 'https:'),
251                                 `notify`  = REPLACE(`notify` , 'http:' , 'https:'),
252                                 `poll`    = REPLACE(`poll`   , 'http:' , 'https:'),
253                                 `confirm` = REPLACE(`confirm`, 'http:' , 'https:'),
254                                 `poco`    = REPLACE(`poco`   , 'http:' , 'https:')
255                                 WHERE `self` = 1"
256                                 );
257                                 DBA::e("UPDATE `profile` SET
258                                 `photo`   = REPLACE(`photo`  , 'http:' , 'https:'),
259                                 `thumb`   = REPLACE(`thumb`  , 'http:' , 'https:')
260                                 WHERE 1 "
261                                 );
262                         } elseif ($ssl_policy == App\BaseURL::SSL_POLICY_SELFSIGN) {
263                                 DBA::e("UPDATE `contact` SET
264                                 `url`     = REPLACE(`url`    , 'https:' , 'http:'),
265                                 `photo`   = REPLACE(`photo`  , 'https:' , 'http:'),
266                                 `thumb`   = REPLACE(`thumb`  , 'https:' , 'http:'),
267                                 `micro`   = REPLACE(`micro`  , 'https:' , 'http:'),
268                                 `request` = REPLACE(`request`, 'https:' , 'http:'),
269                                 `notify`  = REPLACE(`notify` , 'https:' , 'http:'),
270                                 `poll`    = REPLACE(`poll`   , 'https:' , 'http:'),
271                                 `confirm` = REPLACE(`confirm`, 'https:' , 'http:'),
272                                 `poco`    = REPLACE(`poco`   , 'https:' , 'http:')
273                                 WHERE `self` = 1"
274                                 );
275                                 DBA::e("UPDATE `profile` SET
276                                 `photo`   = REPLACE(`photo`  , 'https:' , 'http:'),
277                                 `thumb`   = REPLACE(`thumb`  , 'https:' , 'http:')
278                                 WHERE 1 "
279                                 );
280                         }
281                 }
282                 DI::config()->set('system', 'ssl_policy'            , $ssl_policy);
283                 DI::config()->set('system', 'maxloadavg'            , $maxloadavg);
284                 DI::config()->set('system', 'maxloadavg_frontend'   , $maxloadavg_frontend);
285                 DI::config()->set('system', 'min_memory'            , $min_memory);
286                 DI::config()->set('system', 'optimize_max_tablesize', $optimize_max_tablesize);
287                 DI::config()->set('system', 'optimize_fragmentation', $optimize_fragmentation);
288                 DI::config()->set('system', 'poco_completion'       , $poco_completion);
289                 DI::config()->set('system', 'poco_requery_days'     , $poco_requery_days);
290                 DI::config()->set('system', 'poco_discovery'        , $poco_discovery);
291                 DI::config()->set('system', 'poco_discovery_since'  , $poco_discovery_since);
292                 DI::config()->set('system', 'poco_local_search'     , $poco_local_search);
293                 DI::config()->set('system', 'nodeinfo'              , $nodeinfo);
294                 DI::config()->set('config', 'sitename'              , $sitename);
295                 DI::config()->set('config', 'sender_email'          , $sender_email);
296                 DI::config()->set('system', 'suppress_tags'         , $suppress_tags);
297                 DI::config()->set('system', 'shortcut_icon'         , $shortcut_icon);
298                 DI::config()->set('system', 'touch_icon'            , $touch_icon);
299
300                 if ($banner == "") {
301                         DI::config()->delete('system', 'banner');
302                 } else {
303                         DI::config()->set('system', 'banner', $banner);
304                 }
305
306                 if (empty($email_banner)) {
307                         DI::config()->delete('system', 'email_banner');
308                 } else {
309                         DI::config()->set('system', 'email_banner', $email_banner);
310                 }
311
312                 if (empty($additional_info)) {
313                         DI::config()->delete('config', 'info');
314                 } else {
315                         DI::config()->set('config', 'info', $additional_info);
316                 }
317                 DI::config()->set('system', 'language', $language);
318                 DI::config()->set('system', 'theme', $theme);
319                 Theme::install($theme);
320
321                 if ($theme_mobile == '---') {
322                         DI::config()->delete('system', 'mobile-theme');
323                 } else {
324                         DI::config()->set('system', 'mobile-theme', $theme_mobile);
325                 }
326                 if ($singleuser == '---') {
327                         DI::config()->delete('system', 'singleuser');
328                 } else {
329                         DI::config()->set('system', 'singleuser', $singleuser);
330                 }
331                 DI::config()->set('system', 'maximagesize'           , $maximagesize);
332                 DI::config()->set('system', 'max_image_length'       , $maximagelength);
333                 DI::config()->set('system', 'jpeg_quality'           , $jpegimagequality);
334
335                 DI::config()->set('config', 'register_policy'        , $register_policy);
336                 DI::config()->set('system', 'max_daily_registrations', $daily_registrations);
337                 DI::config()->set('system', 'account_abandon_days'   , $abandon_days);
338                 DI::config()->set('config', 'register_text'          , $register_text);
339                 DI::config()->set('system', 'allowed_sites'          , $allowed_sites);
340                 DI::config()->set('system', 'allowed_email'          , $allowed_email);
341                 DI::config()->set('system', 'forbidden_nicknames'    , $forbidden_nicknames);
342                 DI::config()->set('system', 'no_oembed_rich_content' , $no_oembed_rich_content);
343                 DI::config()->set('system', 'allowed_oembed'         , $allowed_oembed);
344                 DI::config()->set('system', 'block_public'           , $block_public);
345                 DI::config()->set('system', 'publish_all'            , $force_publish);
346                 DI::config()->set('system', 'newuser_private'        , $newuser_private);
347                 DI::config()->set('system', 'enotify_no_content'     , $enotify_no_content);
348                 DI::config()->set('system', 'disable_embedded'       , $disable_embedded);
349                 DI::config()->set('system', 'allow_users_remote_self', $allow_users_remote_self);
350                 DI::config()->set('system', 'explicit_content'       , $explicit_content);
351                 DI::config()->set('system', 'check_new_version_url'  , $check_new_version_url);
352
353                 DI::config()->set('system', 'block_extended_register', $no_multi_reg);
354                 DI::config()->set('system', 'no_openid'              , $no_openid);
355                 DI::config()->set('system', 'no_regfullname'         , $no_regfullname);
356                 DI::config()->set('system', 'community_page_style'   , $community_page_style);
357                 DI::config()->set('system', 'max_author_posts_community_page', $max_author_posts_community_page);
358                 DI::config()->set('system', 'verifyssl'              , $verifyssl);
359                 DI::config()->set('system', 'proxyuser'              , $proxyuser);
360                 DI::config()->set('system', 'proxy'                  , $proxy);
361                 DI::config()->set('system', 'curl_timeout'           , $timeout);
362                 DI::config()->set('system', 'dfrn_only'              , $dfrn_only);
363                 DI::config()->set('system', 'ostatus_disabled'       , $ostatus_disabled);
364                 DI::config()->set('system', 'diaspora_enabled'       , $diaspora_enabled);
365
366                 DI::config()->set('config', 'private_addons'         , $private_addons);
367
368                 DI::config()->set('system', 'force_ssl'              , $force_ssl);
369                 DI::config()->set('system', 'hide_help'              , $hide_help);
370
371                 DI::config()->set('system', 'dbclean'                , $dbclean);
372                 DI::config()->set('system', 'dbclean-expire-days'    , $dbclean_expire_days);
373                 DI::config()->set('system', 'dbclean_expire_conversation', $dbclean_expire_conv);
374
375                 if ($dbclean_unclaimed == 0) {
376                         $dbclean_unclaimed = $dbclean_expire_days;
377                 }
378
379                 DI::config()->set('system', 'dbclean-expire-unclaimed', $dbclean_unclaimed);
380
381                 if ($itemcache != '') {
382                         $itemcache = BasePath::getRealPath($itemcache);
383                 }
384
385                 DI::config()->set('system', 'itemcache', $itemcache);
386                 DI::config()->set('system', 'itemcache_duration', $itemcache_duration);
387                 DI::config()->set('system', 'max_comments', $max_comments);
388
389                 if ($temppath != '') {
390                         $temppath = BasePath::getRealPath($temppath);
391                 }
392
393                 DI::config()->set('system', 'temppath', $temppath);
394
395                 DI::config()->set('system', 'proxy_disabled'   , $proxy_disabled);
396                 DI::config()->set('system', 'only_tag_search'  , $only_tag_search);
397
398                 DI::config()->set('system', 'worker_queues'    , $worker_queues);
399                 DI::config()->set('system', 'worker_dont_fork' , $worker_dont_fork);
400                 DI::config()->set('system', 'worker_fastlane'  , $worker_fastlane);
401                 DI::config()->set('system', 'frontend_worker'  , $worker_frontend);
402
403                 DI::config()->set('system', 'relay_directly'   , $relay_directly);
404                 DI::config()->set('system', 'relay_server'     , $relay_server);
405                 DI::config()->set('system', 'relay_subscribe'  , $relay_subscribe);
406                 DI::config()->set('system', 'relay_scope'      , $relay_scope);
407                 DI::config()->set('system', 'relay_server_tags', $relay_server_tags);
408                 DI::config()->set('system', 'relay_user_tags'  , $relay_user_tags);
409
410                 DI::config()->set('system', 'rino_encrypt'     , $rino);
411
412                 info(DI::l10n()->t('Site settings updated.') . EOL);
413
414                 DI::baseUrl()->redirect('admin/site' . $active_panel);
415         }
416
417         public static function content(array $parameters = [])
418         {
419                 parent::content($parameters);
420
421                 /* Installed langs */
422                 $lang_choices = DI::l10n()->getAvailableLanguages();
423
424                 if (strlen(DI::config()->get('system', 'directory_submit_url')) &&
425                         !strlen(DI::config()->get('system', 'directory'))) {
426                         DI::config()->set('system', 'directory', dirname(DI::config()->get('system', 'directory_submit_url')));
427                         DI::config()->delete('system', 'directory_submit_url');
428                 }
429
430                 /* Installed themes */
431                 $theme_choices = [];
432                 $theme_choices_mobile = [];
433                 $theme_choices_mobile['---'] = DI::l10n()->t('No special theme for mobile devices');
434                 $files = glob('view/theme/*');
435                 if (is_array($files)) {
436                         $allowed_theme_list = DI::config()->get('system', 'allowed_themes');
437
438                         foreach ($files as $file) {
439                                 if (intval(file_exists($file . '/unsupported'))) {
440                                         continue;
441                                 }
442
443                                 $f = basename($file);
444
445                                 // Only show allowed themes here
446                                 if (($allowed_theme_list != '') && !strstr($allowed_theme_list, $f)) {
447                                         continue;
448                                 }
449
450                                 $theme_name = ((file_exists($file . '/experimental')) ? DI::l10n()->t('%s - (Experimental)', $f) : $f);
451
452                                 if (file_exists($file . '/mobile')) {
453                                         $theme_choices_mobile[$f] = $theme_name;
454                                 } else {
455                                         $theme_choices[$f] = $theme_name;
456                                 }
457                         }
458                 }
459
460                 /* Community page style */
461                 $community_page_style_choices = [
462                         CP_NO_INTERNAL_COMMUNITY => DI::l10n()->t('No community page for local users'),
463                         CP_NO_COMMUNITY_PAGE => DI::l10n()->t('No community page'),
464                         CP_USERS_ON_SERVER => DI::l10n()->t('Public postings from users of this site'),
465                         CP_GLOBAL_COMMUNITY => DI::l10n()->t('Public postings from the federated network'),
466                         CP_USERS_AND_GLOBAL => DI::l10n()->t('Public postings from local users and the federated network')
467                 ];
468
469                 $poco_discovery_choices = [
470                         PortableContact::DISABLED => DI::l10n()->t('Disabled'),
471                         PortableContact::USERS => DI::l10n()->t('Users'),
472                         PortableContact::USERS_GCONTACTS => DI::l10n()->t('Users, Global Contacts'),
473                         PortableContact::USERS_GCONTACTS_FALLBACK => DI::l10n()->t('Users, Global Contacts/fallback'),
474                 ];
475
476                 $poco_discovery_since_choices = [
477                         '30' => DI::l10n()->t('One month'),
478                         '91' => DI::l10n()->t('Three months'),
479                         '182' => DI::l10n()->t('Half a year'),
480                         '365' => DI::l10n()->t('One year'),
481                 ];
482
483                 /* get user names to make the install a personal install of X */
484                 // @TODO Move to Model\User::getNames()
485                 $user_names = [];
486                 $user_names['---'] = DI::l10n()->t('Multi user instance');
487
488                 $usersStmt = DBA::select('user', ['username', 'nickname'], ['account_removed' => 0, 'account_expired' => 0]);
489                 foreach (DBA::toArray($usersStmt) as $user) {
490                         $user_names[$user['nickname']] = $user['username'];
491                 }
492
493                 /* Banner */
494                 $banner = DI::config()->get('system', 'banner');
495
496                 if ($banner == false) {
497                         $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>';
498                 }
499
500                 $email_banner = DI::config()->get('system', 'email_banner');
501
502                 if ($email_banner == false) {
503                         $email_banner = MailBuilder::DEFAULT_EMAIL_BANNER;
504                 }
505
506                 $additional_info = DI::config()->get('config', 'info');
507
508                 // Automatically create temporary paths
509                 get_temppath();
510                 get_itemcachepath();
511
512                 /* Register policy */
513                 $register_choices = [
514                         Register::CLOSED => DI::l10n()->t('Closed'),
515                         Register::APPROVE => DI::l10n()->t('Requires approval'),
516                         Register::OPEN => DI::l10n()->t('Open')
517                 ];
518
519                 $ssl_choices = [
520                         App\BaseURL::SSL_POLICY_NONE => DI::l10n()->t('No SSL policy, links will track page SSL state'),
521                         App\BaseURL::SSL_POLICY_FULL => DI::l10n()->t('Force all links to use SSL'),
522                         App\BaseURL::SSL_POLICY_SELFSIGN => DI::l10n()->t('Self-signed certificate, use SSL for local links only (discouraged)')
523                 ];
524
525                 $check_git_version_choices = [
526                         'none' => DI::l10n()->t('Don\'t check'),
527                         'master' => DI::l10n()->t('check the stable version'),
528                         'develop' => DI::l10n()->t('check the development version')
529                 ];
530
531                 $diaspora_able = (DI::baseUrl()->getUrlPath() == '');
532
533                 $optimize_max_tablesize = DI::config()->get('system', 'optimize_max_tablesize', -1);
534
535                 if ($optimize_max_tablesize <= 0) {
536                         $optimize_max_tablesize = -1;
537                 }
538
539                 $current_storage_backend = DI::storage();
540                 $available_storage_backends = [];
541
542                 // show legacy option only if it is the current backend:
543                 // once changed can't be selected anymore
544                 if ($current_storage_backend == null) {
545                         $available_storage_backends[''] = DI::l10n()->t('Database (legacy)');
546                 }
547
548                 foreach (DI::storageManager()->listBackends() as $name => $class) {
549                         $available_storage_backends[$name] = $name;
550                 }
551
552                 // build storage config form,
553                 $storage_form_prefix = preg_replace('|[^a-zA-Z0-9]|' ,'', $current_storage_backend);
554
555                 $storage_form = [];
556                 if (!is_null($current_storage_backend) && $current_storage_backend != '') {
557                         foreach ($current_storage_backend->getOptions() as $name => $info) {
558                                 $type = $info[0];
559                                 // Backward compatibilty with yesno field description
560                                 if ($type == 'yesno') {
561                                         $type = 'checkbox';
562                                         // Remove translated labels Yes No from field info
563                                         unset($info[4]);
564                                 }
565
566                                 $info[0] = $storage_form_prefix . '_' . $name;
567                                 $info['type'] = $type;
568                                 $info['field'] = 'field_' . $type . '.tpl';
569                                 $storage_form[$name] = $info;
570                         }
571                 }
572
573                 $t = Renderer::getMarkupTemplate('admin/site.tpl');
574                 return Renderer::replaceMacros($t, [
575                         '$title'             => DI::l10n()->t('Administration'),
576                         '$page'              => DI::l10n()->t('Site'),
577                         '$submit'            => DI::l10n()->t('Save Settings'),
578                         '$republish'         => DI::l10n()->t('Republish users to directory'),
579                         '$registration'      => DI::l10n()->t('Registration'),
580                         '$upload'            => DI::l10n()->t('File upload'),
581                         '$corporate'         => DI::l10n()->t('Policies'),
582                         '$advanced'          => DI::l10n()->t('Advanced'),
583                         '$portable_contacts' => DI::l10n()->t('Auto Discovered Contact Directory'),
584                         '$performance'       => DI::l10n()->t('Performance'),
585                         '$worker_title'      => DI::l10n()->t('Worker'),
586                         '$relay_title'       => DI::l10n()->t('Message Relay'),
587                         '$relocate'          => DI::l10n()->t('Relocate Instance'),
588                         '$relocate_warning'  => DI::l10n()->t('Warning! Advanced function. Could make this server unreachable.'),
589                         '$baseurl'           => DI::baseUrl()->get(true),
590
591                         // name, label, value, help string, extra data...
592                         '$sitename'         => ['sitename', DI::l10n()->t('Site name'), DI::config()->get('config', 'sitename'), ''],
593                         '$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'],
594                         '$banner'           => ['banner', DI::l10n()->t('Banner/Logo'), $banner, ''],
595                         '$email_banner'     => ['email_banner', DI::l10n()->t('Email Banner/Logo'), $email_banner, ''],
596                         '$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.')],
597                         '$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.')],
598                         '$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())],
599                         '$language'         => ['language', DI::l10n()->t('System language'), DI::config()->get('system', 'language'), '', $lang_choices],
600                         '$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],
601                         '$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],
602                         '$ssl_policy'       => ['ssl_policy', DI::l10n()->t('SSL link policy'), (string)intval(DI::config()->get('system', 'ssl_policy')), DI::l10n()->t('Determines whether generated links should be forced to use SSL'), $ssl_choices],
603                         '$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.')],
604                         '$hide_help'        => ['hide_help', DI::l10n()->t('Hide help entry from navigation menu'), DI::config()->get('system', 'hide_help'), DI::l10n()->t('Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly.')],
605                         '$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],
606
607                         '$storagebackend'   => ['storagebackend', DI::l10n()->t('File storage backend'), $current_storage_backend, DI::l10n()->t('The backend used to store uploaded data. If you change the storage backend, you can manually move the existing files. If you do not do so, the files uploaded before the change will still be available at the old backend. Please see <a href="/help/Settings#1_2_3_1">the settings documentation</a> for more information about the choices and the moving procedure.'), $available_storage_backends],
608                         '$storageform'      => $storage_form,
609                         '$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.')],
610                         '$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.')],
611                         '$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.')],
612
613                         '$register_policy'        => ['register_policy', DI::l10n()->t('Register policy'), DI::config()->get('config', 'register_policy'), '', $register_choices],
614                         '$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.')],
615                         '$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.')],
616                         '$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.')],
617                         '$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.')],
618                         '$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')],
619                         '$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')],
620                         '$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.')],
621                         '$allowed_oembed'         => ['allowed_oembed', DI::l10n()->t('Allowed OEmbed domains'), DI::config()->get('system', 'allowed_oembed'), DI::l10n()->t('Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted.')],
622                         '$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.')],
623                         '$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>'],
624                         '$global_directory'       => ['directory', DI::l10n()->t('Global directory URL'), DI::config()->get('system', 'directory', 'https://dir.friendica.social'), DI::l10n()->t('URL to the global directory. If this is not set, the global directory is completely unavailable to the application.')],
625                         '$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.')],
626                         '$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.')],
627                         '$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.')],
628                         '$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.')],
629                         '$explicit_content'       => ['explicit_content', DI::l10n()->t('Explicit Content'), DI::config()->get('system', 'explicit_content', false), 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.')],
630                         '$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.')],
631                         '$no_multi_reg'           => ['no_multi_reg', DI::l10n()->t('Block multiple registrations'), DI::config()->get('system', 'block_extended_register'), DI::l10n()->t('Disallow users to register additional accounts for use as pages.')],
632                         '$no_openid'              => ['no_openid', DI::l10n()->t('Disable OpenID'), DI::config()->get('system', 'no_openid'), DI::l10n()->t('Disable OpenID support for registration and logins.')],
633                         '$no_regfullname'         => ['no_regfullname', DI::l10n()->t('No Fullname check'), DI::config()->get('system', 'no_regfullname'), DI::l10n()->t('Allow users to register without a space between the first name and the last name in their full name.')],
634                         '$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],
635                         '$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")')],
636                         '$ostatus_disabled'       => ['ostatus_disabled', DI::l10n()->t('Disable OStatus support'), DI::config()->get('system', 'ostatus_disabled'), DI::l10n()->t('Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed.')],
637                         '$ostatus_not_able'       => DI::l10n()->t('OStatus support can only be enabled if threading is enabled.'),
638                         '$diaspora_able'          => $diaspora_able,
639                         '$diaspora_not_able'      => DI::l10n()->t('Diaspora support can\'t be enabled because Friendica was installed into a sub directory.'),
640                         '$diaspora_enabled'       => ['diaspora_enabled', DI::l10n()->t('Enable Diaspora support'), DI::config()->get('system', 'diaspora_enabled', $diaspora_able), DI::l10n()->t('Provide built-in Diaspora network compatibility.')],
641                         '$dfrn_only'              => ['dfrn_only', DI::l10n()->t('Only allow Friendica contacts'), DI::config()->get('system', 'dfrn_only'), DI::l10n()->t('All contacts must use Friendica protocols. All other built-in communication protocols disabled.')],
642                         '$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.')],
643                         '$proxyuser'              => ['proxyuser', DI::l10n()->t('Proxy user'), DI::config()->get('system', 'proxyuser'), ''],
644                         '$proxy'                  => ['proxy', DI::l10n()->t('Proxy URL'), DI::config()->get('system', 'proxy'), ''],
645                         '$timeout'                => ['timeout', DI::l10n()->t('Network timeout'), DI::config()->get('system', 'curl_timeout', 60), DI::l10n()->t('Value is in seconds. Set to 0 for unlimited (not recommended).')],
646                         '$maxloadavg'             => ['maxloadavg', DI::l10n()->t('Maximum Load Average'), DI::config()->get('system', 'maxloadavg', 20), DI::l10n()->t('Maximum system load before delivery and poll processes are deferred - default %d.', 20)],
647                         '$maxloadavg_frontend'    => ['maxloadavg_frontend', DI::l10n()->t('Maximum Load Average (Frontend)'), DI::config()->get('system', 'maxloadavg_frontend', 50), DI::l10n()->t('Maximum system load before the frontend quits service - default 50.')],
648                         '$min_memory'             => ['min_memory', DI::l10n()->t('Minimal Memory'), DI::config()->get('system', 'min_memory', 0), DI::l10n()->t('Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 (deactivated).')],
649                         '$optimize_max_tablesize' => ['optimize_max_tablesize', DI::l10n()->t('Maximum table size for optimization'), $optimize_max_tablesize, DI::l10n()->t('Maximum table size (in MB) for the automatic optimization. Enter -1 to disable it.')],
650                         '$optimize_fragmentation' => ['optimize_fragmentation', DI::l10n()->t('Minimum level of fragmentation'), DI::config()->get('system', 'optimize_fragmentation', 30), DI::l10n()->t('Minimum fragmenation level to start the automatic optimization - default value is 30%.')],
651
652                         '$poco_completion'        => ['poco_completion', DI::l10n()->t('Periodical check of global contacts'), DI::config()->get('system', 'poco_completion'), DI::l10n()->t('If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers.')],
653                         '$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.')],
654                         '$poco_discovery'         => ['poco_discovery', DI::l10n()->t('Discover contacts from other servers'), (string)intval(DI::config()->get('system', 'poco_discovery')), DI::l10n()->t('Periodically query other servers for contacts. You can choose between "Users": the users on the remote system, "Global Contacts": active contacts that are known on the system. The fallback is meant for Redmatrix servers and older friendica servers, where global contacts weren\'t available. The fallback increases the server load, so the recommended setting is "Users, Global Contacts".'), $poco_discovery_choices],
655                         '$poco_discovery_since'   => ['poco_discovery_since', DI::l10n()->t('Timeframe for fetching global contacts'), (string)intval(DI::config()->get('system', 'poco_discovery_since')), DI::l10n()->t('When the discovery is activated, this value defines the timeframe for the activity of the global contacts that are fetched from other servers.'), $poco_discovery_since_choices],
656                         '$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.')],
657
658                         '$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.')],
659
660                         '$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],
661                         '$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.')],
662                         '$dbclean'                => ['dbclean', DI::l10n()->t('Clean database'), DI::config()->get('system', 'dbclean', false), DI::l10n()->t('Remove old remote items, orphaned database records and old content from some other helper tables.')],
663                         '$dbclean_expire_days'    => ['dbclean_expire_days', DI::l10n()->t('Lifespan of remote items'), DI::config()->get('system', 'dbclean-expire-days', 0), 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.')],
664                         '$dbclean_unclaimed'      => ['dbclean_unclaimed', DI::l10n()->t('Lifespan of unclaimed items'), DI::config()->get('system', 'dbclean-expire-unclaimed', 90), 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.')],
665                         '$dbclean_expire_conv'    => ['dbclean_expire_conv', DI::l10n()->t('Lifespan of raw conversation data'), DI::config()->get('system', 'dbclean_expire_conversation', 90), 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.')],
666                         '$itemcache'              => ['itemcache', DI::l10n()->t('Path to item cache'), DI::config()->get('system', 'itemcache'), DI::l10n()->t('The item caches buffers generated bbcode and external images.')],
667                         '$itemcache_duration'     => ['itemcache_duration', DI::l10n()->t('Cache duration in seconds'), DI::config()->get('system', 'itemcache_duration'), DI::l10n()->t('How long should the cache files be hold? Default value is 86400 seconds (One day). To disable the item cache, set the value to -1.')],
668                         '$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.')],
669                         '$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.')],
670                         '$proxy_disabled'         => ['proxy_disabled', DI::l10n()->t('Disable picture proxy'), DI::config()->get('system', 'proxy_disabled'), DI::l10n()->t('The picture proxy increases performance and privacy. It shouldn\'t be used on systems with very low bandwidth.')],
671                         '$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.')],
672
673                         '$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.')],
674
675                         '$rino'                   => ['rino', DI::l10n()->t('RINO Encryption'), intval(DI::config()->get('system', 'rino_encrypt')), DI::l10n()->t('Encryption layer between nodes.'), [0 => DI::l10n()->t('Disabled'), 1 => DI::l10n()->t('Enabled')]],
676
677                         '$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)],
678                         '$worker_dont_fork'       => ['worker_dont_fork', DI::l10n()->t('Don\'t use "proc_open" with the worker'), DI::config()->get('system', 'worker_dont_fork'), DI::l10n()->t('Enable this if your system doesn\'t allow the use of "proc_open". This can happen on shared hosters. If this is enabled you should increase the frequency of worker calls in your crontab.')],
679                         '$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.')],
680                         '$worker_frontend'        => ['worker_frontend', DI::l10n()->t('Enable frontend worker'), DI::config()->get('system', 'frontend_worker'), DI::l10n()->t('When enabled the Worker process is triggered when backend access is performed (e.g. messages being delivered). On smaller sites you might want to call %s/worker on a regular basis via an external cron job. You should only enable this option if you cannot utilize cron/scheduled jobs on your server.', DI::baseUrl()->get())],
681
682                         '$relay_subscribe'        => ['relay_subscribe', DI::l10n()->t('Subscribe to relay'), DI::config()->get('system', 'relay_subscribe'), DI::l10n()->t('Enables the receiving of public posts from the relay. They will be included in the search, subscribed tags and on the global community page.')],
683                         '$relay_server'           => ['relay_server', DI::l10n()->t('Relay server'), DI::config()->get('system', 'relay_server', 'https://relay.diasp.org'), DI::l10n()->t('Address of the relay server where public posts should be send to. For example https://relay.diasp.org')],
684                         '$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')],
685                         '$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.'), ['' => DI::l10n()->t('Disabled'), 'all' => DI::l10n()->t('all'), 'tags' => DI::l10n()->t('tags')]],
686                         '$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.')],
687                         '$relay_user_tags'        => ['relay_user_tags', DI::l10n()->t('Allow user tags'), DI::config()->get('system', 'relay_user_tags', true), DI::l10n()->t('If enabled, the tags from the saved searches will used for the "tags" subscription in addition to the "relay_server_tags".')],
688
689                         '$form_security_token'    => parent::getFormSecurityToken('admin_site'),
690                         '$relocate_button'        => DI::l10n()->t('Start Relocation'),
691                 ]);
692         }
693 }