]> git.mxchange.org Git - friendica.git/blob - mod/admin.php
d6b447c793f88204bdb0e645b728adef6f4b1ce7
[friendica.git] / mod / admin.php
1 <?php
2 /**
3  * @file mod/admin.php
4  *
5  * @brief Friendica admin
6  */
7
8 use Friendica\App;
9 use Friendica\BaseModule;
10 use Friendica\Content\Feature;
11 use Friendica\Content\Pager;
12 use Friendica\Content\Text\Markdown;
13 use Friendica\Core\Config;
14 use Friendica\Core\L10n;
15 use Friendica\Core\Logger;
16 use Friendica\Core\Renderer;
17 use Friendica\Core\StorageManager;
18 use Friendica\Core\System;
19 use Friendica\Core\Theme;
20 use Friendica\Core\Update;
21 use Friendica\Core\Worker;
22 use Friendica\Database\DBA;
23 use Friendica\Database\DBStructure;
24 use Friendica\Model\Contact;
25 use Friendica\Model\Item;
26 use Friendica\Model\Register;
27 use Friendica\Model\User;
28 use Friendica\Module;
29 use Friendica\Module\Login;
30 use Friendica\Module\Tos;
31 use Friendica\Protocol\PortableContact;
32 use Friendica\Util\Arrays;
33 use Friendica\Util\BasePath;
34 use Friendica\Util\BaseURL;
35 use Friendica\Util\DateTimeFormat;
36 use Friendica\Util\Network;
37 use Friendica\Util\Strings;
38 use Friendica\Util\Temporal;
39 use Psr\Log\LogLevel;
40
41 /**
42  * Sets the current theme for theme settings pages.
43  *
44  * This needs to be done before the post() or content() methods are called.
45  *
46  * @param App $a
47  */
48 function admin_init(App $a)
49 {
50         if ($a->argc > 2 && $a->argv[1] == 'themes') {
51                 $theme = $a->argv[2];
52                 if (is_file("view/theme/$theme/config.php")) {
53                         $a->setCurrentTheme($theme);
54                 }
55         }
56 }
57
58 /**
59  * @brief Process send data from the admin panels subpages
60  *
61  * This function acts as relay for processing the data send from the subpages
62  * of the admin panel. Depending on the 1st parameter of the url (argv[1])
63  * specialized functions are called to process the data from the subpages.
64  *
65  * The function itself does not return anything, but the subsequently function
66  * return the HTML for the pages of the admin panel.
67  *
68  * @param App $a
69  * @throws ImagickException
70  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
71  */
72 function admin_post(App $a)
73 {
74         if (!is_site_admin()) {
75                 return;
76         }
77
78         // do not allow a page manager to access the admin panel at all.
79
80         if (!empty($_SESSION['submanage'])) {
81                 return;
82         }
83
84         $return_path = 'admin';
85         if ($a->argc > 1) {
86                 switch ($a->argv[1]) {
87                         case 'site':
88                                 admin_page_site_post($a);
89                                 break;
90                         case 'themes':
91                                 if ($a->argc < 2) {
92                                         if ($a->isAjax()) {
93                                                 return;
94                                         }
95                                         $a->internalRedirect('admin/');
96                                         return;
97                                 }
98
99                                 $theme = $a->argv[2];
100                                 if (is_file("view/theme/$theme/config.php")) {
101                                         require_once "view/theme/$theme/config.php";
102
103                                         if (function_exists('theme_admin_post')) {
104                                                 theme_admin_post($a);
105                                         }
106                                 }
107
108                                 info(L10n::t('Theme settings updated.'));
109                                 if ($a->isAjax()) {
110                                         return;
111                                 }
112                                 $return_path = 'admin/themes/' . $theme . (!empty($_GET['mode']) ? '?mode=' . $_GET['mode'] : '');
113                                 break;
114                         case 'features':
115                                 admin_page_features_post($a);
116                                 break;
117                         case 'logs':
118                                 admin_page_logs_post($a);
119                                 break;
120                         case 'contactblock':
121                                 admin_page_contactblock_post($a);
122                                 break;
123                         case 'blocklist':
124                                 admin_page_blocklist_post($a);
125                                 break;
126                         case 'deleteitem':
127                                 admin_page_deleteitem_post($a);
128                                 break;
129                 }
130         }
131
132         $a->internalRedirect($return_path);
133         return; // NOTREACHED
134 }
135
136 /**
137  * @brief Generates content of the admin panel pages
138  *
139  * This function generates the content for the admin panel. It consists of the
140  * aside menu (same for the entire admin panel) and the code for the soecified
141  * subpage of the panel.
142  *
143  * The structure of the adress is: /admin/subpage/details though "details" is
144  * only necessary for some subpages, like themes or addons where it is the name
145  * of one theme resp. addon from which the details should be shown. Content for
146  * the subpages is generated in separate functions for each of the subpages.
147  *
148  * The returned string hold the generated HTML code of the page.
149  *
150  * @param App $a
151  * @return string
152  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
153  */
154 function admin_content(App $a)
155 {
156         if (!is_site_admin()) {
157                 return Login::form();
158         }
159
160         if (!empty($_SESSION['submanage'])) {
161                 return "";
162         }
163
164         // APC deactivated, since there are problems with PHP 5.5
165         //if (function_exists("apc_delete")) {
166         // $toDelete = new APCIterator('user', APC_ITER_VALUE);
167         // apc_delete($toDelete);
168         //}
169         // Header stuff
170         $a->page['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('admin/settings_head.tpl'), []);
171
172         /*
173          * Side bar links
174          */
175         $aside_tools = [];
176         // array(url, name, extra css classes)
177         // not part of $aside to make the template more adjustable
178         $aside_sub = [
179                 'information' => [L10n::t('Information'), [
180                         'overview' => ['admin/', L10n::t('Overview'), 'overview'],
181                         'federation'   => ['admin/federation/'  , L10n::t('Federation Statistics'), 'federation']]],
182                 'configuration' => [L10n::t('Configuration'), [
183                         'site'         => ['admin/site/'        , L10n::t('Site')                    , 'site'],
184                         'users'        => ['admin/users/'       , L10n::t('Users')                   , 'users'],
185                         'addons'       => ['admin/addons/'      , L10n::t('Addons')                  , 'addons'],
186                         'themes'       => ['admin/themes/'      , L10n::t('Themes')                  , 'themes'],
187                         'features'     => ['admin/features/'    , L10n::t('Additional features')     , 'features'],
188                         'tos'          => ['admin/tos/'         , L10n::t('Terms of Service')        , 'tos']]],
189                 'database' => [L10n::t('Database'), [
190                         'dbsync'       => ['admin/dbsync/'      , L10n::t('DB updates')              , 'dbsync'],
191                         'deferred'     => ['admin/deferred/'    , L10n::t('Inspect Deferred Workers'), 'deferred'],
192                         'workerqueue'  => ['admin/workerqueue/' , L10n::t('Inspect worker Queue')    , 'workerqueue']]],
193                 'tools' => [L10n::t('Tools'), [
194                         'contactblock' => ['admin/contactblock/', L10n::t('Contact Blocklist')       , 'contactblock'],
195                         'blocklist'    => ['admin/blocklist/'   , L10n::t('Server Blocklist')        , 'blocklist'],
196                         'deleteitem'   => ['admin/deleteitem/'  , L10n::t('Delete Item')             , 'deleteitem'],]],
197                 'logs' => [L10n::t('Logs'), [
198                         'logsconfig' => ['admin/logs/', L10n::t('Logs'), 'logs'],
199                         'logsview' => ['admin/viewlogs/', L10n::t('View Logs'), 'viewlogs']
200                 ]],
201                 'diagnostics' => [L10n::t('Diagnostics'), [
202                         'phpinfo' => ['phpinfo/', L10n::t('PHP Info'), 'phpinfo'],
203                         'probe' => ['probe/', L10n::t('probe address'), 'probe'],
204                         'webfinger' =>['webfinger/', L10n::t('check webfinger'), 'webfinger']
205                 ]]
206         ];
207
208         $aside_tools['addons_admin'] = [];
209
210         $t = Renderer::getMarkupTemplate('admin/aside.tpl');
211         $a->page['aside'] .= Renderer::replaceMacros($t, [
212                 '$admin' => $aside_tools,
213                 '$subpages' => $aside_sub,
214                 '$admtxt' => L10n::t('Admin'),
215                 '$plugadmtxt' => L10n::t('Addon Features'),
216                 '$h_pending' => L10n::t('User registrations waiting for confirmation'),
217                 '$admurl' => "admin/"
218         ]);
219
220         // Page content
221         $o = '';
222         // urls
223         if ($a->argc > 1) {
224                 switch ($a->argv[1]) {
225                         case 'site':
226                                 $o = admin_page_site($a);
227                                 break;
228                         case 'themes':
229                                 $o = admin_page_themes($a);
230                                 break;
231                         case 'features':
232                                 $o = admin_page_features($a);
233                                 break;
234                         case 'logs':
235                                 $o = admin_page_logs($a);
236                                 break;
237                         case 'viewlogs':
238                                 $o = admin_page_viewlogs($a);
239                                 break;
240                         case 'dbsync':
241                                 $o = admin_page_dbsync($a);
242                                 break;
243                         case 'deferred':
244                                 $o = admin_page_workerqueue($a, true);
245                                 break;
246                         case 'workerqueue':
247                                 $o = admin_page_workerqueue($a, false);
248                                 break;
249                         case 'contactblock':
250                                 $o = admin_page_contactblock($a);
251                                 break;
252                         case 'blocklist':
253                                 $o = admin_page_blocklist($a);
254                                 break;
255                         case 'deleteitem':
256                                 $o = admin_page_deleteitem($a);
257                                 break;
258                         default:
259                                 notice(L10n::t("Item not found."));
260                 }
261         }
262
263         if ($a->isAjax()) {
264                 echo $o;
265                 exit();
266         } else {
267                 return $o;
268         }
269 }
270
271 /**
272  * @brief Subpage to modify the server wide block list via the admin panel.
273  *
274  * This function generates the subpage of the admin panel to allow the
275  * modification of the node wide block/black list to block entire
276  * remote servers from communication with this node. The page allows
277  * adding, removing and editing of entries from the blocklist.
278  *
279  * @param App $a
280  * @return string
281  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
282  */
283 function admin_page_blocklist(App $a)
284 {
285         $blocklist = Config::get('system', 'blocklist');
286         $blocklistform = [];
287         if (is_array($blocklist)) {
288                 foreach ($blocklist as $id => $b) {
289                         $blocklistform[] = [
290                                 'domain' => ["domain[$id]", L10n::t('Blocked domain'), $b['domain'], '', L10n::t('The blocked domain'), 'required', '', ''],
291                                 'reason' => ["reason[$id]", L10n::t("Reason for the block"), $b['reason'], L10n::t('The reason why you blocked this domain.') . '(' . $b['domain'] . ')', 'required', '', ''],
292                                 'delete' => ["delete[$id]", L10n::t("Delete domain") . ' (' . $b['domain'] . ')', false, L10n::t("Check to delete this entry from the blocklist")]
293                         ];
294                 }
295         }
296         $t = Renderer::getMarkupTemplate('admin/blocklist.tpl');
297         return Renderer::replaceMacros($t, [
298                 '$title' => L10n::t('Administration'),
299                 '$page' => L10n::t('Server Blocklist'),
300                 '$intro' => L10n::t('This page can be used to define a black list of servers from the federated network that are not allowed to interact with your node. For all entered domains you should also give a reason why you have blocked the remote server.'),
301                 '$public' => L10n::t('The list of blocked servers will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily.'),
302                 '$addtitle' => L10n::t('Add new entry to block list'),
303                 '$newdomain' => ['newentry_domain', L10n::t('Server Domain'), '', L10n::t('The domain of the new server to add to the block list. Do not include the protocol.'), 'required', '', ''],
304                 '$newreason' => ['newentry_reason', L10n::t('Block reason'), '', L10n::t('The reason why you blocked this domain.'), 'required', '', ''],
305                 '$submit' => L10n::t('Add Entry'),
306                 '$savechanges' => L10n::t('Save changes to the blocklist'),
307                 '$currenttitle' => L10n::t('Current Entries in the Blocklist'),
308                 '$thurl' => L10n::t('Blocked domain'),
309                 '$threason' => L10n::t('Reason for the block'),
310                 '$delentry' => L10n::t('Delete entry from blocklist'),
311                 '$entries' => $blocklistform,
312                 '$baseurl' => System::baseUrl(true),
313                 '$confirm_delete' => L10n::t('Delete entry from blocklist?'),
314                 '$form_security_token' => BaseModule::getFormSecurityToken("admin_blocklist")
315         ]);
316 }
317
318 /**
319  * @brief Process send data from Admin Blocklist Page
320  *
321  * @param App $a
322  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
323  */
324 function admin_page_blocklist_post(App $a)
325 {
326         if (empty($_POST['page_blocklist_save']) && empty($_POST['page_blocklist_edit'])) {
327                 return;
328         }
329
330         BaseModule::checkFormSecurityTokenRedirectOnError('/admin/blocklist', 'admin_blocklist');
331
332         if (!empty($_POST['page_blocklist_save'])) {
333                 //  Add new item to blocklist
334                 $blocklist = Config::get('system', 'blocklist');
335                 $blocklist[] = [
336                         'domain' => Strings::escapeTags(trim($_POST['newentry_domain'])),
337                         'reason' => Strings::escapeTags(trim($_POST['newentry_reason']))
338                 ];
339                 Config::set('system', 'blocklist', $blocklist);
340                 info(L10n::t('Server added to blocklist.') . EOL);
341         } else {
342                 // Edit the entries from blocklist
343                 $blocklist = [];
344                 foreach ($_POST['domain'] as $id => $domain) {
345                         // Trimming whitespaces as well as any lingering slashes
346                         $domain = Strings::escapeTags(trim($domain, "\x00..\x1F/"));
347                         $reason = Strings::escapeTags(trim($_POST['reason'][$id]));
348                         if (empty($_POST['delete'][$id])) {
349                                 $blocklist[] = [
350                                         'domain' => $domain,
351                                         'reason' => $reason
352                                 ];
353                         }
354                 }
355                 Config::set('system', 'blocklist', $blocklist);
356                 info(L10n::t('Site blocklist updated.') . EOL);
357         }
358         $a->internalRedirect('admin/blocklist');
359
360         return; // NOTREACHED
361 }
362
363 /**
364  * @brief Process data send by the contact block admin page
365  *
366  * @param App $a
367  * @throws ImagickException
368  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
369  */
370 function admin_page_contactblock_post(App $a)
371 {
372         $contact_url = defaults($_POST, 'contact_url', '');
373         $contacts    = defaults($_POST, 'contacts', []);
374
375         BaseModule::checkFormSecurityTokenRedirectOnError('/admin/contactblock', 'admin_contactblock');
376
377         if (!empty($_POST['page_contactblock_block'])) {
378                 $contact_id = Contact::getIdForURL($contact_url);
379                 if ($contact_id) {
380                         Contact::block($contact_id);
381                         notice(L10n::t('The contact has been blocked from the node'));
382                 } else {
383                         notice(L10n::t("Could not find any contact entry for this URL \x28%s\x29", $contact_url));
384                 }
385         }
386         if (!empty($_POST['page_contactblock_unblock'])) {
387                 foreach ($contacts as $uid) {
388                         Contact::unblock($uid);
389                 }
390                 notice(L10n::tt("%s contact unblocked", "%s contacts unblocked", count($contacts)));
391         }
392         $a->internalRedirect('admin/contactblock');
393         return; // NOTREACHED
394 }
395
396 /**
397  * @brief Admin panel for server-wide contact block
398  *
399  * @param App $a
400  * @return string
401  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
402  */
403 function admin_page_contactblock(App $a)
404 {
405         $condition = ['uid' => 0, 'blocked' => true];
406
407         $total = DBA::count('contact', $condition);
408
409         $pager = new Pager($a->query_string, 30);
410
411         $statement = DBA::select('contact', [], $condition, ['limit' => [$pager->getStart(), $pager->getItemsPerPage()]]);
412
413         $contacts = DBA::toArray($statement);
414
415         $t = Renderer::getMarkupTemplate('admin/contactblock.tpl');
416         $o = Renderer::replaceMacros($t, [
417                 // strings //
418                 '$title'       => L10n::t('Administration'),
419                 '$page'        => L10n::t('Remote Contact Blocklist'),
420                 '$description' => L10n::t('This page allows you to prevent any message from a remote contact to reach your node.'),
421                 '$submit'      => L10n::t('Block Remote Contact'),
422                 '$select_all'  => L10n::t('select all'),
423                 '$select_none' => L10n::t('select none'),
424                 '$block'       => L10n::t('Block'),
425                 '$unblock'     => L10n::t('Unblock'),
426                 '$no_data'     => L10n::t('No remote contact is blocked from this node.'),
427
428                 '$h_contacts'  => L10n::t('Blocked Remote Contacts'),
429                 '$h_newblock'  => L10n::t('Block New Remote Contact'),
430                 '$th_contacts' => [L10n::t('Photo'), L10n::t('Name'), L10n::t('Address'), L10n::t('Profile URL')],
431
432                 '$form_security_token' => BaseModule::getFormSecurityToken("admin_contactblock"),
433
434                 // values //
435                 '$baseurl'    => System::baseUrl(true),
436
437                 '$contacts'   => $contacts,
438                 '$total_contacts' => L10n::tt('%s total blocked contact', '%s total blocked contacts', $total),
439                 '$paginate'   => $pager->renderFull($total),
440                 '$contacturl' => ['contact_url', L10n::t("Profile URL"), '', L10n::t("URL of the remote contact to block.")],
441         ]);
442         return $o;
443 }
444
445 /**
446  * @brief Subpage where the admin can delete an item from their node given the GUID
447  *
448  * This subpage of the admin panel offers the nodes admin to delete an item from
449  * the node, given the GUID or the display URL such as http://example.com/display/123456.
450  * The item will then be marked as deleted in the database and processed accordingly.
451  *
452  * @param App $a
453  * @return string
454  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
455  */
456 function admin_page_deleteitem(App $a)
457 {
458         $t = Renderer::getMarkupTemplate('admin/deleteitem.tpl');
459
460         return Renderer::replaceMacros($t, [
461                 '$title' => L10n::t('Administration'),
462                 '$page' => L10n::t('Delete Item'),
463                 '$submit' => L10n::t('Delete this Item'),
464                 '$intro1' => L10n::t('On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted.'),
465                 '$intro2' => L10n::t('You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456.'),
466                 '$deleteitemguid' => ['deleteitemguid', L10n::t("GUID"), '', L10n::t("The GUID of the item you want to delete."), 'required', 'autofocus'],
467                 '$baseurl' => System::baseUrl(),
468                 '$form_security_token' => BaseModule::getFormSecurityToken("admin_deleteitem")
469         ]);
470 }
471
472 /**
473  * @brief Process send data from Admin Delete Item Page
474  *
475  * The GUID passed through the form should be only the GUID. But we also parse
476  * URLs like the full /display URL to make the process more easy for the admin.
477  *
478  * @param App $a
479  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
480  */
481 function admin_page_deleteitem_post(App $a)
482 {
483         if (empty($_POST['page_deleteitem_submit'])) {
484                 return;
485         }
486
487         BaseModule::checkFormSecurityTokenRedirectOnError('/admin/deleteitem/', 'admin_deleteitem');
488
489         if (!empty($_POST['page_deleteitem_submit'])) {
490                 $guid = trim(Strings::escapeTags($_POST['deleteitemguid']));
491                 // The GUID should not include a "/", so if there is one, we got an URL
492                 // and the last part of it is most likely the GUID.
493                 if (strpos($guid, '/')) {
494                         $guid = substr($guid, strrpos($guid, '/') + 1);
495                 }
496                 // Now that we have the GUID, drop those items, which will also delete the
497                 // associated threads.
498                 Item::delete(['guid' => $guid]);
499         }
500
501         info(L10n::t('Item marked for deletion.') . EOL);
502         $a->internalRedirect('admin/deleteitem');
503         return; // NOTREACHED
504 }
505
506 /**
507  * @brief Admin Inspect Worker Queue Page
508  *
509  * Generates a page for the admin to have a look into the current queue of
510  * worker jobs. Shown are the parameters for the job and its priority.
511  *
512  * The returned string holds the content of the page.
513  *
514  * @param App $a
515  * @param     $deferred
516  * @return string
517  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
518  */
519 function admin_page_workerqueue(App $a, $deferred)
520 {
521         // get jobs from the workerqueue table
522         if ($deferred) {
523                 $condition = ["NOT `done` AND `next_try` > ?", DateTimeFormat::utcNow()];
524                 $sub_title = L10n::t('Inspect Deferred Worker Queue');
525                 $info = L10n::t("This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time.");
526         } else {
527                 $condition = ["NOT `done` AND `next_try` < ?", DateTimeFormat::utcNow()];
528                 $sub_title = L10n::t('Inspect Worker Queue');
529                 $info = L10n::t('This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you\'ve set up during install.');
530         }
531
532         $entries = DBA::select('workerqueue', ['id', 'parameter', 'created', 'priority'], $condition, ['order' => ['priority']]);
533
534         $r = [];
535         while ($entry = DBA::fetch($entries)) {
536                 // fix GH-5469. ref: src/Core/Worker.php:217
537                 $entry['parameter'] = Arrays::recursiveImplode(json_decode($entry['parameter'], true), ': ');
538                 $entry['created'] = DateTimeFormat::local($entry['created']);
539                 $r[] = $entry;
540         }
541         DBA::close($entries);
542
543         $t = Renderer::getMarkupTemplate('admin/workerqueue.tpl');
544         return Renderer::replaceMacros($t, [
545                 '$title' => L10n::t('Administration'),
546                 '$page' => $sub_title,
547                 '$count' => count($r),
548                 '$id_header' => L10n::t('ID'),
549                 '$param_header' => L10n::t('Job Parameters'),
550                 '$created_header' => L10n::t('Created'),
551                 '$prio_header' => L10n::t('Priority'),
552                 '$info' => $info,
553                 '$entries' => $r,
554         ]);
555 }
556
557 /**
558  * @brief Process send data from Admin Site Page
559  *
560  * @param App $a
561  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
562  */
563 function admin_page_site_post(App $a)
564 {
565         BaseModule::checkFormSecurityTokenRedirectOnError('/admin/site', 'admin_site');
566
567         if (!empty($_POST['republish_directory'])) {
568                 Worker::add(PRIORITY_LOW, 'Directory');
569                 return;
570         }
571
572         if (empty($_POST['page_site'])) {
573                 return;
574         }
575
576         // relocate
577         if (!empty($_POST['relocate']) && !empty($_POST['relocate_url']) && $_POST['relocate_url'] != "") {
578                 $new_url = $_POST['relocate_url'];
579                 $new_url = rtrim($new_url, "/");
580
581                 $parsed = @parse_url($new_url);
582                 if (!is_array($parsed) || empty($parsed['host']) || empty($parsed['scheme'])) {
583                         notice(L10n::t("Can not parse base url. Must have at least <scheme>://<domain>"));
584                         $a->internalRedirect('admin/site');
585                 }
586
587                 /* steps:
588                  * replace all "baseurl" to "new_url" in config, profile, term, items and contacts
589                  * send relocate for every local user
590                  * */
591
592                 $old_url = $a->getBaseURL(true);
593
594                 // Generate host names for relocation the addresses in the format user@address.tld
595                 $new_host = str_replace("http://", "@", Strings::normaliseLink($new_url));
596                 $old_host = str_replace("http://", "@", Strings::normaliseLink($old_url));
597
598                 function update_table(App $a, $table_name, $fields, $old_url, $new_url)
599                 {
600                         $dbold = DBA::escape($old_url);
601                         $dbnew = DBA::escape($new_url);
602
603                         $upd = [];
604                         foreach ($fields as $f) {
605                                 $upd[] = "`$f` = REPLACE(`$f`, '$dbold', '$dbnew')";
606                         }
607
608                         $upds = implode(", ", $upd);
609
610                         $r = q("UPDATE %s SET %s;", $table_name, $upds);
611
612                         if (!DBA::isResult($r)) {
613                                 notice("Failed updating '$table_name': " . DBA::errorMessage());
614                                 $a->internalRedirect('admin/site');
615                         }
616                 }
617
618                 // update tables
619                 // update profile links in the format "http://server.tld"
620                 update_table($a, "profile", ['photo', 'thumb'], $old_url, $new_url);
621                 update_table($a, "term", ['url'], $old_url, $new_url);
622                 update_table($a, "contact", ['photo', 'thumb', 'micro', 'url', 'nurl', 'alias', 'request', 'notify', 'poll', 'confirm', 'poco', 'avatar'], $old_url, $new_url);
623                 update_table($a, "gcontact", ['url', 'nurl', 'photo', 'server_url', 'notify', 'alias'], $old_url, $new_url);
624                 update_table($a, "item", ['owner-link', 'author-link', 'body', 'plink', 'tag'], $old_url, $new_url);
625
626                 // update profile addresses in the format "user@server.tld"
627                 update_table($a, "contact", ['addr'], $old_host, $new_host);
628                 update_table($a, "gcontact", ['connect', 'addr'], $old_host, $new_host);
629
630                 // update config
631                 Config::set('system', 'url', $new_url);
632                 $a->setBaseURL($new_url);
633
634                 // send relocate
635                 $users = q("SELECT `uid` FROM `user` WHERE `account_removed` = 0 AND `account_expired` = 0");
636
637                 foreach ($users as $user) {
638                         Worker::add(PRIORITY_HIGH, 'Notifier', 'relocate', $user['uid']);
639                 }
640
641                 info("Relocation started. Could take a while to complete.");
642
643                 $a->internalRedirect('admin/site');
644         }
645         // end relocate
646
647         $sitename         = (!empty($_POST['sitename'])         ? Strings::escapeTags(trim($_POST['sitename']))      : '');
648         $sender_email     = (!empty($_POST['sender_email'])     ? Strings::escapeTags(trim($_POST['sender_email']))  : '');
649         $banner           = (!empty($_POST['banner'])           ? trim($_POST['banner'])                             : false);
650         $shortcut_icon    = (!empty($_POST['shortcut_icon'])    ? Strings::escapeTags(trim($_POST['shortcut_icon'])) : '');
651         $touch_icon       = (!empty($_POST['touch_icon'])       ? Strings::escapeTags(trim($_POST['touch_icon']))    : '');
652         $additional_info  = (!empty($_POST['additional_info'])  ? trim($_POST['additional_info'])                    : '');
653         $language         = (!empty($_POST['language'])         ? Strings::escapeTags(trim($_POST['language']))      : '');
654         $theme            = (!empty($_POST['theme'])            ? Strings::escapeTags(trim($_POST['theme']))         : '');
655         $theme_mobile     = (!empty($_POST['theme_mobile'])     ? Strings::escapeTags(trim($_POST['theme_mobile']))  : '');
656         $maximagesize     = (!empty($_POST['maximagesize'])     ? intval(trim($_POST['maximagesize']))               : 0);
657         $maximagelength   = (!empty($_POST['maximagelength'])   ? intval(trim($_POST['maximagelength']))             : MAX_IMAGE_LENGTH);
658         $jpegimagequality = (!empty($_POST['jpegimagequality']) ? intval(trim($_POST['jpegimagequality']))           : JPEG_QUALITY);
659
660         $register_policy        = (!empty($_POST['register_policy'])         ? intval(trim($_POST['register_policy']))             : 0);
661         $daily_registrations    = (!empty($_POST['max_daily_registrations']) ? intval(trim($_POST['max_daily_registrations']))     : 0);
662         $abandon_days           = (!empty($_POST['abandon_days'])            ? intval(trim($_POST['abandon_days']))                : 0);
663
664         $register_text          = (!empty($_POST['register_text'])           ? strip_tags(trim($_POST['register_text']))           : '');
665
666         $allowed_sites          = (!empty($_POST['allowed_sites'])           ? Strings::escapeTags(trim($_POST['allowed_sites']))  : '');
667         $allowed_email          = (!empty($_POST['allowed_email'])           ? Strings::escapeTags(trim($_POST['allowed_email']))  : '');
668         $forbidden_nicknames    = (!empty($_POST['forbidden_nicknames'])     ? strtolower(Strings::escapeTags(trim($_POST['forbidden_nicknames']))) : '');
669         $no_oembed_rich_content = !empty($_POST['no_oembed_rich_content']);
670         $allowed_oembed         = (!empty($_POST['allowed_oembed'])          ? Strings::escapeTags(trim($_POST['allowed_oembed'])) : '');
671         $block_public           = !empty($_POST['block_public']);
672         $force_publish          = !empty($_POST['publish_all']);
673         $global_directory       = (!empty($_POST['directory'])               ? Strings::escapeTags(trim($_POST['directory']))      : '');
674         $newuser_private        = !empty($_POST['newuser_private']);
675         $enotify_no_content     = !empty($_POST['enotify_no_content']);
676         $private_addons         = !empty($_POST['private_addons']);
677         $disable_embedded       = !empty($_POST['disable_embedded']);
678         $allow_users_remote_self = !empty($_POST['allow_users_remote_self']);
679         $explicit_content       = !empty($_POST['explicit_content']);
680
681         $no_multi_reg           = !empty($_POST['no_multi_reg']);
682         $no_openid              = !empty($_POST['no_openid']);
683         $no_regfullname         = !empty($_POST['no_regfullname']);
684         $community_page_style   = (!empty($_POST['community_page_style']) ? intval(trim($_POST['community_page_style'])) : 0);
685         $max_author_posts_community_page = (!empty($_POST['max_author_posts_community_page']) ? intval(trim($_POST['max_author_posts_community_page'])) : 0);
686
687         $verifyssl              = !empty($_POST['verifyssl']);
688         $proxyuser              = (!empty($_POST['proxyuser'])              ? Strings::escapeTags(trim($_POST['proxyuser'])) : '');
689         $proxy                  = (!empty($_POST['proxy'])                  ? Strings::escapeTags(trim($_POST['proxy']))     : '');
690         $timeout                = (!empty($_POST['timeout'])                ? intval(trim($_POST['timeout']))                : 60);
691         $maxloadavg             = (!empty($_POST['maxloadavg'])             ? intval(trim($_POST['maxloadavg']))             : 20);
692         $maxloadavg_frontend    = (!empty($_POST['maxloadavg_frontend'])    ? intval(trim($_POST['maxloadavg_frontend']))    : 50);
693         $min_memory             = (!empty($_POST['min_memory'])             ? intval(trim($_POST['min_memory']))             : 0);
694         $optimize_max_tablesize = (!empty($_POST['optimize_max_tablesize']) ? intval(trim($_POST['optimize_max_tablesize'])) : 100);
695         $optimize_fragmentation = (!empty($_POST['optimize_fragmentation']) ? intval(trim($_POST['optimize_fragmentation'])) : 30);
696         $poco_completion        = (!empty($_POST['poco_completion'])        ? intval(trim($_POST['poco_completion']))        : false);
697         $poco_requery_days      = (!empty($_POST['poco_requery_days'])      ? intval(trim($_POST['poco_requery_days']))      : 7);
698         $poco_discovery         = (!empty($_POST['poco_discovery'])         ? intval(trim($_POST['poco_discovery']))         : PortableContact::DISABLED);
699         $poco_discovery_since   = (!empty($_POST['poco_discovery_since'])   ? intval(trim($_POST['poco_discovery_since']))   : 30);
700         $poco_local_search      = !empty($_POST['poco_local_search']);
701         $nodeinfo               = !empty($_POST['nodeinfo']);
702         $dfrn_only              = !empty($_POST['dfrn_only']);
703         $ostatus_disabled       = !empty($_POST['ostatus_disabled']);
704         $ostatus_full_threads   = !empty($_POST['ostatus_full_threads']);
705         $diaspora_enabled       = !empty($_POST['diaspora_enabled']);
706         $ssl_policy             = (!empty($_POST['ssl_policy'])             ? intval($_POST['ssl_policy'])                    : 0);
707         $force_ssl              = !empty($_POST['force_ssl']);
708         $hide_help              = !empty($_POST['hide_help']);
709         $dbclean                = !empty($_POST['dbclean']);
710         $dbclean_expire_days    = (!empty($_POST['dbclean_expire_days'])    ? intval($_POST['dbclean_expire_days'])           : 0);
711         $dbclean_unclaimed      = (!empty($_POST['dbclean_unclaimed'])      ? intval($_POST['dbclean_unclaimed'])             : 0);
712         $dbclean_expire_conv    = (!empty($_POST['dbclean_expire_conv'])    ? intval($_POST['dbclean_expire_conv'])           : 0);
713         $suppress_tags          = !empty($_POST['suppress_tags']);
714         $itemcache              = (!empty($_POST['itemcache'])              ? Strings::escapeTags(trim($_POST['itemcache']))  : '');
715         $itemcache_duration     = (!empty($_POST['itemcache_duration'])     ? intval($_POST['itemcache_duration'])            : 0);
716         $max_comments           = (!empty($_POST['max_comments'])           ? intval($_POST['max_comments'])                  : 0);
717         $temppath               = (!empty($_POST['temppath'])               ? Strings::escapeTags(trim($_POST['temppath']))   : '');
718         $singleuser             = (!empty($_POST['singleuser'])             ? Strings::escapeTags(trim($_POST['singleuser'])) : '');
719         $proxy_disabled         = !empty($_POST['proxy_disabled']);
720         $only_tag_search        = !empty($_POST['only_tag_search']);
721         $rino                   = (!empty($_POST['rino'])                   ? intval($_POST['rino'])                          : 0);
722         $check_new_version_url  = (!empty($_POST['check_new_version_url'])  ? Strings::escapeTags(trim($_POST['check_new_version_url'])) : 'none');
723
724         $worker_queues    = (!empty($_POST['worker_queues'])                ? intval($_POST['worker_queues'])                 : 10);
725         $worker_dont_fork = !empty($_POST['worker_dont_fork']);
726         $worker_fastlane  = !empty($_POST['worker_fastlane']);
727         $worker_frontend  = !empty($_POST['worker_frontend']);
728
729         $relay_directly    = !empty($_POST['relay_directly']);
730         $relay_server      = (!empty($_POST['relay_server'])      ? Strings::escapeTags(trim($_POST['relay_server']))       : '');
731         $relay_subscribe   = !empty($_POST['relay_subscribe']);
732         $relay_scope       = (!empty($_POST['relay_scope'])       ? Strings::escapeTags(trim($_POST['relay_scope']))        : '');
733         $relay_server_tags = (!empty($_POST['relay_server_tags']) ? Strings::escapeTags(trim($_POST['relay_server_tags']))  : '');
734         $relay_user_tags   = !empty($_POST['relay_user_tags']);
735         $active_panel      = (!empty($_POST['active_panel'])      ? "#" . Strings::escapeTags(trim($_POST['active_panel'])) : '');
736
737         /**
738          * @var $storagebackend \Friendica\Model\Storage\IStorage
739          */
740         $storagebackend    = Strings::escapeTags(trim(defaults($_POST, 'storagebackend', '')));
741
742         // save storage backend form
743         if (!is_null($storagebackend) && $storagebackend != "") {
744                 if (StorageManager::setBackend($storagebackend)) {
745                         $storage_opts = $storagebackend::getOptions();
746                         $storage_form_prefix = preg_replace('|[^a-zA-Z0-9]|', '', $storagebackend);
747                         $storage_opts_data = [];
748                         foreach ($storage_opts as $name => $info) {
749                                 $fieldname = $storage_form_prefix . '_' . $name;
750                                 switch ($info[0]) { // type
751                                         case 'checkbox':
752                                         case 'yesno':
753                                                 $value = !empty($_POST[$fieldname]);
754                                                 break;
755                                         default:
756                                                 $value = defaults($_POST, $fieldname, '');
757                                 }
758                                 $storage_opts_data[$name] = $value;
759                         }
760                         unset($name);
761                         unset($info);
762
763                         $storage_form_errors = $storagebackend::saveOptions($storage_opts_data);
764                         if (count($storage_form_errors)) {
765                                 foreach ($storage_form_errors as $name => $err) {
766                                         notice('Storage backend, ' . $storage_opts[$name][1] . ': ' . $err);
767                                 }
768                                 $a->internalRedirect('admin/site' . $active_panel);
769                         }
770                 } else {
771                         info(L10n::t('Invalid storage backend setting value.'));
772                 }
773         }
774
775
776
777         // Has the directory url changed? If yes, then resubmit the existing profiles there
778         if ($global_directory != Config::get('system', 'directory') && ($global_directory != '')) {
779                 Config::set('system', 'directory', $global_directory);
780                 Worker::add(PRIORITY_LOW, 'Directory');
781         }
782
783         if ($a->getURLPath() != "") {
784                 $diaspora_enabled = false;
785         }
786         if ($ssl_policy != intval(Config::get('system', 'ssl_policy'))) {
787                 if ($ssl_policy == BaseURL::SSL_POLICY_FULL) {
788                         q("UPDATE `contact` SET
789                                 `url`     = REPLACE(`url`    , 'http:' , 'https:'),
790                                 `photo`   = REPLACE(`photo`  , 'http:' , 'https:'),
791                                 `thumb`   = REPLACE(`thumb`  , 'http:' , 'https:'),
792                                 `micro`   = REPLACE(`micro`  , 'http:' , 'https:'),
793                                 `request` = REPLACE(`request`, 'http:' , 'https:'),
794                                 `notify`  = REPLACE(`notify` , 'http:' , 'https:'),
795                                 `poll`    = REPLACE(`poll`   , 'http:' , 'https:'),
796                                 `confirm` = REPLACE(`confirm`, 'http:' , 'https:'),
797                                 `poco`    = REPLACE(`poco`   , 'http:' , 'https:')
798                                 WHERE `self` = 1"
799                         );
800                         q("UPDATE `profile` SET
801                                 `photo`   = REPLACE(`photo`  , 'http:' , 'https:'),
802                                 `thumb`   = REPLACE(`thumb`  , 'http:' , 'https:')
803                                 WHERE 1 "
804                         );
805                 } elseif ($ssl_policy == BaseURL::SSL_POLICY_SELFSIGN) {
806                         q("UPDATE `contact` SET
807                                 `url`     = REPLACE(`url`    , 'https:' , 'http:'),
808                                 `photo`   = REPLACE(`photo`  , 'https:' , 'http:'),
809                                 `thumb`   = REPLACE(`thumb`  , 'https:' , 'http:'),
810                                 `micro`   = REPLACE(`micro`  , 'https:' , 'http:'),
811                                 `request` = REPLACE(`request`, 'https:' , 'http:'),
812                                 `notify`  = REPLACE(`notify` , 'https:' , 'http:'),
813                                 `poll`    = REPLACE(`poll`   , 'https:' , 'http:'),
814                                 `confirm` = REPLACE(`confirm`, 'https:' , 'http:'),
815                                 `poco`    = REPLACE(`poco`   , 'https:' , 'http:')
816                                 WHERE `self` = 1"
817                         );
818                         q("UPDATE `profile` SET
819                                 `photo`   = REPLACE(`photo`  , 'https:' , 'http:'),
820                                 `thumb`   = REPLACE(`thumb`  , 'https:' , 'http:')
821                                 WHERE 1 "
822                         );
823                 }
824         }
825         Config::set('system', 'ssl_policy'            , $ssl_policy);
826         Config::set('system', 'maxloadavg'            , $maxloadavg);
827         Config::set('system', 'maxloadavg_frontend'   , $maxloadavg_frontend);
828         Config::set('system', 'min_memory'            , $min_memory);
829         Config::set('system', 'optimize_max_tablesize', $optimize_max_tablesize);
830         Config::set('system', 'optimize_fragmentation', $optimize_fragmentation);
831         Config::set('system', 'poco_completion'       , $poco_completion);
832         Config::set('system', 'poco_requery_days'     , $poco_requery_days);
833         Config::set('system', 'poco_discovery'        , $poco_discovery);
834         Config::set('system', 'poco_discovery_since'  , $poco_discovery_since);
835         Config::set('system', 'poco_local_search'     , $poco_local_search);
836         Config::set('system', 'nodeinfo'              , $nodeinfo);
837         Config::set('config', 'sitename'              , $sitename);
838         Config::set('config', 'sender_email'          , $sender_email);
839         Config::set('system', 'suppress_tags'         , $suppress_tags);
840         Config::set('system', 'shortcut_icon'         , $shortcut_icon);
841         Config::set('system', 'touch_icon'            , $touch_icon);
842
843         if ($banner == "") {
844                 Config::delete('system', 'banner');
845         } else {
846                 Config::set('system', 'banner', $banner);
847         }
848
849         if (empty($additional_info)) {
850                 Config::delete('config', 'info');
851         } else {
852                 Config::set('config', 'info', $additional_info);
853         }
854         Config::set('system', 'language', $language);
855         Config::set('system', 'theme', $theme);
856         Theme::install($theme);
857
858         if ($theme_mobile == '---') {
859                 Config::delete('system', 'mobile-theme');
860         } else {
861                 Config::set('system', 'mobile-theme', $theme_mobile);
862         }
863         if ($singleuser == '---') {
864                 Config::delete('system', 'singleuser');
865         } else {
866                 Config::set('system', 'singleuser', $singleuser);
867         }
868         Config::set('system', 'maximagesize'           , $maximagesize);
869         Config::set('system', 'max_image_length'       , $maximagelength);
870         Config::set('system', 'jpeg_quality'           , $jpegimagequality);
871
872         Config::set('config', 'register_policy'        , $register_policy);
873         Config::set('system', 'max_daily_registrations', $daily_registrations);
874         Config::set('system', 'account_abandon_days'   , $abandon_days);
875         Config::set('config', 'register_text'          , $register_text);
876         Config::set('system', 'allowed_sites'          , $allowed_sites);
877         Config::set('system', 'allowed_email'          , $allowed_email);
878         Config::set('system', 'forbidden_nicknames'    , $forbidden_nicknames);
879         Config::set('system', 'no_oembed_rich_content' , $no_oembed_rich_content);
880         Config::set('system', 'allowed_oembed'         , $allowed_oembed);
881         Config::set('system', 'block_public'           , $block_public);
882         Config::set('system', 'publish_all'            , $force_publish);
883         Config::set('system', 'newuser_private'        , $newuser_private);
884         Config::set('system', 'enotify_no_content'     , $enotify_no_content);
885         Config::set('system', 'disable_embedded'       , $disable_embedded);
886         Config::set('system', 'allow_users_remote_self', $allow_users_remote_self);
887         Config::set('system', 'explicit_content'       , $explicit_content);
888         Config::set('system', 'check_new_version_url'  , $check_new_version_url);
889
890         Config::set('system', 'block_extended_register', $no_multi_reg);
891         Config::set('system', 'no_openid'              , $no_openid);
892         Config::set('system', 'no_regfullname'         , $no_regfullname);
893         Config::set('system', 'community_page_style'   , $community_page_style);
894         Config::set('system', 'max_author_posts_community_page', $max_author_posts_community_page);
895         Config::set('system', 'verifyssl'              , $verifyssl);
896         Config::set('system', 'proxyuser'              , $proxyuser);
897         Config::set('system', 'proxy'                  , $proxy);
898         Config::set('system', 'curl_timeout'           , $timeout);
899         Config::set('system', 'dfrn_only'              , $dfrn_only);
900         Config::set('system', 'ostatus_disabled'       , $ostatus_disabled);
901         Config::set('system', 'ostatus_full_threads'   , $ostatus_full_threads);
902         Config::set('system', 'diaspora_enabled'       , $diaspora_enabled);
903
904         Config::set('config', 'private_addons'         , $private_addons);
905
906         Config::set('system', 'force_ssl'              , $force_ssl);
907         Config::set('system', 'hide_help'              , $hide_help);
908
909         Config::set('system', 'dbclean'                , $dbclean);
910         Config::set('system', 'dbclean-expire-days'    , $dbclean_expire_days);
911         Config::set('system', 'dbclean_expire_conversation', $dbclean_expire_conv);
912
913         if ($dbclean_unclaimed == 0) {
914                 $dbclean_unclaimed = $dbclean_expire_days;
915         }
916
917         Config::set('system', 'dbclean-expire-unclaimed', $dbclean_unclaimed);
918
919         if ($itemcache != '') {
920                 $itemcache = BasePath::getRealPath($itemcache);
921         }
922
923         Config::set('system', 'itemcache', $itemcache);
924         Config::set('system', 'itemcache_duration', $itemcache_duration);
925         Config::set('system', 'max_comments', $max_comments);
926
927         if ($temppath != '') {
928                 $temppath = BasePath::getRealPath($temppath);
929         }
930
931         Config::set('system', 'temppath', $temppath);
932
933         Config::set('system', 'proxy_disabled'   , $proxy_disabled);
934         Config::set('system', 'only_tag_search'  , $only_tag_search);
935
936         Config::set('system', 'worker_queues'    , $worker_queues);
937         Config::set('system', 'worker_dont_fork' , $worker_dont_fork);
938         Config::set('system', 'worker_fastlane'  , $worker_fastlane);
939         Config::set('system', 'frontend_worker'  , $worker_frontend);
940
941         Config::set('system', 'relay_directly'   , $relay_directly);
942         Config::set('system', 'relay_server'     , $relay_server);
943         Config::set('system', 'relay_subscribe'  , $relay_subscribe);
944         Config::set('system', 'relay_scope'      , $relay_scope);
945         Config::set('system', 'relay_server_tags', $relay_server_tags);
946         Config::set('system', 'relay_user_tags'  , $relay_user_tags);
947
948         Config::set('system', 'rino_encrypt'     , $rino);
949
950         info(L10n::t('Site settings updated.') . EOL);
951
952         $a->internalRedirect('admin/site' . $active_panel);
953         return; // NOTREACHED
954 }
955
956 /**
957  * @brief Generate Admin Site subpage
958  *
959  * This function generates the main configuration page of the admin panel.
960  *
961  * @param  App $a
962  * @return string
963  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
964  */
965 function admin_page_site(App $a)
966 {
967         /* Installed langs */
968         $lang_choices = L10n::getAvailableLanguages();
969
970         if (strlen(Config::get('system', 'directory_submit_url')) &&
971                 !strlen(Config::get('system', 'directory'))) {
972                 Config::set('system', 'directory', dirname(Config::get('system', 'directory_submit_url')));
973                 Config::delete('system', 'directory_submit_url');
974         }
975
976         /* Installed themes */
977         $theme_choices = [];
978         $theme_choices_mobile = [];
979         $theme_choices_mobile["---"] = L10n::t("No special theme for mobile devices");
980         $files = glob('view/theme/*');
981         if (is_array($files)) {
982                 $allowed_theme_list = Config::get('system', 'allowed_themes');
983
984                 foreach ($files as $file) {
985                         if (intval(file_exists($file . '/unsupported'))) {
986                                 continue;
987                         }
988
989                         $f = basename($file);
990
991                         // Only show allowed themes here
992                         if (($allowed_theme_list != '') && !strstr($allowed_theme_list, $f)) {
993                                 continue;
994                         }
995
996                         $theme_name = ((file_exists($file . '/experimental')) ? sprintf("%s - \x28Experimental\x29", $f) : $f);
997
998                         if (file_exists($file . '/mobile')) {
999                                 $theme_choices_mobile[$f] = $theme_name;
1000                         } else {
1001                                 $theme_choices[$f] = $theme_name;
1002                         }
1003                 }
1004         }
1005
1006         /* Community page style */
1007         $community_page_style_choices = [
1008                 CP_NO_INTERNAL_COMMUNITY => L10n::t("No community page for local users"),
1009                 CP_NO_COMMUNITY_PAGE => L10n::t("No community page"),
1010                 CP_USERS_ON_SERVER => L10n::t("Public postings from users of this site"),
1011                 CP_GLOBAL_COMMUNITY => L10n::t("Public postings from the federated network"),
1012                 CP_USERS_AND_GLOBAL => L10n::t("Public postings from local users and the federated network")
1013         ];
1014
1015         $poco_discovery_choices = [
1016                 PortableContact::DISABLED => L10n::t("Disabled"),
1017                 PortableContact::USERS => L10n::t("Users"),
1018                 PortableContact::USERS_GCONTACTS => L10n::t("Users, Global Contacts"),
1019                 PortableContact::USERS_GCONTACTS_FALLBACK => L10n::t("Users, Global Contacts/fallback"),
1020         ];
1021
1022         $poco_discovery_since_choices = [
1023                 "30" => L10n::t("One month"),
1024                 "91" => L10n::t("Three months"),
1025                 "182" => L10n::t("Half a year"),
1026                 "365" => L10n::t("One year"),
1027         ];
1028
1029         /* get user names to make the install a personal install of X */
1030         $user_names = [];
1031         $user_names['---'] = L10n::t('Multi user instance');
1032         $users = q("SELECT `username`, `nickname` FROM `user`");
1033
1034         foreach ($users as $user) {
1035                 $user_names[$user['nickname']] = $user['username'];
1036         }
1037
1038         /* Banner */
1039         $banner = Config::get('system', 'banner');
1040
1041         if ($banner == false) {
1042                 $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>';
1043         }
1044
1045         $additional_info = Config::get('config', 'info');
1046
1047         // Automatically create temporary paths
1048         get_temppath();
1049         get_itemcachepath();
1050
1051         //echo "<pre>"; var_dump($lang_choices); die("</pre>");
1052
1053         /* Register policy */
1054         $register_choices = [
1055                 Module\Register::CLOSED => L10n::t("Closed"),
1056                 Module\Register::APPROVE => L10n::t("Requires approval"),
1057                 Module\Register::OPEN => L10n::t("Open")
1058         ];
1059
1060         $ssl_choices = [
1061                 BaseURL::SSL_POLICY_NONE => L10n::t("No SSL policy, links will track page SSL state"),
1062                 BaseURL::SSL_POLICY_FULL => L10n::t("Force all links to use SSL"),
1063                 BaseURL::SSL_POLICY_SELFSIGN => L10n::t("Self-signed certificate, use SSL for local links only \x28discouraged\x29")
1064         ];
1065
1066         $check_git_version_choices = [
1067                 "none" => L10n::t("Don't check"),
1068                 "master" => L10n::t("check the stable version"),
1069                 "develop" => L10n::t("check the development version")
1070         ];
1071
1072         $diaspora_able = ($a->getURLPath() == "");
1073
1074         $optimize_max_tablesize = Config::get('system', 'optimize_max_tablesize', -1);
1075
1076         if ($optimize_max_tablesize <= 0) {
1077                 $optimize_max_tablesize = -1;
1078         }
1079
1080         /* storage backend */
1081         $storage_backends = StorageManager::listBackends();
1082         /**
1083          * @var $storage_current_backend \Friendica\Model\Storage\IStorage
1084          */
1085         $storage_current_backend = StorageManager::getBackend();
1086
1087         $storage_backends_choices = [];
1088
1089         // show legacy option only if it is the current backend:
1090         // once changed can't be selected anymore
1091         if ($storage_current_backend == '') {
1092                 $storage_backends_choices[''] = L10n::t('Database (legacy)');
1093         };
1094
1095         foreach ($storage_backends as $name => $class) {
1096                 $storage_backends_choices[$class] = $name;
1097         }
1098         unset($storage_backends);
1099
1100         // build storage config form,
1101         $storage_form_prefix=preg_replace('|[^a-zA-Z0-9]|' ,'', $storage_current_backend);
1102
1103         $storage_form = [];
1104         if (!is_null($storage_current_backend) && $storage_current_backend != "") {
1105                 foreach ($storage_current_backend::getOptions() as $name => $info) {
1106                         $type = $info[0];
1107                         $info[0] = $storage_form_prefix . '_' . $name;
1108                         $info['type'] = $type;
1109                         $info['field'] = 'field_' . $type . '.tpl';
1110                         $storage_form[$name] = $info;
1111                 }
1112         }
1113
1114
1115         $t = Renderer::getMarkupTemplate('admin/site.tpl');
1116         return Renderer::replaceMacros($t, [
1117                 '$title'             => L10n::t('Administration'),
1118                 '$page'              => L10n::t('Site'),
1119                 '$submit'            => L10n::t('Save Settings'),
1120                 '$republish'         => L10n::t('Republish users to directory'),
1121                 '$registration'      => L10n::t('Registration'),
1122                 '$upload'            => L10n::t('File upload'),
1123                 '$corporate'         => L10n::t('Policies'),
1124                 '$advanced'          => L10n::t('Advanced'),
1125                 '$portable_contacts' => L10n::t('Auto Discovered Contact Directory'),
1126                 '$performance'       => L10n::t('Performance'),
1127                 '$worker_title'      => L10n::t('Worker'),
1128                 '$relay_title'       => L10n::t('Message Relay'),
1129                 '$relocate'          => L10n::t('Relocate Instance'),
1130                 '$relocate_warning'  => L10n::t('Warning! Advanced function. Could make this server unreachable.'),
1131                 '$baseurl'           => System::baseUrl(true),
1132
1133                 // name, label, value, help string, extra data...
1134                 '$sitename'         => ['sitename', L10n::t("Site name"), Config::get('config', 'sitename'), ''],
1135                 '$sender_email'     => ['sender_email', L10n::t("Sender Email"), Config::get('config', 'sender_email'), L10n::t("The email address your server shall use to send notification emails from."), "", "", "email"],
1136                 '$banner'           => ['banner', L10n::t("Banner/Logo"), $banner, ""],
1137                 '$shortcut_icon'    => ['shortcut_icon', L10n::t("Shortcut icon"), Config::get('system', 'shortcut_icon'), L10n::t("Link to an icon that will be used for browsers.")],
1138                 '$touch_icon'       => ['touch_icon', L10n::t("Touch icon"), Config::get('system', 'touch_icon'), L10n::t("Link to an icon that will be used for tablets and mobiles.")],
1139                 '$additional_info'  => ['additional_info', L10n::t('Additional Info'), $additional_info, L10n::t('For public servers: you can add additional information here that will be listed at %s/servers.', get_server())],
1140                 '$language'         => ['language', L10n::t("System language"), Config::get('system', 'language'), "", $lang_choices],
1141                 '$theme'            => ['theme', L10n::t("System theme"), Config::get('system', 'theme'), L10n::t("Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"), $theme_choices],
1142                 '$theme_mobile'     => ['theme_mobile', L10n::t("Mobile system theme"), Config::get('system', 'mobile-theme', '---'), L10n::t("Theme for mobile devices"), $theme_choices_mobile],
1143                 '$ssl_policy'       => ['ssl_policy', L10n::t("SSL link policy"), (string)intval(Config::get('system', 'ssl_policy')), L10n::t("Determines whether generated links should be forced to use SSL"), $ssl_choices],
1144                 '$force_ssl'        => ['force_ssl', L10n::t("Force SSL"), Config::get('system', 'force_ssl'), L10n::t("Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops.")],
1145                 '$hide_help'        => ['hide_help', L10n::t("Hide help entry from navigation menu"), Config::get('system', 'hide_help'), L10n::t("Hides the menu entry for the Help pages from the navigation menu. You can still access it calling /help directly.")],
1146                 '$singleuser'       => ['singleuser', L10n::t("Single user instance"), Config::get('system', 'singleuser', '---'), L10n::t("Make this instance multi-user or single-user for the named user"), $user_names],
1147
1148                 '$storagebackend'   => ['storagebackend', L10n::t("File storage backend"), $storage_current_backend, 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.'), $storage_backends_choices],
1149                 '$storageform'      => $storage_form,
1150                 '$maximagesize'     => ['maximagesize', L10n::t("Maximum image size"), Config::get('system', 'maximagesize'), L10n::t("Maximum size in bytes of uploaded images. Default is 0, which means no limits.")],
1151                 '$maximagelength'   => ['maximagelength', L10n::t("Maximum image length"), Config::get('system', 'max_image_length'), L10n::t("Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.")],
1152                 '$jpegimagequality' => ['jpegimagequality', L10n::t("JPEG image quality"), Config::get('system', 'jpeg_quality'), L10n::t("Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.")],
1153
1154                 '$register_policy'        => ['register_policy', L10n::t("Register policy"), Config::get('config', 'register_policy'), "", $register_choices],
1155                 '$daily_registrations'    => ['max_daily_registrations', L10n::t("Maximum Daily Registrations"), Config::get('system', 'max_daily_registrations'), 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.")],
1156                 '$register_text'          => ['register_text', L10n::t("Register text"), Config::get('config', 'register_text'), L10n::t("Will be displayed prominently on the registration page. You can use BBCode here.")],
1157                 '$forbidden_nicknames'    => ['forbidden_nicknames', L10n::t('Forbidden Nicknames'), Config::get('system', 'forbidden_nicknames'), L10n::t('Comma separated list of nicknames that are forbidden from registration. Preset is a list of role names according RFC 2142.')],
1158                 '$abandon_days'           => ['abandon_days', L10n::t('Accounts abandoned after x days'), Config::get('system', 'account_abandon_days'), L10n::t('Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.')],
1159                 '$allowed_sites'          => ['allowed_sites', L10n::t("Allowed friend domains"), Config::get('system', 'allowed_sites'), L10n::t("Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains")],
1160                 '$allowed_email'          => ['allowed_email', L10n::t("Allowed email domains"), Config::get('system', 'allowed_email'), 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")],
1161                 '$no_oembed_rich_content' => ['no_oembed_rich_content', L10n::t("No OEmbed rich content"), Config::get('system', 'no_oembed_rich_content'), L10n::t("Don't show the rich content \x28e.g. embedded PDF\x29, except from the domains listed below.")],
1162                 '$allowed_oembed'         => ['allowed_oembed', L10n::t("Allowed OEmbed domains"), Config::get('system', 'allowed_oembed'), L10n::t("Comma separated list of domains which oembed content is allowed to be displayed. Wildcards are accepted.")],
1163                 '$block_public'           => ['block_public', L10n::t("Block public"), Config::get('system', 'block_public'), L10n::t("Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.")],
1164                 '$force_publish'          => ['publish_all', L10n::t("Force publish"), Config::get('system', 'publish_all'), L10n::t("Check to force all profiles on this site to be listed in the site directory.") . '<strong>' . L10n::t('Enabling this may violate privacy laws like the GDPR') . '</strong>'],
1165                 '$global_directory'       => ['directory', L10n::t("Global directory URL"), Config::get('system', 'directory', 'https://dir.friendica.social'), L10n::t("URL to the global directory. If this is not set, the global directory is completely unavailable to the application.")],
1166                 '$newuser_private'        => ['newuser_private', L10n::t("Private posts by default for new users"), Config::get('system', 'newuser_private'), L10n::t("Set default post permissions for all new members to the default privacy group rather than public.")],
1167                 '$enotify_no_content'     => ['enotify_no_content', L10n::t("Don't include post content in email notifications"), Config::get('system', 'enotify_no_content'), 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.")],
1168                 '$private_addons'         => ['private_addons', L10n::t("Disallow public access to addons listed in the apps menu."), Config::get('config', 'private_addons'), L10n::t("Checking this box will restrict addons listed in the apps menu to members only.")],
1169                 '$disable_embedded'       => ['disable_embedded', L10n::t("Don't embed private images in posts"), Config::get('system', 'disable_embedded'), 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.")],
1170                 '$explicit_content'       => ['explicit_content', L10n::t('Explicit Content'), Config::get('system', 'explicit_content', false), 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.')],
1171                 '$allow_users_remote_self'=> ['allow_users_remote_self', L10n::t('Allow Users to set remote_self'), Config::get('system', 'allow_users_remote_self'), 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.')],
1172                 '$no_multi_reg'           => ['no_multi_reg', L10n::t("Block multiple registrations"), Config::get('system', 'block_extended_register'), L10n::t("Disallow users to register additional accounts for use as pages.")],
1173                 '$no_openid'              => ['no_openid', L10n::t("Disable OpenID"), Config::get('system', 'no_openid'), L10n::t("Disable OpenID support for registration and logins.")],
1174                 '$no_regfullname'         => ['no_regfullname', L10n::t("No Fullname check"), Config::get('system', 'no_regfullname'), L10n::t("Allow users to register without a space between the first name and the last name in their full name.")],
1175                 '$community_page_style'   => ['community_page_style', L10n::t("Community pages for visitors"), Config::get('system', 'community_page_style'), L10n::t("Which community pages should be available for visitors. Local users always see both pages."), $community_page_style_choices],
1176                 '$max_author_posts_community_page' => ['max_author_posts_community_page', L10n::t("Posts per user on community page"), Config::get('system', 'max_author_posts_community_page'), L10n::t("The maximum number of posts per user on the community page. \x28Not valid for 'Global Community'\x29")],
1177                 '$ostatus_disabled'       => ['ostatus_disabled', L10n::t("Disable OStatus support"), Config::get('system', 'ostatus_disabled'), L10n::t("Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed.")],
1178                 '$ostatus_full_threads'   => ['ostatus_full_threads', L10n::t("Only import OStatus/ActivityPub threads from our contacts"), Config::get('system', 'ostatus_full_threads'), L10n::t("Normally we import every content from our OStatus and ActivityPub contacts. With this option we only store threads that are started by a contact that is known on our system.")],
1179                 '$ostatus_not_able'       => L10n::t("OStatus support can only be enabled if threading is enabled."),
1180                 '$diaspora_able'          => $diaspora_able,
1181                 '$diaspora_not_able'      => L10n::t("Diaspora support can't be enabled because Friendica was installed into a sub directory."),
1182                 '$diaspora_enabled'       => ['diaspora_enabled', L10n::t("Enable Diaspora support"), Config::get('system', 'diaspora_enabled', $diaspora_able), L10n::t("Provide built-in Diaspora network compatibility.")],
1183                 '$dfrn_only'              => ['dfrn_only', L10n::t('Only allow Friendica contacts'), Config::get('system', 'dfrn_only'), L10n::t("All contacts must use Friendica protocols. All other built-in communication protocols disabled.")],
1184                 '$verifyssl'              => ['verifyssl', L10n::t("Verify SSL"), Config::get('system', 'verifyssl'), L10n::t("If you wish, you can turn on strict certificate checking. This will mean you cannot connect \x28at all\x29 to self-signed SSL sites.")],
1185                 '$proxyuser'              => ['proxyuser', L10n::t("Proxy user"), Config::get('system', 'proxyuser'), ""],
1186                 '$proxy'                  => ['proxy', L10n::t("Proxy URL"), Config::get('system', 'proxy'), ""],
1187                 '$timeout'                => ['timeout', L10n::t("Network timeout"), Config::get('system', 'curl_timeout', 60), L10n::t("Value is in seconds. Set to 0 for unlimited \x28not recommended\x29.")],
1188                 '$maxloadavg'             => ['maxloadavg', L10n::t("Maximum Load Average"), Config::get('system', 'maxloadavg', 20), L10n::t("Maximum system load before delivery and poll processes are deferred - default %d.", 20)],
1189                 '$maxloadavg_frontend'    => ['maxloadavg_frontend', L10n::t("Maximum Load Average \x28Frontend\x29"), Config::get('system', 'maxloadavg_frontend', 50), L10n::t("Maximum system load before the frontend quits service - default 50.")],
1190                 '$min_memory'             => ['min_memory', L10n::t("Minimal Memory"), Config::get('system', 'min_memory', 0), L10n::t("Minimal free memory in MB for the worker. Needs access to /proc/meminfo - default 0 \x28deactivated\x29.")],
1191                 '$optimize_max_tablesize' => ['optimize_max_tablesize', L10n::t("Maximum table size for optimization"), $optimize_max_tablesize, L10n::t("Maximum table size \x28in MB\x29 for the automatic optimization. Enter -1 to disable it.")],
1192                 '$optimize_fragmentation' => ['optimize_fragmentation', L10n::t("Minimum level of fragmentation"), Config::get('system', 'optimize_fragmentation', 30), L10n::t("Minimum fragmenation level to start the automatic optimization - default value is 30%.")],
1193
1194                 '$poco_completion'        => ['poco_completion', L10n::t("Periodical check of global contacts"), Config::get('system', 'poco_completion'), L10n::t("If enabled, the global contacts are checked periodically for missing or outdated data and the vitality of the contacts and servers.")],
1195                 '$poco_requery_days'      => ['poco_requery_days', L10n::t("Days between requery"), Config::get('system', 'poco_requery_days'), L10n::t("Number of days after which a server is requeried for his contacts.")],
1196                 '$poco_discovery'         => ['poco_discovery', L10n::t("Discover contacts from other servers"), (string)intval(Config::get('system', 'poco_discovery')), 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],
1197                 '$poco_discovery_since'   => ['poco_discovery_since', L10n::t("Timeframe for fetching global contacts"), (string)intval(Config::get('system', 'poco_discovery_since')), 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],
1198                 '$poco_local_search'      => ['poco_local_search', L10n::t("Search the local directory"), Config::get('system', 'poco_local_search'), 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.")],
1199
1200                 '$nodeinfo'               => ['nodeinfo', L10n::t("Publish server information"), Config::get('system', 'nodeinfo'), 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.")],
1201
1202                 '$check_new_version_url'  => ['check_new_version_url', L10n::t("Check upstream version"), Config::get('system', 'check_new_version_url'), 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],
1203                 '$suppress_tags'          => ['suppress_tags', L10n::t("Suppress Tags"), Config::get('system', 'suppress_tags'), L10n::t("Suppress showing a list of hashtags at the end of the posting.")],
1204                 '$dbclean'                => ['dbclean', L10n::t("Clean database"), Config::get('system', 'dbclean', false), L10n::t("Remove old remote items, orphaned database records and old content from some other helper tables.")],
1205                 '$dbclean_expire_days'    => ['dbclean_expire_days', L10n::t("Lifespan of remote items"), Config::get('system', 'dbclean-expire-days', 0), 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.")],
1206                 '$dbclean_unclaimed'      => ['dbclean_unclaimed', L10n::t("Lifespan of unclaimed items"), Config::get('system', 'dbclean-expire-unclaimed', 90), 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.")],
1207                 '$dbclean_expire_conv'    => ['dbclean_expire_conv', L10n::t("Lifespan of raw conversation data"), Config::get('system', 'dbclean_expire_conversation', 90), 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.")],
1208                 '$itemcache'              => ['itemcache', L10n::t("Path to item cache"), Config::get('system', 'itemcache'), L10n::t("The item caches buffers generated bbcode and external images.")],
1209                 '$itemcache_duration'     => ['itemcache_duration', L10n::t("Cache duration in seconds"), Config::get('system', 'itemcache_duration'), L10n::t("How long should the cache files be hold? Default value is 86400 seconds \x28One day\x29. To disable the item cache, set the value to -1.")],
1210                 '$max_comments'           => ['max_comments', L10n::t("Maximum numbers of comments per post"), Config::get('system', 'max_comments'), L10n::t("How much comments should be shown for each post? Default value is 100.")],
1211                 '$temppath'               => ['temppath', L10n::t("Temp path"), Config::get('system', 'temppath'), L10n::t("If you have a restricted system where the webserver can't access the system temp path, enter another path here.")],
1212                 '$proxy_disabled'         => ['proxy_disabled', L10n::t("Disable picture proxy"), Config::get('system', 'proxy_disabled'), L10n::t("The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth.")],
1213                 '$only_tag_search'        => ['only_tag_search', L10n::t("Only search in tags"), Config::get('system', 'only_tag_search'), L10n::t("On large systems the text search can slow down the system extremely.")],
1214
1215                 '$relocate_url'           => ['relocate_url', L10n::t("New base url"), System::baseUrl(), L10n::t("Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users.")],
1216
1217                 '$rino'                   => ['rino', L10n::t("RINO Encryption"), intval(Config::get('system', 'rino_encrypt')), L10n::t("Encryption layer between nodes."), [0 => L10n::t("Disabled"), 1 => L10n::t("Enabled")]],
1218
1219                 '$worker_queues'          => ['worker_queues', L10n::t("Maximum number of parallel workers"), Config::get('system', 'worker_queues'), L10n::t("On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d.", 5, 20, 10)],
1220                 '$worker_dont_fork'       => ['worker_dont_fork', L10n::t("Don't use 'proc_open' with the worker"), Config::get('system', 'worker_dont_fork'), 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.")],
1221                 '$worker_fastlane'        => ['worker_fastlane', L10n::t("Enable fastlane"), Config::get('system', 'worker_fastlane'), L10n::t("When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority.")],
1222                 '$worker_frontend'        => ['worker_frontend', L10n::t('Enable frontend worker'), Config::get('system', 'frontend_worker'), L10n::t("When enabled the Worker process is triggered when backend access is performed \x28e.g. messages being delivered\x29. 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.", System::baseUrl())],
1223
1224                 '$relay_subscribe'        => ['relay_subscribe', L10n::t("Subscribe to relay"), Config::get('system', 'relay_subscribe'), 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.")],
1225                 '$relay_server'           => ['relay_server', L10n::t("Relay server"), Config::get('system', 'relay_server', 'https://relay.diasp.org'), L10n::t("Address of the relay server where public posts should be send to. For example https://relay.diasp.org")],
1226                 '$relay_directly'         => ['relay_directly', L10n::t("Direct relay transfer"), Config::get('system', 'relay_directly'), L10n::t("Enables the direct transfer to other servers without using the relay servers")],
1227                 '$relay_scope'            => ['relay_scope', L10n::t("Relay scope"), Config::get('system', 'relay_scope'), 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."), ['' => L10n::t('Disabled'), 'all' => L10n::t('all'), 'tags' => L10n::t('tags')]],
1228                 '$relay_server_tags'      => ['relay_server_tags', L10n::t("Server tags"), Config::get('system', 'relay_server_tags'), L10n::t("Comma separated list of tags for the 'tags' subscription.")],
1229                 '$relay_user_tags'        => ['relay_user_tags', L10n::t("Allow user tags"), Config::get('system', 'relay_user_tags', true), L10n::t("If enabled, the tags from the saved searches will used for the 'tags' subscription in addition to the 'relay_server_tags'.")],
1230
1231                 '$form_security_token'    => BaseModule::getFormSecurityToken("admin_site"),
1232                 '$relocate_button'        => L10n::t('Start Relocation'),
1233         ]);
1234 }
1235
1236 /**
1237  * @brief Generates admin panel subpage for DB syncronization
1238  *
1239  * This page checks if the database of friendica is in sync with the specs.
1240  * Should this not be the case, it attemps to sync the structure and notifies
1241  * the admin if the automatic process was failing.
1242  *
1243  * The returned string holds the HTML code of the page.
1244  *
1245  * @param App $a
1246  * @return string
1247  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1248  */
1249 function admin_page_dbsync(App $a)
1250 {
1251         $o = '';
1252
1253         if ($a->argc > 3 && intval($a->argv[3]) && $a->argv[2] === 'mark') {
1254                 Config::set('database', 'update_' . intval($a->argv[3]), 'success');
1255                 $curr = Config::get('system', 'build');
1256                 if (intval($curr) == intval($a->argv[3])) {
1257                         Config::set('system', 'build', intval($curr) + 1);
1258                 }
1259                 info(L10n::t('Update has been marked successful') . EOL);
1260                 $a->internalRedirect('admin/dbsync');
1261         }
1262
1263         if (($a->argc > 2) && (intval($a->argv[2]) || ($a->argv[2] === 'check'))) {
1264                 $retval = DBStructure::update($a->getBasePath(), false, true);
1265                 if ($retval === '') {
1266                         $o .= L10n::t("Database structure update %s was successfully applied.", DB_UPDATE_VERSION) . "<br />";
1267                         Config::set('database', 'last_successful_update', DB_UPDATE_VERSION);
1268                         Config::set('database', 'last_successful_update_time', time());
1269                 } else {
1270                         $o .= L10n::t("Executing of database structure update %s failed with error: %s", DB_UPDATE_VERSION, $retval) . "<br />";
1271                 }
1272                 if ($a->argv[2] === 'check') {
1273                         return $o;
1274                 }
1275         }
1276
1277         if ($a->argc > 2 && intval($a->argv[2])) {
1278                 require_once 'update.php';
1279
1280                 $func = 'update_' . intval($a->argv[2]);
1281
1282                 if (function_exists($func)) {
1283                         $retval = $func();
1284
1285                         if ($retval === Update::FAILED) {
1286                                 $o .= L10n::t("Executing %s failed with error: %s", $func, $retval);
1287                         } elseif ($retval === Update::SUCCESS) {
1288                                 $o .= L10n::t('Update %s was successfully applied.', $func);
1289                                 Config::set('database', $func, 'success');
1290                         } else {
1291                                 $o .= L10n::t('Update %s did not return a status. Unknown if it succeeded.', $func);
1292                         }
1293                 } else {
1294                         $o .= L10n::t('There was no additional update function %s that needed to be called.', $func) . "<br />";
1295                         Config::set('database', $func, 'success');
1296                 }
1297
1298                 return $o;
1299         }
1300
1301         $failed = [];
1302         $r = q("SELECT `k`, `v` FROM `config` WHERE `cat` = 'database' ");
1303
1304         if (DBA::isResult($r)) {
1305                 foreach ($r as $rr) {
1306                         $upd = intval(substr($rr['k'], 7));
1307                         if ($upd < 1139 || $rr['v'] === 'success') {
1308                                 continue;
1309                         }
1310                         $failed[] = $upd;
1311                 }
1312         }
1313
1314         if (!count($failed)) {
1315                 $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('structure_check.tpl'), [
1316                         '$base' => System::baseUrl(true),
1317                         '$banner' => L10n::t('No failed updates.'),
1318                         '$check' => L10n::t('Check database structure'),
1319                 ]);
1320         } else {
1321                 $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('failed_updates.tpl'), [
1322                         '$base' => System::baseUrl(true),
1323                         '$banner' => L10n::t('Failed Updates'),
1324                         '$desc' => L10n::t('This does not include updates prior to 1139, which did not return a status.'),
1325                         '$mark' => L10n::t("Mark success \x28if update was manually applied\x29"),
1326                         '$apply' => L10n::t('Attempt to execute this update step automatically'),
1327                         '$failed' => $failed
1328                 ]);
1329         }
1330
1331         return $o;
1332 }
1333
1334 /**
1335  * @param array  $themes
1336  * @param string $th
1337  * @param int    $result
1338  */
1339 function toggle_theme(&$themes, $th, &$result)
1340 {
1341         $count = count($themes);
1342         for ($x = 0; $x < $count; $x++) {
1343                 if ($themes[$x]['name'] === $th) {
1344                         if ($themes[$x]['allowed']) {
1345                                 $themes[$x]['allowed'] = 0;
1346                                 $result = 0;
1347                         } else {
1348                                 $themes[$x]['allowed'] = 1;
1349                                 $result = 1;
1350                         }
1351                 }
1352         }
1353 }
1354
1355 /**
1356  * @param array  $themes
1357  * @param string $th
1358  * @return int
1359  */
1360 function theme_status($themes, $th)
1361 {
1362         $count = count($themes);
1363         for ($x = 0; $x < $count; $x++) {
1364                 if ($themes[$x]['name'] === $th) {
1365                         if ($themes[$x]['allowed']) {
1366                                 return 1;
1367                         } else {
1368                                 return 0;
1369                         }
1370                 }
1371         }
1372         return 0;
1373 }
1374
1375 /**
1376  * @param array $themes
1377  * @return string
1378  */
1379 function rebuild_theme_table($themes)
1380 {
1381         $o = '';
1382         if (count($themes)) {
1383                 foreach ($themes as $th) {
1384                         if ($th['allowed']) {
1385                                 if (strlen($o)) {
1386                                         $o .= ',';
1387                                 }
1388                                 $o .= $th['name'];
1389                         }
1390                 }
1391         }
1392         return $o;
1393 }
1394
1395 /**
1396  * @brief Themes admin page
1397  *
1398  * This function generates the admin panel page to control the themes available
1399  * on the friendica node. If the name of a theme is given as parameter a page
1400  * with the details for the theme is shown. Otherwise a list of available
1401  * themes is generated.
1402  *
1403  * The template used for displaying the list of themes and the details of the
1404  * themes are the same as used for the addons.
1405  *
1406  * The returned string contains the HTML code of the admin panel page.
1407  *
1408  * @param App $a
1409  * @return string
1410  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1411  */
1412 function admin_page_themes(App $a)
1413 {
1414         $allowed_themes_str = Config::get('system', 'allowed_themes');
1415         $allowed_themes_raw = explode(',', $allowed_themes_str);
1416         $allowed_themes = [];
1417         if (count($allowed_themes_raw)) {
1418                 foreach ($allowed_themes_raw as $x) {
1419                         if (strlen(trim($x))) {
1420                                 $allowed_themes[] = trim($x);
1421                         }
1422                 }
1423         }
1424
1425         $themes = [];
1426         $files = glob('view/theme/*');
1427         if (is_array($files)) {
1428                 foreach ($files as $file) {
1429                         $f = basename($file);
1430
1431                         // Is there a style file?
1432                         $theme_files = glob('view/theme/' . $f . '/style.*');
1433
1434                         // If not then quit
1435                         if (count($theme_files) == 0) {
1436                                 continue;
1437                         }
1438
1439                         $is_experimental = intval(file_exists($file . '/experimental'));
1440                         $is_supported = 1 - (intval(file_exists($file . '/unsupported')));
1441                         $is_allowed = intval(in_array($f, $allowed_themes));
1442
1443                         if ($is_allowed || $is_supported || Config::get("system", "show_unsupported_themes")) {
1444                                 $themes[] = ['name' => $f, 'experimental' => $is_experimental, 'supported' => $is_supported, 'allowed' => $is_allowed];
1445                         }
1446                 }
1447         }
1448
1449         if (!count($themes)) {
1450                 notice(L10n::t('No themes found.'));
1451                 return '';
1452         }
1453
1454         /*
1455          * Single theme
1456          */
1457
1458         if ($a->argc == 3) {
1459                 $theme = $a->argv[2];
1460                 if (!is_dir("view/theme/$theme")) {
1461                         notice(L10n::t("Item not found."));
1462                         return '';
1463                 }
1464
1465                 if (!empty($_GET['a']) && $_GET['a'] == "t") {
1466                         BaseModule::checkFormSecurityTokenRedirectOnError('/admin/themes', 'admin_themes', 't');
1467
1468                         // Toggle theme status
1469
1470                         toggle_theme($themes, $theme, $result);
1471                         $s = rebuild_theme_table($themes);
1472                         if ($result) {
1473                                 Theme::install($theme);
1474                                 info(sprintf('Theme %s enabled.', $theme));
1475                         } else {
1476                                 Theme::uninstall($theme);
1477                                 info(sprintf('Theme %s disabled.', $theme));
1478                         }
1479
1480                         Config::set('system', 'allowed_themes', $s);
1481                         $a->internalRedirect('admin/themes');
1482                         return ''; // NOTREACHED
1483                 }
1484
1485                 // display theme details
1486                 if (theme_status($themes, $theme)) {
1487                         $status = "on";
1488                         $action = L10n::t("Disable");
1489                 } else {
1490                         $status = "off";
1491                         $action = L10n::t("Enable");
1492                 }
1493
1494                 $readme = null;
1495
1496                 if (is_file("view/theme/$theme/README.md")) {
1497                         $readme = Markdown::convert(file_get_contents("view/theme/$theme/README.md"), false);
1498                 } elseif (is_file("view/theme/$theme/README")) {
1499                         $readme = "<pre>" . file_get_contents("view/theme/$theme/README") . "</pre>";
1500                 }
1501
1502                 $admin_form = '';
1503                 if (is_file("view/theme/$theme/config.php")) {
1504                         require_once "view/theme/$theme/config.php";
1505
1506                         if (function_exists('theme_admin')) {
1507                                 $admin_form = theme_admin($a);
1508                         }
1509                 }
1510
1511                 $screenshot = [Theme::getScreenshot($theme), L10n::t('Screenshot')];
1512                 if (!stristr($screenshot[0], $theme)) {
1513                         $screenshot = null;
1514                 }
1515
1516                 $t = Renderer::getMarkupTemplate('admin/addon_details.tpl');
1517                 return Renderer::replaceMacros($t, [
1518                         '$title' => L10n::t('Administration'),
1519                         '$page' => L10n::t('Themes'),
1520                         '$toggle' => L10n::t('Toggle'),
1521                         '$settings' => L10n::t('Settings'),
1522                         '$baseurl' => System::baseUrl(true),
1523                         '$addon' => $theme . (!empty($_GET['mode']) ? '?mode=' . $_GET['mode'] : ''),
1524                         '$status' => $status,
1525                         '$action' => $action,
1526                         '$info' => Theme::getInfo($theme),
1527                         '$function' => 'themes',
1528                         '$admin_form' => $admin_form,
1529                         '$str_author' => L10n::t('Author: '),
1530                         '$str_maintainer' => L10n::t('Maintainer: '),
1531                         '$screenshot' => $screenshot,
1532                         '$readme' => $readme,
1533
1534                         '$form_security_token' => BaseModule::getFormSecurityToken("admin_themes"),
1535                 ]);
1536         }
1537 }
1538
1539 /**
1540  * @brief Prosesses data send by Logs admin page
1541  *
1542  * @param App $a
1543  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1544  */
1545 function admin_page_logs_post(App $a)
1546 {
1547         if (!empty($_POST['page_logs'])) {
1548                 BaseModule::checkFormSecurityTokenRedirectOnError('/admin/logs', 'admin_logs');
1549
1550                 $logfile   = (!empty($_POST['logfile']) ? Strings::escapeTags(trim($_POST['logfile'])) : '');
1551                 $debugging = !empty($_POST['debugging']);
1552                 $loglevel  = defaults($_POST, 'loglevel', LogLevel::ERROR);
1553
1554                 Config::set('system', 'logfile', $logfile);
1555                 Config::set('system', 'debugging', $debugging);
1556                 Config::set('system', 'loglevel', $loglevel);
1557         }
1558
1559         info(L10n::t("Log settings updated."));
1560         $a->internalRedirect('admin/logs');
1561         return; // NOTREACHED
1562 }
1563
1564 /**
1565  * @brief Generates admin panel subpage for configuration of the logs
1566  *
1567  * This function take the view/templates/admin_logs.tpl file and generates a
1568  * page where admin can configure the logging of friendica.
1569  *
1570  * Displaying the log is separated from the log config as the logfile can get
1571  * big depending on the settings and changing settings regarding the logs can
1572  * thus waste bandwidth.
1573  *
1574  * The string returned contains the content of the template file with replaced
1575  * macros.
1576  *
1577  * @param App $a
1578  * @return string
1579  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1580  */
1581 function admin_page_logs(App $a)
1582 {
1583         $log_choices = [
1584                 LogLevel::ERROR   => 'Error',
1585                 LogLevel::WARNING => 'Warning',
1586                 LogLevel::NOTICE  => 'Notice',
1587                 LogLevel::INFO    => 'Info',
1588                 LogLevel::DEBUG   => 'Debug',
1589         ];
1590
1591         if (ini_get('log_errors')) {
1592                 $phplogenabled = L10n::t('PHP log currently enabled.');
1593         } else {
1594                 $phplogenabled = L10n::t('PHP log currently disabled.');
1595         }
1596
1597         $t = Renderer::getMarkupTemplate('admin/logs.tpl');
1598
1599         return Renderer::replaceMacros($t, [
1600                 '$title' => L10n::t('Administration'),
1601                 '$page' => L10n::t('Logs'),
1602                 '$submit' => L10n::t('Save Settings'),
1603                 '$clear' => L10n::t('Clear'),
1604                 '$baseurl' => System::baseUrl(true),
1605                 '$logname' => Config::get('system', 'logfile'),
1606                 // name, label, value, help string, extra data...
1607                 '$debugging' => ['debugging', L10n::t("Enable Debugging"), Config::get('system', 'debugging'), ""],
1608                 '$logfile' => ['logfile', L10n::t("Log file"), Config::get('system', 'logfile'), L10n::t("Must be writable by web server. Relative to your Friendica top-level directory.")],
1609                 '$loglevel' => ['loglevel', L10n::t("Log level"), Config::get('system', 'loglevel'), "", $log_choices],
1610                 '$form_security_token' => BaseModule::getFormSecurityToken("admin_logs"),
1611                 '$phpheader' => L10n::t("PHP logging"),
1612                 '$phphint' => L10n::t("To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."),
1613                 '$phplogcode' => "error_reporting(E_ERROR | E_WARNING | E_PARSE);\nini_set('error_log','php.out');\nini_set('log_errors','1');\nini_set('display_errors', '1');",
1614                 '$phplogenabled' => $phplogenabled,
1615         ]);
1616 }
1617
1618 /**
1619  * @brief Generates admin panel subpage to view the Friendica log
1620  *
1621  * This function loads the template view/templates/admin_viewlogs.tpl to
1622  * display the systemlog content. The filename for the systemlog of friendica
1623  * is relative to the base directory and taken from the config entry 'logfile'
1624  * in the 'system' category.
1625  *
1626  * Displaying the log is separated from the log config as the logfile can get
1627  * big depending on the settings and changing settings regarding the logs can
1628  * thus waste bandwidth.
1629  *
1630  * The string returned contains the content of the template file with replaced
1631  * macros.
1632  *
1633  * @param App $a
1634  * @return string
1635  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1636  */
1637 function admin_page_viewlogs(App $a)
1638 {
1639         $t = Renderer::getMarkupTemplate('admin/viewlogs.tpl');
1640         $f = Config::get('system', 'logfile');
1641         $data = '';
1642
1643         if (!file_exists($f)) {
1644                 $data = L10n::t('Error trying to open <strong>%1$s</strong> log file.\r\n<br/>Check to see if file %1$s exist and is readable.', $f);
1645         } else {
1646                 $fp = fopen($f, 'r');
1647                 if (!$fp) {
1648                         $data = L10n::t('Couldn\'t open <strong>%1$s</strong> log file.\r\n<br/>Check to see if file %1$s is readable.', $f);
1649                 } else {
1650                         $fstat = fstat($fp);
1651                         $size = $fstat['size'];
1652                         if ($size != 0) {
1653                                 if ($size > 5000000 || $size < 0) {
1654                                         $size = 5000000;
1655                                 }
1656                                 $seek = fseek($fp, 0 - $size, SEEK_END);
1657                                 if ($seek === 0) {
1658                                         $data = Strings::escapeHtml(fread($fp, $size));
1659                                         while (!feof($fp)) {
1660                                                 $data .= Strings::escapeHtml(fread($fp, 4096));
1661                                         }
1662                                 }
1663                         }
1664                         fclose($fp);
1665                 }
1666         }
1667         return Renderer::replaceMacros($t, [
1668                 '$title' => L10n::t('Administration'),
1669                 '$page' => L10n::t('View Logs'),
1670                 '$data' => $data,
1671                 '$logname' => Config::get('system', 'logfile')
1672         ]);
1673 }
1674
1675 /**
1676  * @brief Prosesses data send by the features admin page
1677  *
1678  * @param App $a
1679  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1680  */
1681 function admin_page_features_post(App $a)
1682 {
1683         BaseModule::checkFormSecurityTokenRedirectOnError('/admin/features', 'admin_manage_features');
1684
1685         Logger::log('postvars: ' . print_r($_POST, true), Logger::DATA);
1686
1687         $features = Feature::get(false);
1688
1689         foreach ($features as $fname => $fdata) {
1690                 foreach (array_slice($fdata, 1) as $f) {
1691                         $feature = $f[0];
1692                         $feature_state = 'feature_' . $feature;
1693                         $featurelock = 'featurelock_' . $feature;
1694
1695                         if (!empty($_POST[$feature_state])) {
1696                                 $val = intval($_POST[$feature_state]);
1697                         } else {
1698                                 $val = 0;
1699                         }
1700                         Config::set('feature', $feature, $val);
1701
1702                         if (!empty($_POST[$featurelock])) {
1703                                 Config::set('feature_lock', $feature, $val);
1704                         } else {
1705                                 Config::delete('feature_lock', $feature);
1706                         }
1707                 }
1708         }
1709
1710         $a->internalRedirect('admin/features');
1711         return; // NOTREACHED
1712 }
1713
1714 /**
1715  * @brief Subpage for global additional feature management
1716  *
1717  * This functin generates the subpage 'Manage Additional Features'
1718  * for the admin panel. At this page the admin can set preferences
1719  * for the user settings of the 'additional features'. If needed this
1720  * preferences can be locked through the admin.
1721  *
1722  * The returned string contains the HTML code of the subpage 'Manage
1723  * Additional Features'
1724  *
1725  * @param App $a
1726  * @return string
1727  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1728  */
1729 function admin_page_features(App $a)
1730 {
1731         if (($a->argc > 1) && ($a->getArgumentValue(1) === 'features')) {
1732                 $arr = [];
1733                 $features = Feature::get(false);
1734
1735                 foreach ($features as $fname => $fdata) {
1736                         $arr[$fname] = [];
1737                         $arr[$fname][0] = $fdata[0];
1738                         foreach (array_slice($fdata, 1) as $f) {
1739                                 $set = Config::get('feature', $f[0], $f[3]);
1740                                 $arr[$fname][1][] = [
1741                                         ['feature_' . $f[0], $f[1], $set, $f[2], [L10n::t('Off'), L10n::t('On')]],
1742                                         ['featurelock_' . $f[0], L10n::t('Lock feature %s', $f[1]), (($f[4] !== false) ? "1" : ''), '', [L10n::t('Off'), L10n::t('On')]]
1743                                 ];
1744                         }
1745                 }
1746
1747                 $tpl = Renderer::getMarkupTemplate('admin/settings_features.tpl');
1748                 $o = Renderer::replaceMacros($tpl, [
1749                         '$form_security_token' => BaseModule::getFormSecurityToken("admin_manage_features"),
1750                         '$title' => L10n::t('Manage Additional Features'),
1751                         '$features' => $arr,
1752                         '$submit' => L10n::t('Save Settings'),
1753                 ]);
1754
1755                 return $o;
1756         }
1757 }
1758
1759 function admin_page_server_vital()
1760 {
1761         // Fetch the host-meta to check if this really is a vital server
1762         return Network::curl(System::baseUrl() . '/.well-known/host-meta')->isSuccess();
1763 }