]> git.mxchange.org Git - friendica.git/blob - mod/admin.php
Remove the queue from the core
[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\Addon;
14 use Friendica\Core\Config;
15 use Friendica\Core\L10n;
16 use Friendica\Core\Logger;
17 use Friendica\Core\Renderer;
18 use Friendica\Core\StorageManager;
19 use Friendica\Core\System;
20 use Friendica\Core\Theme;
21 use Friendica\Core\Update;
22 use Friendica\Core\Worker;
23 use Friendica\Database\DBA;
24 use Friendica\Database\DBStructure;
25 use Friendica\Model\Contact;
26 use Friendica\Model\Item;
27 use Friendica\Model\Register;
28 use Friendica\Model\User;
29 use Friendica\Module;
30 use Friendica\Module\Login;
31 use Friendica\Module\Tos;
32 use Friendica\Protocol\PortableContact;
33 use Friendica\Util\Arrays;
34 use Friendica\Util\BasePath;
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 'users':
91                                 admin_page_users_post($a);
92                                 break;
93                         case 'addons':
94                                 if ($a->argc > 2 &&
95                                         is_file("addon/" . $a->argv[2] . "/" . $a->argv[2] . ".php")) {
96                                         include_once "addon/" . $a->argv[2] . "/" . $a->argv[2] . ".php";
97                                         if (function_exists($a->argv[2] . '_addon_admin_post')) {
98                                                 $func = $a->argv[2] . '_addon_admin_post';
99                                                 $func($a);
100                                         }
101                                 }
102                                 $return_path = 'admin/addons/' . $a->argv[2];
103                                 break;
104                         case 'themes':
105                                 if ($a->argc < 2) {
106                                         if ($a->isAjax()) {
107                                                 return;
108                                         }
109                                         $a->internalRedirect('admin/');
110                                         return;
111                                 }
112
113                                 $theme = $a->argv[2];
114                                 if (is_file("view/theme/$theme/config.php")) {
115                                         require_once "view/theme/$theme/config.php";
116
117                                         if (function_exists('theme_admin_post')) {
118                                                 theme_admin_post($a);
119                                         }
120                                 }
121
122                                 info(L10n::t('Theme settings updated.'));
123                                 if ($a->isAjax()) {
124                                         return;
125                                 }
126                                 $return_path = 'admin/themes/' . $theme . (!empty($_GET['mode']) ? '?mode=' . $_GET['mode'] : '');
127                                 break;
128                         case 'tos':
129                                 admin_page_tos_post($a);
130                                 break;
131                         case 'features':
132                                 admin_page_features_post($a);
133                                 break;
134                         case 'logs':
135                                 admin_page_logs_post($a);
136                                 break;
137                         case 'contactblock':
138                                 admin_page_contactblock_post($a);
139                                 break;
140                         case 'blocklist':
141                                 admin_page_blocklist_post($a);
142                                 break;
143                         case 'deleteitem':
144                                 admin_page_deleteitem_post($a);
145                                 break;
146                 }
147         }
148
149         $a->internalRedirect($return_path);
150         return; // NOTREACHED
151 }
152
153 /**
154  * @brief Generates content of the admin panel pages
155  *
156  * This function generates the content for the admin panel. It consists of the
157  * aside menu (same for the entire admin panel) and the code for the soecified
158  * subpage of the panel.
159  *
160  * The structure of the adress is: /admin/subpage/details though "details" is
161  * only necessary for some subpages, like themes or addons where it is the name
162  * of one theme resp. addon from which the details should be shown. Content for
163  * the subpages is generated in separate functions for each of the subpages.
164  *
165  * The returned string hold the generated HTML code of the page.
166  *
167  * @param App $a
168  * @return string
169  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
170  */
171 function admin_content(App $a)
172 {
173         if (!is_site_admin()) {
174                 return Login::form();
175         }
176
177         if (!empty($_SESSION['submanage'])) {
178                 return "";
179         }
180
181         // APC deactivated, since there are problems with PHP 5.5
182         //if (function_exists("apc_delete")) {
183         // $toDelete = new APCIterator('user', APC_ITER_VALUE);
184         // apc_delete($toDelete);
185         //}
186         // Header stuff
187         $a->page['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('admin/settings_head.tpl'), []);
188
189         /*
190          * Side bar links
191          */
192         $aside_tools = [];
193         // array(url, name, extra css classes)
194         // not part of $aside to make the template more adjustable
195         $aside_sub = [
196                 'information' => [L10n::t('Information'), [
197                         'overview' => ['admin/', L10n::t('Overview'), 'overview'],
198                         'federation'   => ['admin/federation/'  , L10n::t('Federation Statistics'), 'federation']]],
199                 'configuration' => [L10n::t('Configuration'), [
200                         'site'         => ['admin/site/'        , L10n::t('Site')                    , 'site'],
201                         'users'        => ['admin/users/'       , L10n::t('Users')                   , 'users'],
202                         'addons'       => ['admin/addons/'      , L10n::t('Addons')                  , 'addons'],
203                         'themes'       => ['admin/themes/'      , L10n::t('Themes')                  , 'themes'],
204                         'features'     => ['admin/features/'    , L10n::t('Additional features')     , 'features'],
205                         'tos'          => ['admin/tos/'         , L10n::t('Terms of Service')        , 'tos']]],
206                 'database' => [L10n::t('Database'), [
207                         'dbsync'       => ['admin/dbsync/'      , L10n::t('DB updates')              , 'dbsync'],
208                         'deferred'     => ['admin/deferred/'    , L10n::t('Inspect Deferred Workers'), 'deferred'],
209                         'workerqueue'  => ['admin/workerqueue/' , L10n::t('Inspect worker Queue')    , 'workerqueue']]],
210                 'tools' => [L10n::t('Tools'), [
211                         'contactblock' => ['admin/contactblock/', L10n::t('Contact Blocklist')       , 'contactblock'],
212                         'blocklist'    => ['admin/blocklist/'   , L10n::t('Server Blocklist')        , 'blocklist'],
213                         'deleteitem'   => ['admin/deleteitem/'  , L10n::t('Delete Item')             , 'deleteitem'],]],
214                 'logs' => [L10n::t('Logs'), [
215                         'logsconfig' => ['admin/logs/', L10n::t('Logs'), 'logs'],
216                         'logsview' => ['admin/viewlogs/', L10n::t('View Logs'), 'viewlogs']
217                 ]],
218                 'diagnostics' => [L10n::t('Diagnostics'), [
219                         'phpinfo' => ['phpinfo/', L10n::t('PHP Info'), 'phpinfo'],
220                         'probe' => ['probe/', L10n::t('probe address'), 'probe'],
221                         'webfinger' =>['webfinger/', L10n::t('check webfinger'), 'webfinger']
222                 ]]
223         ];
224
225         /* get addons admin page */
226
227         $r = q("SELECT `name` FROM `addon` WHERE `plugin_admin` = 1 ORDER BY `name`");
228         $aside_tools['addons_admin'] = [];
229         $addons_admin = [];
230         foreach ($r as $h) {
231                 $addon = $h['name'];
232                 $aside_tools['addons_admin'][] = ["admin/addons/" . $addon, $addon, "addon"];
233                 // temp addons with admin
234                 $addons_admin[] = $addon;
235         }
236
237         $t = Renderer::getMarkupTemplate('admin/aside.tpl');
238         $a->page['aside'] .= Renderer::replaceMacros($t, [
239                 '$admin' => $aside_tools,
240                 '$subpages' => $aside_sub,
241                 '$admtxt' => L10n::t('Admin'),
242                 '$plugadmtxt' => L10n::t('Addon Features'),
243                 '$h_pending' => L10n::t('User registrations waiting for confirmation'),
244                 '$admurl' => "admin/"
245         ]);
246
247         // Page content
248         $o = '';
249         // urls
250         if ($a->argc > 1) {
251                 switch ($a->argv[1]) {
252                         case 'site':
253                                 $o = admin_page_site($a);
254                                 break;
255                         case 'users':
256                                 $o = admin_page_users($a);
257                                 break;
258                         case 'addons':
259                                 $o = admin_page_addons($a, $addons_admin);
260                                 break;
261                         case 'themes':
262                                 $o = admin_page_themes($a);
263                                 break;
264                         case 'features':
265                                 $o = admin_page_features($a);
266                                 break;
267                         case 'logs':
268                                 $o = admin_page_logs($a);
269                                 break;
270                         case 'viewlogs':
271                                 $o = admin_page_viewlogs($a);
272                                 break;
273                         case 'dbsync':
274                                 $o = admin_page_dbsync($a);
275                                 break;
276                         case 'deferred':
277                                 $o = admin_page_workerqueue($a, true);
278                                 break;
279                         case 'workerqueue':
280                                 $o = admin_page_workerqueue($a, false);
281                                 break;
282                         case 'federation':
283                                 $o = admin_page_federation($a);
284                                 break;
285                         case 'contactblock':
286                                 $o = admin_page_contactblock($a);
287                                 break;
288                         case 'blocklist':
289                                 $o = admin_page_blocklist($a);
290                                 break;
291                         case 'deleteitem':
292                                 $o = admin_page_deleteitem($a);
293                                 break;
294                         case 'tos':
295                                 $o = admin_page_tos($a);
296                                 break;
297                         default:
298                                 notice(L10n::t("Item not found."));
299                 }
300         } else {
301                 $o = admin_page_summary($a);
302         }
303
304         if ($a->isAjax()) {
305                 echo $o;
306                 exit();
307         } else {
308                 return $o;
309         }
310 }
311
312 /**
313  * @brief Subpage to define the display of a Terms of Usage page.
314  *
315  * @param App $a
316  * @return string
317  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
318  */
319 function admin_page_tos(App $a)
320 {
321         $tos = new Tos();
322         $t = Renderer::getMarkupTemplate('admin/tos.tpl');
323         return Renderer::replaceMacros($t, [
324                 '$title' => L10n::t('Administration'),
325                 '$page' => L10n::t('Terms of Service'),
326                 '$displaytos' => ['displaytos', L10n::t('Display Terms of Service'), Config::get('system', 'tosdisplay'), L10n::t('Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page.')],
327                 '$displayprivstatement' => ['displayprivstatement', L10n::t('Display Privacy Statement'), Config::get('system', 'tosprivstatement'), L10n::t('Show some informations regarding the needed information to operate the node according e.g. to <a href="%s" target="_blank">EU-GDPR</a>.', 'https://en.wikipedia.org/wiki/General_Data_Protection_Regulation')],
328                 '$preview' => L10n::t('Privacy Statement Preview'),
329                 '$privtext' => $tos->privacy_complete,
330                 '$tostext' => ['tostext', L10n::t('The Terms of Service'), Config::get('system', 'tostext'), L10n::t('Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below.')],
331                 '$form_security_token' => BaseModule::getFormSecurityToken("admin_tos"),
332                 '$submit' => L10n::t('Save Settings'),
333         ]);
334 }
335
336 /**
337  * @brief Process send data from Admin TOS Page
338  *
339  * @param App $a
340  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
341  */
342 function admin_page_tos_post(App $a)
343 {
344         BaseModule::checkFormSecurityTokenRedirectOnError('/admin/tos', 'admin_tos');
345
346         if (empty($_POST['page_tos'])) {
347                 return;
348         }
349
350         $displaytos = !empty($_POST['displaytos']);
351         $displayprivstatement = !empty($_POST['displayprivstatement']);
352         $tostext = (!empty($_POST['tostext']) ? strip_tags(trim($_POST['tostext'])) : '');
353
354         Config::set('system', 'tosdisplay', $displaytos);
355         Config::set('system', 'tosprivstatement', $displayprivstatement);
356         Config::set('system', 'tostext', $tostext);
357
358         $a->internalRedirect('admin/tos');
359
360         return; // NOTREACHED
361 }
362
363 /**
364  * @brief Subpage to modify the server wide block list via the admin panel.
365  *
366  * This function generates the subpage of the admin panel to allow the
367  * modification of the node wide block/black list to block entire
368  * remote servers from communication with this node. The page allows
369  * adding, removing and editing of entries from the blocklist.
370  *
371  * @param App $a
372  * @return string
373  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
374  */
375 function admin_page_blocklist(App $a)
376 {
377         $blocklist = Config::get('system', 'blocklist');
378         $blocklistform = [];
379         if (is_array($blocklist)) {
380                 foreach ($blocklist as $id => $b) {
381                         $blocklistform[] = [
382                                 'domain' => ["domain[$id]", L10n::t('Blocked domain'), $b['domain'], '', L10n::t('The blocked domain'), 'required', '', ''],
383                                 'reason' => ["reason[$id]", L10n::t("Reason for the block"), $b['reason'], L10n::t('The reason why you blocked this domain.') . '(' . $b['domain'] . ')', 'required', '', ''],
384                                 'delete' => ["delete[$id]", L10n::t("Delete domain") . ' (' . $b['domain'] . ')', false, L10n::t("Check to delete this entry from the blocklist")]
385                         ];
386                 }
387         }
388         $t = Renderer::getMarkupTemplate('admin/blocklist.tpl');
389         return Renderer::replaceMacros($t, [
390                 '$title' => L10n::t('Administration'),
391                 '$page' => L10n::t('Server Blocklist'),
392                 '$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.'),
393                 '$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.'),
394                 '$addtitle' => L10n::t('Add new entry to block list'),
395                 '$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', '', ''],
396                 '$newreason' => ['newentry_reason', L10n::t('Block reason'), '', L10n::t('The reason why you blocked this domain.'), 'required', '', ''],
397                 '$submit' => L10n::t('Add Entry'),
398                 '$savechanges' => L10n::t('Save changes to the blocklist'),
399                 '$currenttitle' => L10n::t('Current Entries in the Blocklist'),
400                 '$thurl' => L10n::t('Blocked domain'),
401                 '$threason' => L10n::t('Reason for the block'),
402                 '$delentry' => L10n::t('Delete entry from blocklist'),
403                 '$entries' => $blocklistform,
404                 '$baseurl' => System::baseUrl(true),
405                 '$confirm_delete' => L10n::t('Delete entry from blocklist?'),
406                 '$form_security_token' => BaseModule::getFormSecurityToken("admin_blocklist")
407         ]);
408 }
409
410 /**
411  * @brief Process send data from Admin Blocklist Page
412  *
413  * @param App $a
414  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
415  */
416 function admin_page_blocklist_post(App $a)
417 {
418         if (empty($_POST['page_blocklist_save']) && empty($_POST['page_blocklist_edit'])) {
419                 return;
420         }
421
422         BaseModule::checkFormSecurityTokenRedirectOnError('/admin/blocklist', 'admin_blocklist');
423
424         if (!empty($_POST['page_blocklist_save'])) {
425                 //  Add new item to blocklist
426                 $blocklist = Config::get('system', 'blocklist');
427                 $blocklist[] = [
428                         'domain' => Strings::escapeTags(trim($_POST['newentry_domain'])),
429                         'reason' => Strings::escapeTags(trim($_POST['newentry_reason']))
430                 ];
431                 Config::set('system', 'blocklist', $blocklist);
432                 info(L10n::t('Server added to blocklist.') . EOL);
433         } else {
434                 // Edit the entries from blocklist
435                 $blocklist = [];
436                 foreach ($_POST['domain'] as $id => $domain) {
437                         // Trimming whitespaces as well as any lingering slashes
438                         $domain = Strings::escapeTags(trim($domain, "\x00..\x1F/"));
439                         $reason = Strings::escapeTags(trim($_POST['reason'][$id]));
440                         if (empty($_POST['delete'][$id])) {
441                                 $blocklist[] = [
442                                         'domain' => $domain,
443                                         'reason' => $reason
444                                 ];
445                         }
446                 }
447                 Config::set('system', 'blocklist', $blocklist);
448                 info(L10n::t('Site blocklist updated.') . EOL);
449         }
450         $a->internalRedirect('admin/blocklist');
451
452         return; // NOTREACHED
453 }
454
455 /**
456  * @brief Process data send by the contact block admin page
457  *
458  * @param App $a
459  * @throws ImagickException
460  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
461  */
462 function admin_page_contactblock_post(App $a)
463 {
464         $contact_url = defaults($_POST, 'contact_url', '');
465         $contacts    = defaults($_POST, 'contacts', []);
466
467         BaseModule::checkFormSecurityTokenRedirectOnError('/admin/contactblock', 'admin_contactblock');
468
469         if (!empty($_POST['page_contactblock_block'])) {
470                 $contact_id = Contact::getIdForURL($contact_url);
471                 if ($contact_id) {
472                         Contact::block($contact_id);
473                         notice(L10n::t('The contact has been blocked from the node'));
474                 } else {
475                         notice(L10n::t("Could not find any contact entry for this URL \x28%s\x29", $contact_url));
476                 }
477         }
478         if (!empty($_POST['page_contactblock_unblock'])) {
479                 foreach ($contacts as $uid) {
480                         Contact::unblock($uid);
481                 }
482                 notice(L10n::tt("%s contact unblocked", "%s contacts unblocked", count($contacts)));
483         }
484         $a->internalRedirect('admin/contactblock');
485         return; // NOTREACHED
486 }
487
488 /**
489  * @brief Admin panel for server-wide contact block
490  *
491  * @param App $a
492  * @return string
493  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
494  */
495 function admin_page_contactblock(App $a)
496 {
497         $condition = ['uid' => 0, 'blocked' => true];
498
499         $total = DBA::count('contact', $condition);
500
501         $pager = new Pager($a->query_string, 30);
502
503         $statement = DBA::select('contact', [], $condition, ['limit' => [$pager->getStart(), $pager->getItemsPerPage()]]);
504
505         $contacts = DBA::toArray($statement);
506
507         $t = Renderer::getMarkupTemplate('admin/contactblock.tpl');
508         $o = Renderer::replaceMacros($t, [
509                 // strings //
510                 '$title'       => L10n::t('Administration'),
511                 '$page'        => L10n::t('Remote Contact Blocklist'),
512                 '$description' => L10n::t('This page allows you to prevent any message from a remote contact to reach your node.'),
513                 '$submit'      => L10n::t('Block Remote Contact'),
514                 '$select_all'  => L10n::t('select all'),
515                 '$select_none' => L10n::t('select none'),
516                 '$block'       => L10n::t('Block'),
517                 '$unblock'     => L10n::t('Unblock'),
518                 '$no_data'     => L10n::t('No remote contact is blocked from this node.'),
519
520                 '$h_contacts'  => L10n::t('Blocked Remote Contacts'),
521                 '$h_newblock'  => L10n::t('Block New Remote Contact'),
522                 '$th_contacts' => [L10n::t('Photo'), L10n::t('Name'), L10n::t('Address'), L10n::t('Profile URL')],
523
524                 '$form_security_token' => BaseModule::getFormSecurityToken("admin_contactblock"),
525
526                 // values //
527                 '$baseurl'    => System::baseUrl(true),
528
529                 '$contacts'   => $contacts,
530                 '$total_contacts' => L10n::tt('%s total blocked contact', '%s total blocked contacts', $total),
531                 '$paginate'   => $pager->renderFull($total),
532                 '$contacturl' => ['contact_url', L10n::t("Profile URL"), '', L10n::t("URL of the remote contact to block.")],
533         ]);
534         return $o;
535 }
536
537 /**
538  * @brief Subpage where the admin can delete an item from their node given the GUID
539  *
540  * This subpage of the admin panel offers the nodes admin to delete an item from
541  * the node, given the GUID or the display URL such as http://example.com/display/123456.
542  * The item will then be marked as deleted in the database and processed accordingly.
543  *
544  * @param App $a
545  * @return string
546  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
547  */
548 function admin_page_deleteitem(App $a)
549 {
550         $t = Renderer::getMarkupTemplate('admin/deleteitem.tpl');
551
552         return Renderer::replaceMacros($t, [
553                 '$title' => L10n::t('Administration'),
554                 '$page' => L10n::t('Delete Item'),
555                 '$submit' => L10n::t('Delete this Item'),
556                 '$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.'),
557                 '$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.'),
558                 '$deleteitemguid' => ['deleteitemguid', L10n::t("GUID"), '', L10n::t("The GUID of the item you want to delete."), 'required', 'autofocus'],
559                 '$baseurl' => System::baseUrl(),
560                 '$form_security_token' => BaseModule::getFormSecurityToken("admin_deleteitem")
561         ]);
562 }
563
564 /**
565  * @brief Process send data from Admin Delete Item Page
566  *
567  * The GUID passed through the form should be only the GUID. But we also parse
568  * URLs like the full /display URL to make the process more easy for the admin.
569  *
570  * @param App $a
571  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
572  */
573 function admin_page_deleteitem_post(App $a)
574 {
575         if (empty($_POST['page_deleteitem_submit'])) {
576                 return;
577         }
578
579         BaseModule::checkFormSecurityTokenRedirectOnError('/admin/deleteitem/', 'admin_deleteitem');
580
581         if (!empty($_POST['page_deleteitem_submit'])) {
582                 $guid = trim(Strings::escapeTags($_POST['deleteitemguid']));
583                 // The GUID should not include a "/", so if there is one, we got an URL
584                 // and the last part of it is most likely the GUID.
585                 if (strpos($guid, '/')) {
586                         $guid = substr($guid, strrpos($guid, '/') + 1);
587                 }
588                 // Now that we have the GUID, drop those items, which will also delete the
589                 // associated threads.
590                 Item::delete(['guid' => $guid]);
591         }
592
593         info(L10n::t('Item marked for deletion.') . EOL);
594         $a->internalRedirect('admin/deleteitem');
595         return; // NOTREACHED
596 }
597
598 /**
599  * @brief Subpage with some stats about "the federation" network
600  *
601  * This function generates the "Federation Statistics" subpage for the admin
602  * panel. The page lists some numbers to the part of "The Federation" known to
603  * the node. This data includes the different connected networks (e.g.
604  * Diaspora, Hubzilla, GNU Social) and the used versions in the different
605  * networks.
606  *
607  * The returned string contains the HTML code of the subpage for display.
608  *
609  * @param App $a
610  * @return string
611  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
612  */
613 function admin_page_federation(App $a)
614 {
615         // get counts on active friendica, diaspora, redmatrix, hubzilla, gnu
616         // social and statusnet nodes this node is knowing
617         //
618         // We are looking for the following platforms in the DB, "Red" should find
619         // all variants of that platform ID string as the q() function is stripping
620         // off one % two of them are needed in the query
621         // Add more platforms if you like, when one returns 0 known nodes it is not
622         // displayed on the stats page.
623         $platforms = ['Friendi%%a', 'Diaspora', '%%red%%', 'Hubzilla', 'BlaBlaNet', 'GNU Social', 'StatusNet', 'Mastodon', 'Pleroma', 'socialhome', 'ganggo'];
624         $colors = [
625                 'Friendi%%a' => '#ffc018', // orange from the logo
626                 'Diaspora'   => '#a1a1a1', // logo is black and white, makes a gray
627                 '%%red%%'    => '#c50001', // fire red from the logo
628                 'Hubzilla'   => '#43488a', // blue from the logo
629                 'BlaBlaNet'  => '#3B5998', // blue from the navbar at blablanet-dot-com
630                 'GNU Social' => '#a22430', // dark red from the logo
631                 'StatusNet'  => '#789240', // the green from the logo (red and blue have already others
632                 'Mastodon'   => '#1a9df9', // blue from the Mastodon logo
633                 'Pleroma'    => '#E46F0F', // Orange from the text that is used on Pleroma instances
634                 'socialhome' => '#52056b' , // lilac from the Django Image used at the Socialhome homepage
635                 'ganggo'     => '#69d7e2' // from the favicon
636         ];
637         $counts = [];
638         $total = 0;
639         $users = 0;
640
641         foreach ($platforms as $p) {
642                 // get a total count for the platform, the name and version of the
643                 // highest version and the protocol tpe
644                 $c = q('SELECT COUNT(*) AS `total`, SUM(`registered-users`) AS `users`, ANY_VALUE(`platform`) AS `platform`,
645                                 ANY_VALUE(`network`) AS `network`, MAX(`version`) AS `version` FROM `gserver`
646                                 WHERE `platform` LIKE "%s" AND `last_contact` >= `last_failure`
647                                 ORDER BY `version` ASC;', $p);
648                 $total += $c[0]['total'];
649                 $users += $c[0]['users'];
650
651                 // what versions for that platform do we know at all?
652                 // again only the active nodes
653                 $v = q('SELECT COUNT(*) AS `total`, `version` FROM `gserver`
654                                 WHERE `last_contact` >= `last_failure` AND `platform` LIKE "%s"
655                                 GROUP BY `version`
656                                 ORDER BY `version`;', $p);
657
658                 //
659                 // clean up version numbers
660                 //
661                 // some platforms do not provide version information, add a unkown there
662                 // to the version string for the displayed list.
663                 foreach ($v as $key => $value) {
664                         if ($v[$key]['version'] == '') {
665                                 $v[$key] = ['total' => $v[$key]['total'], 'version' => L10n::t('unknown')];
666                         }
667                 }
668
669                 // Reformat and compact version numbers
670                 if ($p == 'Pleroma') {
671                         $compacted = [];
672
673                         foreach ($v as $key => $value) {
674                                 $version = $v[$key]['version'];
675                                 $parts = explode(' ', trim($version));
676                                 do {
677                                         $part = array_pop($parts);
678                                 } while (!empty($parts) && ((strlen($part) >= 40) || (strlen($part) <= 3)));
679                                 // only take the x.x.x part of the version, not the "release" after the dash
680                                 $part = array_shift(explode('-', $part));
681
682                                 if (!empty($part)) {
683                                         if (empty($compacted[$part])) {
684                                                 $compacted[$part] = $v[$key]['total'];
685                                         } else {
686                                                 $compacted[$part] += $v[$key]['total'];
687                                         }
688                                 }
689                         }
690
691                         $v = [];
692                         foreach ($compacted as $version => $pl_total) {
693                                 $v[] = ['version' => $version, 'total' => $pl_total];
694                         }
695                 }
696
697                 // in the DB the Diaspora versions have the format x.x.x.x-xx the last
698                 // part (-xx) should be removed to clean up the versions from the "head
699                 // commit" information and combined into a single entry for x.x.x.x
700                 if ($p == 'Diaspora') {
701                         $newV = [];
702                         $newVv = [];
703                         foreach ($v as $vv) {
704                                 $newVC = $vv['total'];
705                                 $newVV = $vv['version'];
706                                 $posDash = strpos($newVV, '-');
707                                 if ($posDash) {
708                                         $newVV = substr($newVV, 0, $posDash);
709                                 }
710                                 if (isset($newV[$newVV])) {
711                                         $newV[$newVV] += $newVC;
712                                 } else {
713                                         $newV[$newVV] = $newVC;
714                                 }
715                         }
716                         foreach ($newV as $key => $value) {
717                                 array_push($newVv, ['total' => $value, 'version' => $key]);
718                         }
719                         $v = $newVv;
720                 }
721
722                 // early friendica versions have the format x.x.xxxx where xxxx is the
723                 // DB version stamp; those should be operated out and versions be
724                 // conbined
725                 if ($p == 'Friendi%%a') {
726                         $newV = [];
727                         $newVv = [];
728                         foreach ($v as $vv) {
729                                 $newVC = $vv['total'];
730                                 $newVV = $vv['version'];
731                                 $lastDot = strrpos($newVV, '.');
732                                 $len = strlen($newVV) - 1;
733                                 if (($lastDot == $len - 4) && (!strrpos($newVV, '-rc') == $len - 3)) {
734                                         $newVV = substr($newVV, 0, $lastDot);
735                                 }
736                                 if (isset($newV[$newVV])) {
737                                         $newV[$newVV] += $newVC;
738                                 } else {
739                                         $newV[$newVV] = $newVC;
740                                 }
741                         }
742                         foreach ($newV as $key => $value) {
743                                 array_push($newVv, ['total' => $value, 'version' => $key]);
744                         }
745                         $v = $newVv;
746                 }
747
748                 // Assure that the versions are sorted correctly
749                 $v2 = [];
750                 $versions = [];
751                 foreach ($v as $vv) {
752                         $version = trim(strip_tags($vv["version"]));
753                         $v2[$version] = $vv;
754                         $versions[] = $version;
755                 }
756
757                 usort($versions, 'version_compare');
758
759                 $v = [];
760                 foreach ($versions as $version) {
761                         $v[] = $v2[$version];
762                 }
763
764                 // the 3rd array item is needed for the JavaScript graphs as JS does
765                 // not like some characters in the names of variables...
766                 $counts[$p] = [$c[0], $v, str_replace([' ', '%'], '', $p), $colors[$p]];
767         }
768
769         // some helpful text
770         $intro = L10n::t('This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of.');
771         $hint = L10n::t('The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here.');
772
773         // load the template, replace the macros and return the page content
774         $t = Renderer::getMarkupTemplate('admin/federation.tpl');
775         return Renderer::replaceMacros($t, [
776                 '$title' => L10n::t('Administration'),
777                 '$page' => L10n::t('Federation Statistics'),
778                 '$intro' => $intro,
779                 '$hint' => $hint,
780                 '$autoactive' => Config::get('system', 'poco_completion'),
781                 '$counts' => $counts,
782                 '$version' => FRIENDICA_VERSION,
783                 '$legendtext' => L10n::t('Currently this node is aware of %d nodes with %d registered users from the following platforms:', $total, $users),
784                 '$baseurl' => System::baseUrl(),
785         ]);
786 }
787
788 /**
789  * @brief Admin Inspect Worker Queue Page
790  *
791  * Generates a page for the admin to have a look into the current queue of
792  * worker jobs. Shown are the parameters for the job and its priority.
793  *
794  * The returned string holds the content of the page.
795  *
796  * @param App $a
797  * @param     $deferred
798  * @return string
799  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
800  */
801 function admin_page_workerqueue(App $a, $deferred)
802 {
803         // get jobs from the workerqueue table
804         if ($deferred) {
805                 $condition = ["NOT `done` AND `next_try` > ?", DateTimeFormat::utcNow()];
806                 $sub_title = L10n::t('Inspect Deferred Worker Queue');
807                 $info = L10n::t("This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time.");
808         } else {
809                 $condition = ["NOT `done` AND `next_try` < ?", DateTimeFormat::utcNow()];
810                 $sub_title = L10n::t('Inspect Worker Queue');
811                 $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.');
812         }
813
814         $entries = DBA::select('workerqueue', ['id', 'parameter', 'created', 'priority'], $condition, ['order' => ['priority']]);
815
816         $r = [];
817         while ($entry = DBA::fetch($entries)) {
818                 // fix GH-5469. ref: src/Core/Worker.php:217
819                 $entry['parameter'] = Arrays::recursiveImplode(json_decode($entry['parameter'], true), ': ');
820                 $entry['created'] = DateTimeFormat::local($entry['created']);
821                 $r[] = $entry;
822         }
823         DBA::close($entries);
824
825         $t = Renderer::getMarkupTemplate('admin/workerqueue.tpl');
826         return Renderer::replaceMacros($t, [
827                 '$title' => L10n::t('Administration'),
828                 '$page' => $sub_title,
829                 '$count' => count($r),
830                 '$id_header' => L10n::t('ID'),
831                 '$param_header' => L10n::t('Job Parameters'),
832                 '$created_header' => L10n::t('Created'),
833                 '$prio_header' => L10n::t('Priority'),
834                 '$info' => $info,
835                 '$entries' => $r,
836         ]);
837 }
838
839 /**
840  * @brief Admin Summary Page
841  *
842  * The summary page is the "start page" of the admin panel. It gives the admin
843  * a first overview of the open adminastrative tasks.
844  *
845  * The returned string contains the HTML content of the generated page.
846  *
847  * @param App $a
848  * @return string
849  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
850  */
851 function admin_page_summary(App $a)
852 {
853         // are there MyISAM tables in the DB? If so, trigger a warning message
854         $r = q("SELECT `engine` FROM `information_schema`.`tables` WHERE `engine` = 'myisam' AND `table_schema` = '%s' LIMIT 1", DBA::escape(DBA::databaseName()));
855         $showwarning = false;
856         $warningtext = [];
857         if (DBA::isResult($r)) {
858                 $showwarning = true;
859                 $warningtext[] = L10n::t('Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href="%s">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php bin/console.php dbstructure toinnodb</tt> of your Friendica installation for an automatic conversion.<br />', 'https://dev.mysql.com/doc/refman/5.7/en/converting-tables-to-innodb.html');
860         }
861         // Check if github.com/friendica/master/VERSION is higher then
862         // the local version of Friendica. Check is opt-in, source may be master or devel branch
863         if (Config::get('system', 'check_new_version_url', 'none') != 'none') {
864                 $gitversion = Config::get('system', 'git_friendica_version');
865                 if (version_compare(FRIENDICA_VERSION, $gitversion) < 0) {
866                         $warningtext[] = L10n::t('There is a new version of Friendica available for download. Your current version is %1$s, upstream version is %2$s', FRIENDICA_VERSION, $gitversion);
867                         $showwarning = true;
868                 }
869         }
870
871         if (Config::get('system', 'dbupdate', DBStructure::UPDATE_NOT_CHECKED) == DBStructure::UPDATE_NOT_CHECKED) {
872                 DBStructure::update($a->getBasePath(), false, true);
873         }
874         if (Config::get('system', 'dbupdate') == DBStructure::UPDATE_FAILED) {
875                 $showwarning = true;
876                 $warningtext[] = L10n::t('The database update failed. Please run "php bin/console.php dbstructure update" from the command line and have a look at the errors that might appear.');
877         }
878         if (Config::get('system', 'update') == Update::FAILED) {
879                 $showwarning = true;
880                 $warningtext[] = L10n::t('The last update failed. Please run "php bin/console.php dbstructure update" from the command line and have a look at the errors that might appear. (Some of the errors are possibly inside the logfile.)');
881         }
882
883         $last_worker_call = Config::get('system', 'last_worker_execution', false);
884         if (!$last_worker_call) {
885                 $showwarning = true;
886                 $warningtext[] = L10n::t('The worker was never executed. Please check your database structure!');
887         } elseif ((strtotime(DateTimeFormat::utcNow()) - strtotime($last_worker_call)) > 60 * 60) {
888                 $showwarning = true;
889                 $warningtext[] = L10n::t('The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings.', $last_worker_call);
890         }
891
892         // Legacy config file warning
893         if (file_exists('.htconfig.php')) {
894                 $showwarning = true;
895                 $warningtext[] = L10n::t('Friendica\'s configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from <code>.htconfig.php</code>. See <a href="%s">the Config help page</a> for help with the transition.', $a->getBaseURL() . '/help/Config');
896         }
897         if (file_exists('config/local.ini.php')) {
898                 $showwarning = true;
899                 $warningtext[] = L10n::t('Friendica\'s configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from <code>config/local.ini.php</code>. See <a href="%s">the Config help page</a> for help with the transition.', $a->getBaseURL() . '/help/Config');
900         }
901
902         // Check server vitality
903         if (!admin_page_server_vital()) {
904                 $showwarning = true;
905                 $well_known = $a->getBaseURL() . '/.well-known/host-meta';
906                 $warningtext[] = L10n::t('<a href="%s">%s</a> is not reachable on your system. This is a severe configuration issue that prevents server to server communication. See <a href="%s">the installation page</a> for help.',
907                         $well_known, $well_known, $a->getBaseURL() . '/help/Install');
908         }
909
910         $r = q("SELECT `page-flags`, COUNT(`uid`) AS `count` FROM `user` GROUP BY `page-flags`");
911         $accounts = [
912                 [L10n::t('Normal Account'), 0],
913                 [L10n::t('Automatic Follower Account'), 0],
914                 [L10n::t('Public Forum Account'), 0],
915                 [L10n::t('Automatic Friend Account'), 0],
916                 [L10n::t('Blog Account'), 0],
917                 [L10n::t('Private Forum Account'), 0]
918         ];
919
920         $users = 0;
921         foreach ($r as $u) {
922                 $accounts[$u['page-flags']][1] = $u['count'];
923                 $users += $u['count'];
924         }
925
926         Logger::log('accounts: ' . print_r($accounts, true), Logger::DATA);
927
928         $pending = Register::getPendingCount();
929
930         $deferred = DBA::count('workerqueue', ["`executed` <= ? AND NOT `done` AND `next_try` > ?",
931                 DBA::NULL_DATETIME, DateTimeFormat::utcNow()]);
932
933         $workerqueue = DBA::count('workerqueue', ["`executed` <= ? AND NOT `done` AND `next_try` < ?",
934                 DBA::NULL_DATETIME, DateTimeFormat::utcNow()]);
935
936         // We can do better, but this is a quick queue status
937
938         $queues = ['label' => L10n::t('Message queues'), 'deferred' => $deferred, 'workerq' => $workerqueue];
939
940
941         $r = q("SHOW variables LIKE 'max_allowed_packet'");
942         $max_allowed_packet = (($r) ? $r[0]['Value'] : 0);
943
944         $server_settings = ['label' => L10n::t('Server Settings'),
945                 'php' => ['upload_max_filesize' => ini_get('upload_max_filesize'),
946                         'post_max_size' => ini_get('post_max_size'),
947                         'memory_limit' => ini_get('memory_limit')],
948                 'mysql' => ['max_allowed_packet' => $max_allowed_packet]];
949
950         $t = Renderer::getMarkupTemplate('admin/summary.tpl');
951         return Renderer::replaceMacros($t, [
952                 '$title' => L10n::t('Administration'),
953                 '$page' => L10n::t('Summary'),
954                 '$queues' => $queues,
955                 '$users' => [L10n::t('Registered users'), $users],
956                 '$accounts' => $accounts,
957                 '$pending' => [L10n::t('Pending registrations'), $pending],
958                 '$version' => [L10n::t('Version'), FRIENDICA_VERSION],
959                 '$baseurl' => System::baseUrl(),
960                 '$platform' => FRIENDICA_PLATFORM,
961                 '$codename' => FRIENDICA_CODENAME,
962                 '$build' => Config::get('system', 'build'),
963                 '$addons' => [L10n::t('Active addons'), Addon::getEnabledList()],
964                 '$serversettings' => $server_settings,
965                 '$showwarning' => $showwarning,
966                 '$warningtext' => $warningtext
967         ]);
968 }
969
970 /**
971  * @brief Process send data from Admin Site Page
972  *
973  * @param App $a
974  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
975  */
976 function admin_page_site_post(App $a)
977 {
978         BaseModule::checkFormSecurityTokenRedirectOnError('/admin/site', 'admin_site');
979
980         if (!empty($_POST['republish_directory'])) {
981                 Worker::add(PRIORITY_LOW, 'Directory');
982                 return;
983         }
984
985         if (empty($_POST['page_site'])) {
986                 return;
987         }
988
989         // relocate
990         if (!empty($_POST['relocate']) && !empty($_POST['relocate_url']) && $_POST['relocate_url'] != "") {
991                 $new_url = $_POST['relocate_url'];
992                 $new_url = rtrim($new_url, "/");
993
994                 $parsed = @parse_url($new_url);
995                 if (!is_array($parsed) || empty($parsed['host']) || empty($parsed['scheme'])) {
996                         notice(L10n::t("Can not parse base url. Must have at least <scheme>://<domain>"));
997                         $a->internalRedirect('admin/site');
998                 }
999
1000                 /* steps:
1001                  * replace all "baseurl" to "new_url" in config, profile, term, items and contacts
1002                  * send relocate for every local user
1003                  * */
1004
1005                 $old_url = $a->getBaseURL(true);
1006
1007                 // Generate host names for relocation the addresses in the format user@address.tld
1008                 $new_host = str_replace("http://", "@", Strings::normaliseLink($new_url));
1009                 $old_host = str_replace("http://", "@", Strings::normaliseLink($old_url));
1010
1011                 function update_table(App $a, $table_name, $fields, $old_url, $new_url)
1012                 {
1013                         $dbold = DBA::escape($old_url);
1014                         $dbnew = DBA::escape($new_url);
1015
1016                         $upd = [];
1017                         foreach ($fields as $f) {
1018                                 $upd[] = "`$f` = REPLACE(`$f`, '$dbold', '$dbnew')";
1019                         }
1020
1021                         $upds = implode(", ", $upd);
1022
1023                         $r = q("UPDATE %s SET %s;", $table_name, $upds);
1024
1025                         if (!DBA::isResult($r)) {
1026                                 notice("Failed updating '$table_name': " . DBA::errorMessage());
1027                                 $a->internalRedirect('admin/site');
1028                         }
1029                 }
1030
1031                 // update tables
1032                 // update profile links in the format "http://server.tld"
1033                 update_table($a, "profile", ['photo', 'thumb'], $old_url, $new_url);
1034                 update_table($a, "term", ['url'], $old_url, $new_url);
1035                 update_table($a, "contact", ['photo', 'thumb', 'micro', 'url', 'nurl', 'alias', 'request', 'notify', 'poll', 'confirm', 'poco', 'avatar'], $old_url, $new_url);
1036                 update_table($a, "gcontact", ['url', 'nurl', 'photo', 'server_url', 'notify', 'alias'], $old_url, $new_url);
1037                 update_table($a, "item", ['owner-link', 'author-link', 'body', 'plink', 'tag'], $old_url, $new_url);
1038
1039                 // update profile addresses in the format "user@server.tld"
1040                 update_table($a, "contact", ['addr'], $old_host, $new_host);
1041                 update_table($a, "gcontact", ['connect', 'addr'], $old_host, $new_host);
1042
1043                 // update config
1044                 $configFileSaver = new \Friendica\Util\Config\ConfigFileSaver($a->getBasePath());
1045                 $configFileSaver->addConfigValue('config', 'hostname', parse_url($new_url, PHP_URL_HOST));
1046                 $configFileSaver->saveToConfigFile();
1047                 Config::set('system', 'url', $new_url);
1048                 $a->setBaseURL($new_url);
1049
1050                 // send relocate
1051                 $users = q("SELECT `uid` FROM `user` WHERE `account_removed` = 0 AND `account_expired` = 0");
1052
1053                 foreach ($users as $user) {
1054                         Worker::add(PRIORITY_HIGH, 'Notifier', 'relocate', $user['uid']);
1055                 }
1056
1057                 info("Relocation started. Could take a while to complete.");
1058
1059                 $a->internalRedirect('admin/site');
1060         }
1061         // end relocate
1062
1063         $sitename         = (!empty($_POST['sitename'])         ? Strings::escapeTags(trim($_POST['sitename']))      : '');
1064         $sender_email     = (!empty($_POST['sender_email'])     ? Strings::escapeTags(trim($_POST['sender_email']))  : '');
1065         $banner           = (!empty($_POST['banner'])           ? trim($_POST['banner'])                             : false);
1066         $shortcut_icon    = (!empty($_POST['shortcut_icon'])    ? Strings::escapeTags(trim($_POST['shortcut_icon'])) : '');
1067         $touch_icon       = (!empty($_POST['touch_icon'])       ? Strings::escapeTags(trim($_POST['touch_icon']))    : '');
1068         $additional_info  = (!empty($_POST['additional_info'])  ? trim($_POST['additional_info'])                    : '');
1069         $language         = (!empty($_POST['language'])         ? Strings::escapeTags(trim($_POST['language']))      : '');
1070         $theme            = (!empty($_POST['theme'])            ? Strings::escapeTags(trim($_POST['theme']))         : '');
1071         $theme_mobile     = (!empty($_POST['theme_mobile'])     ? Strings::escapeTags(trim($_POST['theme_mobile']))  : '');
1072         $maximagesize     = (!empty($_POST['maximagesize'])     ? intval(trim($_POST['maximagesize']))               : 0);
1073         $maximagelength   = (!empty($_POST['maximagelength'])   ? intval(trim($_POST['maximagelength']))             : MAX_IMAGE_LENGTH);
1074         $jpegimagequality = (!empty($_POST['jpegimagequality']) ? intval(trim($_POST['jpegimagequality']))           : JPEG_QUALITY);
1075
1076         $register_policy        = (!empty($_POST['register_policy'])         ? intval(trim($_POST['register_policy']))             : 0);
1077         $daily_registrations    = (!empty($_POST['max_daily_registrations']) ? intval(trim($_POST['max_daily_registrations']))     : 0);
1078         $abandon_days           = (!empty($_POST['abandon_days'])            ? intval(trim($_POST['abandon_days']))                : 0);
1079
1080         $register_text          = (!empty($_POST['register_text'])           ? strip_tags(trim($_POST['register_text']))           : '');
1081
1082         $allowed_sites          = (!empty($_POST['allowed_sites'])           ? Strings::escapeTags(trim($_POST['allowed_sites']))  : '');
1083         $allowed_email          = (!empty($_POST['allowed_email'])           ? Strings::escapeTags(trim($_POST['allowed_email']))  : '');
1084         $forbidden_nicknames    = (!empty($_POST['forbidden_nicknames'])     ? strtolower(Strings::escapeTags(trim($_POST['forbidden_nicknames']))) : '');
1085         $no_oembed_rich_content = !empty($_POST['no_oembed_rich_content']);
1086         $allowed_oembed         = (!empty($_POST['allowed_oembed'])          ? Strings::escapeTags(trim($_POST['allowed_oembed'])) : '');
1087         $block_public           = !empty($_POST['block_public']);
1088         $force_publish          = !empty($_POST['publish_all']);
1089         $global_directory       = (!empty($_POST['directory'])               ? Strings::escapeTags(trim($_POST['directory']))      : '');
1090         $newuser_private        = !empty($_POST['newuser_private']);
1091         $enotify_no_content     = !empty($_POST['enotify_no_content']);
1092         $private_addons         = !empty($_POST['private_addons']);
1093         $disable_embedded       = !empty($_POST['disable_embedded']);
1094         $allow_users_remote_self = !empty($_POST['allow_users_remote_self']);
1095         $explicit_content       = !empty($_POST['explicit_content']);
1096
1097         $no_multi_reg           = !empty($_POST['no_multi_reg']);
1098         $no_openid              = !empty($_POST['no_openid']);
1099         $no_regfullname         = !empty($_POST['no_regfullname']);
1100         $community_page_style   = (!empty($_POST['community_page_style']) ? intval(trim($_POST['community_page_style'])) : 0);
1101         $max_author_posts_community_page = (!empty($_POST['max_author_posts_community_page']) ? intval(trim($_POST['max_author_posts_community_page'])) : 0);
1102
1103         $verifyssl              = !empty($_POST['verifyssl']);
1104         $proxyuser              = (!empty($_POST['proxyuser'])              ? Strings::escapeTags(trim($_POST['proxyuser'])) : '');
1105         $proxy                  = (!empty($_POST['proxy'])                  ? Strings::escapeTags(trim($_POST['proxy']))     : '');
1106         $timeout                = (!empty($_POST['timeout'])                ? intval(trim($_POST['timeout']))                : 60);
1107         $maxloadavg             = (!empty($_POST['maxloadavg'])             ? intval(trim($_POST['maxloadavg']))             : 20);
1108         $maxloadavg_frontend    = (!empty($_POST['maxloadavg_frontend'])    ? intval(trim($_POST['maxloadavg_frontend']))    : 50);
1109         $min_memory             = (!empty($_POST['min_memory'])             ? intval(trim($_POST['min_memory']))             : 0);
1110         $optimize_max_tablesize = (!empty($_POST['optimize_max_tablesize']) ? intval(trim($_POST['optimize_max_tablesize'])) : 100);
1111         $optimize_fragmentation = (!empty($_POST['optimize_fragmentation']) ? intval(trim($_POST['optimize_fragmentation'])) : 30);
1112         $poco_completion        = (!empty($_POST['poco_completion'])        ? intval(trim($_POST['poco_completion']))        : false);
1113         $poco_requery_days      = (!empty($_POST['poco_requery_days'])      ? intval(trim($_POST['poco_requery_days']))      : 7);
1114         $poco_discovery         = (!empty($_POST['poco_discovery'])         ? intval(trim($_POST['poco_discovery']))         : PortableContact::DISABLED);
1115         $poco_discovery_since   = (!empty($_POST['poco_discovery_since'])   ? intval(trim($_POST['poco_discovery_since']))   : 30);
1116         $poco_local_search      = !empty($_POST['poco_local_search']);
1117         $nodeinfo               = !empty($_POST['nodeinfo']);
1118         $dfrn_only              = !empty($_POST['dfrn_only']);
1119         $ostatus_disabled       = !empty($_POST['ostatus_disabled']);
1120         $ostatus_full_threads   = !empty($_POST['ostatus_full_threads']);
1121         $diaspora_enabled       = !empty($_POST['diaspora_enabled']);
1122         $ssl_policy             = (!empty($_POST['ssl_policy'])             ? intval($_POST['ssl_policy'])                    : 0);
1123         $force_ssl              = !empty($_POST['force_ssl']);
1124         $hide_help              = !empty($_POST['hide_help']);
1125         $dbclean                = !empty($_POST['dbclean']);
1126         $dbclean_expire_days    = (!empty($_POST['dbclean_expire_days'])    ? intval($_POST['dbclean_expire_days'])           : 0);
1127         $dbclean_unclaimed      = (!empty($_POST['dbclean_unclaimed'])      ? intval($_POST['dbclean_unclaimed'])             : 0);
1128         $dbclean_expire_conv    = (!empty($_POST['dbclean_expire_conv'])    ? intval($_POST['dbclean_expire_conv'])           : 0);
1129         $suppress_tags          = !empty($_POST['suppress_tags']);
1130         $itemcache              = (!empty($_POST['itemcache'])              ? Strings::escapeTags(trim($_POST['itemcache']))  : '');
1131         $itemcache_duration     = (!empty($_POST['itemcache_duration'])     ? intval($_POST['itemcache_duration'])            : 0);
1132         $max_comments           = (!empty($_POST['max_comments'])           ? intval($_POST['max_comments'])                  : 0);
1133         $temppath               = (!empty($_POST['temppath'])               ? Strings::escapeTags(trim($_POST['temppath']))   : '');
1134         $singleuser             = (!empty($_POST['singleuser'])             ? Strings::escapeTags(trim($_POST['singleuser'])) : '');
1135         $proxy_disabled         = !empty($_POST['proxy_disabled']);
1136         $only_tag_search        = !empty($_POST['only_tag_search']);
1137         $rino                   = (!empty($_POST['rino'])                   ? intval($_POST['rino'])                          : 0);
1138         $check_new_version_url  = (!empty($_POST['check_new_version_url'])  ? Strings::escapeTags(trim($_POST['check_new_version_url'])) : 'none');
1139
1140         $worker_queues    = (!empty($_POST['worker_queues'])                ? intval($_POST['worker_queues'])                 : 10);
1141         $worker_dont_fork = !empty($_POST['worker_dont_fork']);
1142         $worker_fastlane  = !empty($_POST['worker_fastlane']);
1143         $worker_frontend  = !empty($_POST['worker_frontend']);
1144
1145         $relay_directly    = !empty($_POST['relay_directly']);
1146         $relay_server      = (!empty($_POST['relay_server'])      ? Strings::escapeTags(trim($_POST['relay_server']))       : '');
1147         $relay_subscribe   = !empty($_POST['relay_subscribe']);
1148         $relay_scope       = (!empty($_POST['relay_scope'])       ? Strings::escapeTags(trim($_POST['relay_scope']))        : '');
1149         $relay_server_tags = (!empty($_POST['relay_server_tags']) ? Strings::escapeTags(trim($_POST['relay_server_tags']))  : '');
1150         $relay_user_tags   = !empty($_POST['relay_user_tags']);
1151         $active_panel      = (!empty($_POST['active_panel'])      ? "#" . Strings::escapeTags(trim($_POST['active_panel'])) : '');
1152
1153         /**
1154          * @var $storagebackend \Friendica\Model\Storage\IStorage
1155          */
1156         $storagebackend    = Strings::escapeTags(trim(defaults($_POST, 'storagebackend', '')));
1157         if (!StorageManager::setBackend($storagebackend)) {
1158                 info(L10n::t('Invalid storage backend setting value.'));
1159         }
1160
1161         // save storage backend form
1162         if (!is_null($storagebackend) && $storagebackend != "") {
1163                 $storage_opts = $storagebackend::getOptions();
1164                 $storage_form_prefix=preg_replace('|[^a-zA-Z0-9]|' ,'', $storagebackend);
1165                 $storage_opts_data = [];
1166                 foreach($storage_opts as $name => $info) {
1167                         $fieldname = $storage_form_prefix . '_' . $name;
1168                         switch ($info[0]) { // type
1169                                 case 'checkbox':
1170                                 case 'yesno':
1171                                         $value = !empty($_POST[$fieldname]);
1172                                         break;
1173                                 default:
1174                                         $value = defaults($_POST, $fieldname, '');
1175                         }
1176                         $storage_opts_data[$name] = $value;
1177                 }
1178                 unset($name);
1179                 unset($info);
1180         
1181                 $storage_form_errors = $storagebackend::saveOptions($storage_opts_data);
1182                 if (count($storage_form_errors)) {
1183                         foreach($storage_form_errors as $name => $err) {
1184                                 notice('Storage backend, ' . $storage_opts[$name][1] . ': ' . $err);
1185                         }
1186                         $a->internalRedirect('admin/site' . $active_panel);
1187                 }
1188         }
1189
1190         
1191
1192         // Has the directory url changed? If yes, then resubmit the existing profiles there
1193         if ($global_directory != Config::get('system', 'directory') && ($global_directory != '')) {
1194                 Config::set('system', 'directory', $global_directory);
1195                 Worker::add(PRIORITY_LOW, 'Directory');
1196         }
1197
1198         if ($a->getURLPath() != "") {
1199                 $diaspora_enabled = false;
1200         }
1201         if ($ssl_policy != intval(Config::get('system', 'ssl_policy'))) {
1202                 if ($ssl_policy == SSL_POLICY_FULL) {
1203                         q("UPDATE `contact` SET
1204                                 `url`     = REPLACE(`url`    , 'http:' , 'https:'),
1205                                 `photo`   = REPLACE(`photo`  , 'http:' , 'https:'),
1206                                 `thumb`   = REPLACE(`thumb`  , 'http:' , 'https:'),
1207                                 `micro`   = REPLACE(`micro`  , 'http:' , 'https:'),
1208                                 `request` = REPLACE(`request`, 'http:' , 'https:'),
1209                                 `notify`  = REPLACE(`notify` , 'http:' , 'https:'),
1210                                 `poll`    = REPLACE(`poll`   , 'http:' , 'https:'),
1211                                 `confirm` = REPLACE(`confirm`, 'http:' , 'https:'),
1212                                 `poco`    = REPLACE(`poco`   , 'http:' , 'https:')
1213                                 WHERE `self` = 1"
1214                         );
1215                         q("UPDATE `profile` SET
1216                                 `photo`   = REPLACE(`photo`  , 'http:' , 'https:'),
1217                                 `thumb`   = REPLACE(`thumb`  , 'http:' , 'https:')
1218                                 WHERE 1 "
1219                         );
1220                 } elseif ($ssl_policy == SSL_POLICY_SELFSIGN) {
1221                         q("UPDATE `contact` SET
1222                                 `url`     = REPLACE(`url`    , 'https:' , 'http:'),
1223                                 `photo`   = REPLACE(`photo`  , 'https:' , 'http:'),
1224                                 `thumb`   = REPLACE(`thumb`  , 'https:' , 'http:'),
1225                                 `micro`   = REPLACE(`micro`  , 'https:' , 'http:'),
1226                                 `request` = REPLACE(`request`, 'https:' , 'http:'),
1227                                 `notify`  = REPLACE(`notify` , 'https:' , 'http:'),
1228                                 `poll`    = REPLACE(`poll`   , 'https:' , 'http:'),
1229                                 `confirm` = REPLACE(`confirm`, 'https:' , 'http:'),
1230                                 `poco`    = REPLACE(`poco`   , 'https:' , 'http:')
1231                                 WHERE `self` = 1"
1232                         );
1233                         q("UPDATE `profile` SET
1234                                 `photo`   = REPLACE(`photo`  , 'https:' , 'http:'),
1235                                 `thumb`   = REPLACE(`thumb`  , 'https:' , 'http:')
1236                                 WHERE 1 "
1237                         );
1238                 }
1239         }
1240         Config::set('system', 'ssl_policy'            , $ssl_policy);
1241         Config::set('system', 'maxloadavg'            , $maxloadavg);
1242         Config::set('system', 'maxloadavg_frontend'   , $maxloadavg_frontend);
1243         Config::set('system', 'min_memory'            , $min_memory);
1244         Config::set('system', 'optimize_max_tablesize', $optimize_max_tablesize);
1245         Config::set('system', 'optimize_fragmentation', $optimize_fragmentation);
1246         Config::set('system', 'poco_completion'       , $poco_completion);
1247         Config::set('system', 'poco_requery_days'     , $poco_requery_days);
1248         Config::set('system', 'poco_discovery'        , $poco_discovery);
1249         Config::set('system', 'poco_discovery_since'  , $poco_discovery_since);
1250         Config::set('system', 'poco_local_search'     , $poco_local_search);
1251         Config::set('system', 'nodeinfo'              , $nodeinfo);
1252         Config::set('config', 'sitename'              , $sitename);
1253         Config::set('config', 'sender_email'          , $sender_email);
1254         Config::set('system', 'suppress_tags'         , $suppress_tags);
1255         Config::set('system', 'shortcut_icon'         , $shortcut_icon);
1256         Config::set('system', 'touch_icon'            , $touch_icon);
1257
1258         if ($banner == "") {
1259                 Config::delete('system', 'banner');
1260         } else {
1261                 Config::set('system', 'banner', $banner);
1262         }
1263
1264         if (empty($additional_info)) {
1265                 Config::delete('config', 'info');
1266         } else {
1267                 Config::set('config', 'info', $additional_info);
1268         }
1269         Config::set('system', 'language', $language);
1270         Config::set('system', 'theme', $theme);
1271         Theme::install($theme);
1272
1273         if ($theme_mobile == '---') {
1274                 Config::delete('system', 'mobile-theme');
1275         } else {
1276                 Config::set('system', 'mobile-theme', $theme_mobile);
1277         }
1278         if ($singleuser == '---') {
1279                 Config::delete('system', 'singleuser');
1280         } else {
1281                 Config::set('system', 'singleuser', $singleuser);
1282         }
1283         Config::set('system', 'maximagesize'           , $maximagesize);
1284         Config::set('system', 'max_image_length'       , $maximagelength);
1285         Config::set('system', 'jpeg_quality'           , $jpegimagequality);
1286
1287         Config::set('config', 'register_policy'        , $register_policy);
1288         Config::set('system', 'max_daily_registrations', $daily_registrations);
1289         Config::set('system', 'account_abandon_days'   , $abandon_days);
1290         Config::set('config', 'register_text'          , $register_text);
1291         Config::set('system', 'allowed_sites'          , $allowed_sites);
1292         Config::set('system', 'allowed_email'          , $allowed_email);
1293         Config::set('system', 'forbidden_nicknames'    , $forbidden_nicknames);
1294         Config::set('system', 'no_oembed_rich_content' , $no_oembed_rich_content);
1295         Config::set('system', 'allowed_oembed'         , $allowed_oembed);
1296         Config::set('system', 'block_public'           , $block_public);
1297         Config::set('system', 'publish_all'            , $force_publish);
1298         Config::set('system', 'newuser_private'        , $newuser_private);
1299         Config::set('system', 'enotify_no_content'     , $enotify_no_content);
1300         Config::set('system', 'disable_embedded'       , $disable_embedded);
1301         Config::set('system', 'allow_users_remote_self', $allow_users_remote_self);
1302         Config::set('system', 'explicit_content'       , $explicit_content);
1303         Config::set('system', 'check_new_version_url'  , $check_new_version_url);
1304
1305         Config::set('system', 'block_extended_register', $no_multi_reg);
1306         Config::set('system', 'no_openid'              , $no_openid);
1307         Config::set('system', 'no_regfullname'         , $no_regfullname);
1308         Config::set('system', 'community_page_style'   , $community_page_style);
1309         Config::set('system', 'max_author_posts_community_page', $max_author_posts_community_page);
1310         Config::set('system', 'verifyssl'              , $verifyssl);
1311         Config::set('system', 'proxyuser'              , $proxyuser);
1312         Config::set('system', 'proxy'                  , $proxy);
1313         Config::set('system', 'curl_timeout'           , $timeout);
1314         Config::set('system', 'dfrn_only'              , $dfrn_only);
1315         Config::set('system', 'ostatus_disabled'       , $ostatus_disabled);
1316         Config::set('system', 'ostatus_full_threads'   , $ostatus_full_threads);
1317         Config::set('system', 'diaspora_enabled'       , $diaspora_enabled);
1318
1319         Config::set('config', 'private_addons'         , $private_addons);
1320
1321         Config::set('system', 'force_ssl'              , $force_ssl);
1322         Config::set('system', 'hide_help'              , $hide_help);
1323
1324         Config::set('system', 'dbclean'                , $dbclean);
1325         Config::set('system', 'dbclean-expire-days'    , $dbclean_expire_days);
1326         Config::set('system', 'dbclean_expire_conversation', $dbclean_expire_conv);
1327
1328         if ($dbclean_unclaimed == 0) {
1329                 $dbclean_unclaimed = $dbclean_expire_days;
1330         }
1331
1332         Config::set('system', 'dbclean-expire-unclaimed', $dbclean_unclaimed);
1333
1334         if ($itemcache != '') {
1335                 $itemcache = BasePath::getRealPath($itemcache);
1336         }
1337
1338         Config::set('system', 'itemcache', $itemcache);
1339         Config::set('system', 'itemcache_duration', $itemcache_duration);
1340         Config::set('system', 'max_comments', $max_comments);
1341
1342         if ($temppath != '') {
1343                 $temppath = BasePath::getRealPath($temppath);
1344         }
1345
1346         Config::set('system', 'temppath', $temppath);
1347
1348         Config::set('system', 'proxy_disabled'   , $proxy_disabled);
1349         Config::set('system', 'only_tag_search'  , $only_tag_search);
1350
1351         Config::set('system', 'worker_queues'    , $worker_queues);
1352         Config::set('system', 'worker_dont_fork' , $worker_dont_fork);
1353         Config::set('system', 'worker_fastlane'  , $worker_fastlane);
1354         Config::set('system', 'frontend_worker'  , $worker_frontend);
1355
1356         Config::set('system', 'relay_directly'   , $relay_directly);
1357         Config::set('system', 'relay_server'     , $relay_server);
1358         Config::set('system', 'relay_subscribe'  , $relay_subscribe);
1359         Config::set('system', 'relay_scope'      , $relay_scope);
1360         Config::set('system', 'relay_server_tags', $relay_server_tags);
1361         Config::set('system', 'relay_user_tags'  , $relay_user_tags);
1362
1363         Config::set('system', 'rino_encrypt'     , $rino);
1364
1365         info(L10n::t('Site settings updated.') . EOL);
1366
1367         $a->internalRedirect('admin/site' . $active_panel);
1368         return; // NOTREACHED
1369 }
1370
1371 /**
1372  * @brief Generate Admin Site subpage
1373  *
1374  * This function generates the main configuration page of the admin panel.
1375  *
1376  * @param  App $a
1377  * @return string
1378  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1379  */
1380 function admin_page_site(App $a)
1381 {
1382         /* Installed langs */
1383         $lang_choices = L10n::getAvailableLanguages();
1384
1385         if (strlen(Config::get('system', 'directory_submit_url')) &&
1386                 !strlen(Config::get('system', 'directory'))) {
1387                 Config::set('system', 'directory', dirname(Config::get('system', 'directory_submit_url')));
1388                 Config::delete('system', 'directory_submit_url');
1389         }
1390
1391         /* Installed themes */
1392         $theme_choices = [];
1393         $theme_choices_mobile = [];
1394         $theme_choices_mobile["---"] = L10n::t("No special theme for mobile devices");
1395         $files = glob('view/theme/*');
1396         if (is_array($files)) {
1397                 $allowed_theme_list = Config::get('system', 'allowed_themes');
1398
1399                 foreach ($files as $file) {
1400                         if (intval(file_exists($file . '/unsupported'))) {
1401                                 continue;
1402                         }
1403
1404                         $f = basename($file);
1405
1406                         // Only show allowed themes here
1407                         if (($allowed_theme_list != '') && !strstr($allowed_theme_list, $f)) {
1408                                 continue;
1409                         }
1410
1411                         $theme_name = ((file_exists($file . '/experimental')) ? sprintf("%s - \x28Experimental\x29", $f) : $f);
1412
1413                         if (file_exists($file . '/mobile')) {
1414                                 $theme_choices_mobile[$f] = $theme_name;
1415                         } else {
1416                                 $theme_choices[$f] = $theme_name;
1417                         }
1418                 }
1419         }
1420
1421         /* Community page style */
1422         $community_page_style_choices = [
1423                 CP_NO_INTERNAL_COMMUNITY => L10n::t("No community page for local users"),
1424                 CP_NO_COMMUNITY_PAGE => L10n::t("No community page"),
1425                 CP_USERS_ON_SERVER => L10n::t("Public postings from users of this site"),
1426                 CP_GLOBAL_COMMUNITY => L10n::t("Public postings from the federated network"),
1427                 CP_USERS_AND_GLOBAL => L10n::t("Public postings from local users and the federated network")
1428         ];
1429
1430         $poco_discovery_choices = [
1431                 PortableContact::DISABLED => L10n::t("Disabled"),
1432                 PortableContact::USERS => L10n::t("Users"),
1433                 PortableContact::USERS_GCONTACTS => L10n::t("Users, Global Contacts"),
1434                 PortableContact::USERS_GCONTACTS_FALLBACK => L10n::t("Users, Global Contacts/fallback"),
1435         ];
1436
1437         $poco_discovery_since_choices = [
1438                 "30" => L10n::t("One month"),
1439                 "91" => L10n::t("Three months"),
1440                 "182" => L10n::t("Half a year"),
1441                 "365" => L10n::t("One year"),
1442         ];
1443
1444         /* get user names to make the install a personal install of X */
1445         $user_names = [];
1446         $user_names['---'] = L10n::t('Multi user instance');
1447         $users = q("SELECT `username`, `nickname` FROM `user`");
1448
1449         foreach ($users as $user) {
1450                 $user_names[$user['nickname']] = $user['username'];
1451         }
1452
1453         /* Banner */
1454         $banner = Config::get('system', 'banner');
1455
1456         if ($banner == false) {
1457                 $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>';
1458         }
1459
1460         $additional_info = Config::get('config', 'info');
1461
1462         // Automatically create temporary paths
1463         get_temppath();
1464         get_itemcachepath();
1465
1466         //echo "<pre>"; var_dump($lang_choices); die("</pre>");
1467
1468         /* Register policy */
1469         $register_choices = [
1470                 Module\Register::CLOSED => L10n::t("Closed"),
1471                 Module\Register::APPROVE => L10n::t("Requires approval"),
1472                 Module\Register::OPEN => L10n::t("Open")
1473         ];
1474
1475         $ssl_choices = [
1476                 SSL_POLICY_NONE => L10n::t("No SSL policy, links will track page SSL state"),
1477                 SSL_POLICY_FULL => L10n::t("Force all links to use SSL"),
1478                 SSL_POLICY_SELFSIGN => L10n::t("Self-signed certificate, use SSL for local links only \x28discouraged\x29")
1479         ];
1480
1481         $check_git_version_choices = [
1482                 "none" => L10n::t("Don't check"),
1483                 "master" => L10n::t("check the stable version"),
1484                 "develop" => L10n::t("check the development version")
1485         ];
1486
1487         $diaspora_able = ($a->getURLPath() == "");
1488
1489         $optimize_max_tablesize = Config::get('system', 'optimize_max_tablesize', -1);
1490
1491         if ($optimize_max_tablesize <= 0) {
1492                 $optimize_max_tablesize = -1;
1493         }
1494
1495         /* storage backend */
1496         $storage_backends = StorageManager::listBackends();
1497         /**
1498          * @var $storage_current_backend \Friendica\Model\Storage\IStorage
1499          */
1500         $storage_current_backend = StorageManager::getBackend();
1501
1502         $storage_backends_choices = [
1503                 '' => L10n::t('Database (legacy)')
1504         ];
1505         foreach($storage_backends as $name=>$class) {
1506                 $storage_backends_choices[$class] = $name;
1507         }
1508         unset($storage_backends);
1509
1510         // build storage config form,
1511         $storage_form_prefix=preg_replace('|[^a-zA-Z0-9]|' ,'', $storage_current_backend);
1512         
1513         $storage_form = [];
1514         if (!is_null($storage_current_backend) && $storage_current_backend != "") {
1515                 foreach ($storage_current_backend::getOptions() as $name => $info) {
1516                         $type = $info[0];
1517                         $info[0] = $storage_form_prefix . '_' . $name;
1518                         $info['type'] = $type;
1519                         $info['field'] = 'field_' . $type . '.tpl';
1520                         $storage_form[$name] = $info;
1521                 }
1522         }
1523
1524
1525         $t = Renderer::getMarkupTemplate('admin/site.tpl');
1526         return Renderer::replaceMacros($t, [
1527                 '$title'             => L10n::t('Administration'),
1528                 '$page'              => L10n::t('Site'),
1529                 '$submit'            => L10n::t('Save Settings'),
1530                 '$republish'         => L10n::t('Republish users to directory'),
1531                 '$registration'      => L10n::t('Registration'),
1532                 '$upload'            => L10n::t('File upload'),
1533                 '$corporate'         => L10n::t('Policies'),
1534                 '$advanced'          => L10n::t('Advanced'),
1535                 '$portable_contacts' => L10n::t('Auto Discovered Contact Directory'),
1536                 '$performance'       => L10n::t('Performance'),
1537                 '$worker_title'      => L10n::t('Worker'),
1538                 '$relay_title'       => L10n::t('Message Relay'),
1539                 '$relocate'          => L10n::t('Relocate Instance'),
1540                 '$relocate_warning'  => L10n::t('Warning! Advanced function. Could make this server unreachable.'),
1541                 '$baseurl'           => System::baseUrl(true),
1542
1543                 // name, label, value, help string, extra data...
1544                 '$sitename'         => ['sitename', L10n::t("Site name"), Config::get('config', 'sitename'), ''],
1545                 '$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"],
1546                 '$banner'           => ['banner', L10n::t("Banner/Logo"), $banner, ""],
1547                 '$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.")],
1548                 '$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.")],
1549                 '$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())],
1550                 '$language'         => ['language', L10n::t("System language"), Config::get('system', 'language'), "", $lang_choices],
1551                 '$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],
1552                 '$theme_mobile'     => ['theme_mobile', L10n::t("Mobile system theme"), Config::get('system', 'mobile-theme', '---'), L10n::t("Theme for mobile devices"), $theme_choices_mobile],
1553                 '$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],
1554                 '$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.")],
1555                 '$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.")],
1556                 '$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],
1557
1558                 '$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],
1559                 '$storageform'      => $storage_form,
1560                 '$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.")],
1561                 '$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.")],
1562                 '$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.")],
1563
1564                 '$register_policy'        => ['register_policy', L10n::t("Register policy"), Config::get('config', 'register_policy'), "", $register_choices],
1565                 '$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.")],
1566                 '$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.")],
1567                 '$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.')],
1568                 '$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.')],
1569                 '$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")],
1570                 '$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")],
1571                 '$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.")],
1572                 '$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.")],
1573                 '$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.")],
1574                 '$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>'],
1575                 '$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.")],
1576                 '$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.")],
1577                 '$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.")],
1578                 '$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.")],
1579                 '$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.")],
1580                 '$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.')],
1581                 '$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.')],
1582                 '$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.")],
1583                 '$no_openid'              => ['no_openid', L10n::t("Disable OpenID"), Config::get('system', 'no_openid'), L10n::t("Disable OpenID support for registration and logins.")],
1584                 '$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.")],
1585                 '$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],
1586                 '$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")],
1587                 '$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.")],
1588                 '$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.")],
1589                 '$ostatus_not_able'       => L10n::t("OStatus support can only be enabled if threading is enabled."),
1590                 '$diaspora_able'          => $diaspora_able,
1591                 '$diaspora_not_able'      => L10n::t("Diaspora support can't be enabled because Friendica was installed into a sub directory."),
1592                 '$diaspora_enabled'       => ['diaspora_enabled', L10n::t("Enable Diaspora support"), Config::get('system', 'diaspora_enabled', $diaspora_able), L10n::t("Provide built-in Diaspora network compatibility.")],
1593                 '$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.")],
1594                 '$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.")],
1595                 '$proxyuser'              => ['proxyuser', L10n::t("Proxy user"), Config::get('system', 'proxyuser'), ""],
1596                 '$proxy'                  => ['proxy', L10n::t("Proxy URL"), Config::get('system', 'proxy'), ""],
1597                 '$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.")],
1598                 '$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)],
1599                 '$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.")],
1600                 '$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.")],
1601                 '$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.")],
1602                 '$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%.")],
1603
1604                 '$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.")],
1605                 '$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.")],
1606                 '$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],
1607                 '$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],
1608                 '$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.")],
1609
1610                 '$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.")],
1611
1612                 '$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],
1613                 '$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.")],
1614                 '$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.")],
1615                 '$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.")],
1616                 '$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.")],
1617                 '$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.")],
1618                 '$itemcache'              => ['itemcache', L10n::t("Path to item cache"), Config::get('system', 'itemcache'), L10n::t("The item caches buffers generated bbcode and external images.")],
1619                 '$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.")],
1620                 '$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.")],
1621                 '$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.")],
1622                 '$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.")],
1623                 '$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.")],
1624
1625                 '$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.")],
1626
1627                 '$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")]],
1628
1629                 '$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)],
1630                 '$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.")],
1631                 '$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.")],
1632                 '$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())],
1633
1634                 '$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.")],
1635                 '$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")],
1636                 '$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")],
1637                 '$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')]],
1638                 '$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.")],
1639                 '$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'.")],
1640
1641                 '$form_security_token'    => BaseModule::getFormSecurityToken("admin_site"),
1642                 '$relocate_button'        => L10n::t('Start Relocation'),
1643         ]);
1644 }
1645
1646 /**
1647  * @brief Generates admin panel subpage for DB syncronization
1648  *
1649  * This page checks if the database of friendica is in sync with the specs.
1650  * Should this not be the case, it attemps to sync the structure and notifies
1651  * the admin if the automatic process was failing.
1652  *
1653  * The returned string holds the HTML code of the page.
1654  *
1655  * @param App $a
1656  * @return string
1657  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1658  */
1659 function admin_page_dbsync(App $a)
1660 {
1661         $o = '';
1662
1663         if ($a->argc > 3 && intval($a->argv[3]) && $a->argv[2] === 'mark') {
1664                 Config::set('database', 'update_' . intval($a->argv[3]), 'success');
1665                 $curr = Config::get('system', 'build');
1666                 if (intval($curr) == intval($a->argv[3])) {
1667                         Config::set('system', 'build', intval($curr) + 1);
1668                 }
1669                 info(L10n::t('Update has been marked successful') . EOL);
1670                 $a->internalRedirect('admin/dbsync');
1671         }
1672
1673         if (($a->argc > 2) && (intval($a->argv[2]) || ($a->argv[2] === 'check'))) {
1674                 $retval = DBStructure::update($a->getBasePath(), false, true);
1675                 if ($retval === '') {
1676                         $o .= L10n::t("Database structure update %s was successfully applied.", DB_UPDATE_VERSION) . "<br />";
1677                         Config::set('database', 'last_successful_update', DB_UPDATE_VERSION);
1678                         Config::set('database', 'last_successful_update_time', time());
1679                 } else {
1680                         $o .= L10n::t("Executing of database structure update %s failed with error: %s", DB_UPDATE_VERSION, $retval) . "<br />";
1681                 }
1682                 if ($a->argv[2] === 'check') {
1683                         return $o;
1684                 }
1685         }
1686
1687         if ($a->argc > 2 && intval($a->argv[2])) {
1688                 require_once 'update.php';
1689
1690                 $func = 'update_' . intval($a->argv[2]);
1691
1692                 if (function_exists($func)) {
1693                         $retval = $func();
1694
1695                         if ($retval === Update::FAILED) {
1696                                 $o .= L10n::t("Executing %s failed with error: %s", $func, $retval);
1697                         } elseif ($retval === Update::SUCCESS) {
1698                                 $o .= L10n::t('Update %s was successfully applied.', $func);
1699                                 Config::set('database', $func, 'success');
1700                         } else {
1701                                 $o .= L10n::t('Update %s did not return a status. Unknown if it succeeded.', $func);
1702                         }
1703                 } else {
1704                         $o .= L10n::t('There was no additional update function %s that needed to be called.', $func) . "<br />";
1705                         Config::set('database', $func, 'success');
1706                 }
1707
1708                 return $o;
1709         }
1710
1711         $failed = [];
1712         $r = q("SELECT `k`, `v` FROM `config` WHERE `cat` = 'database' ");
1713
1714         if (DBA::isResult($r)) {
1715                 foreach ($r as $rr) {
1716                         $upd = intval(substr($rr['k'], 7));
1717                         if ($upd < 1139 || $rr['v'] === 'success') {
1718                                 continue;
1719                         }
1720                         $failed[] = $upd;
1721                 }
1722         }
1723
1724         if (!count($failed)) {
1725                 $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('structure_check.tpl'), [
1726                         '$base' => System::baseUrl(true),
1727                         '$banner' => L10n::t('No failed updates.'),
1728                         '$check' => L10n::t('Check database structure'),
1729                 ]);
1730         } else {
1731                 $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('failed_updates.tpl'), [
1732                         '$base' => System::baseUrl(true),
1733                         '$banner' => L10n::t('Failed Updates'),
1734                         '$desc' => L10n::t('This does not include updates prior to 1139, which did not return a status.'),
1735                         '$mark' => L10n::t("Mark success \x28if update was manually applied\x29"),
1736                         '$apply' => L10n::t('Attempt to execute this update step automatically'),
1737                         '$failed' => $failed
1738                 ]);
1739         }
1740
1741         return $o;
1742 }
1743
1744 /**
1745  * @brief Process data send by Users admin page
1746  *
1747  * @param App $a
1748  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1749  */
1750 function admin_page_users_post(App $a)
1751 {
1752         $pending     = defaults($_POST, 'pending'          , []);
1753         $users       = defaults($_POST, 'user'             , []);
1754         $nu_name     = defaults($_POST, 'new_user_name'    , '');
1755         $nu_nickname = defaults($_POST, 'new_user_nickname', '');
1756         $nu_email    = defaults($_POST, 'new_user_email'   , '');
1757         $nu_language = Config::get('system', 'language');
1758
1759         BaseModule::checkFormSecurityTokenRedirectOnError('/admin/users', 'admin_users');
1760
1761         if (!($nu_name === "") && !($nu_email === "") && !($nu_nickname === "")) {
1762                 try {
1763                         $result = User::create([
1764                                 'username' => $nu_name,
1765                                 'email' => $nu_email,
1766                                 'nickname' => $nu_nickname,
1767                                 'verified' => 1,
1768                                 'language' => $nu_language
1769                         ]);
1770                 } catch (Exception $ex) {
1771                         notice($ex->getMessage());
1772                         return;
1773                 }
1774
1775                 $user = $result['user'];
1776                 $preamble = Strings::deindent(L10n::t('
1777                         Dear %1$s,
1778                                 the administrator of %2$s has set up an account for you.'));
1779                 $body = Strings::deindent(L10n::t('
1780                         The login details are as follows:
1781
1782                         Site Location:  %1$s
1783                         Login Name:             %2$s
1784                         Password:               %3$s
1785
1786                         You may change your password from your account "Settings" page after logging
1787                         in.
1788
1789                         Please take a few moments to review the other account settings on that page.
1790
1791                         You may also wish to add some basic information to your default profile
1792                         ' . "\x28" . 'on the "Profiles" page' . "\x29" . ' so that other people can easily find you.
1793
1794                         We recommend setting your full name, adding a profile photo,
1795                         adding some profile "keywords" ' . "\x28" . 'very useful in making new friends' . "\x29" . ' - and
1796                         perhaps what country you live in; if you do not wish to be more specific
1797                         than that.
1798
1799                         We fully respect your right to privacy, and none of these items are necessary.
1800                         If you are new and do not know anybody here, they may help
1801                         you to make some new and interesting friends.
1802
1803                         If you ever want to delete your account, you can do so at %1$s/removeme
1804
1805                         Thank you and welcome to %4$s.'));
1806
1807                 $preamble = sprintf($preamble, $user['username'], Config::get('config', 'sitename'));
1808                 $body = sprintf($body, System::baseUrl(), $user['nickname'], $result['password'], Config::get('config', 'sitename'));
1809
1810                 notification([
1811                         'type'     => SYSTEM_EMAIL,
1812                         'language' => $user['language'],
1813                         'to_name'  => $user['username'],
1814                         'to_email' => $user['email'],
1815                         'uid'      => $user['uid'],
1816                         'subject'  => L10n::t('Registration details for %s', Config::get('config', 'sitename')),
1817                         'preamble' => $preamble,
1818                         'body'     => $body]);
1819         }
1820
1821         if (!empty($_POST['page_users_block'])) {
1822                 foreach ($users as $uid) {
1823                         q("UPDATE `user` SET `blocked` = 1-`blocked` WHERE `uid` = %s", intval($uid)
1824                         );
1825                 }
1826                 notice(L10n::tt("%s user blocked/unblocked", "%s users blocked/unblocked", count($users)));
1827         }
1828         if (!empty($_POST['page_users_delete'])) {
1829                 foreach ($users as $uid) {
1830                         if (local_user() != $uid) {
1831                                 User::remove($uid);
1832                         } else {
1833                                 notice(L10n::t('You can\'t remove yourself'));
1834                         }
1835                 }
1836                 notice(L10n::tt("%s user deleted", "%s users deleted", count($users)));
1837         }
1838
1839         if (!empty($_POST['page_users_approve'])) {
1840                 require_once "mod/regmod.php";
1841                 foreach ($pending as $hash) {
1842                         user_allow($hash);
1843                 }
1844         }
1845         if (!empty($_POST['page_users_deny'])) {
1846                 require_once "mod/regmod.php";
1847                 foreach ($pending as $hash) {
1848                         user_deny($hash);
1849                 }
1850         }
1851         $a->internalRedirect('admin/users');
1852         return; // NOTREACHED
1853 }
1854
1855 /**
1856  * @brief Admin panel subpage for User management
1857  *
1858  * This function generates the admin panel page for user management of the
1859  * node. It offers functionality to add/block/delete users and offers some
1860  * statistics about the userbase.
1861  *
1862  * The returned string holds the HTML code of the page.
1863  *
1864  * @param App $a
1865  * @return string
1866  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
1867  */
1868 function admin_page_users(App $a)
1869 {
1870         if ($a->argc > 2) {
1871                 $uid = $a->argv[3];
1872                 $user = DBA::selectFirst('user', ['username', 'blocked'], ['uid' => $uid]);
1873                 if (!DBA::isResult($user)) {
1874                         notice('User not found' . EOL);
1875                         $a->internalRedirect('admin/users');
1876                         return ''; // NOTREACHED
1877                 }
1878                 switch ($a->argv[2]) {
1879                         case "delete":
1880                                 if (local_user() != $uid) {
1881                                         BaseModule::checkFormSecurityTokenRedirectOnError('/admin/users', 'admin_users', 't');
1882                                         // delete user
1883                                         User::remove($uid);
1884
1885                                         notice(L10n::t("User '%s' deleted", $user['username']));
1886                                 } else {
1887                                         notice(L10n::t('You can\'t remove yourself'));
1888                                 }
1889                                 break;
1890                         case "block":
1891                                 BaseModule::checkFormSecurityTokenRedirectOnError('/admin/users', 'admin_users', 't');
1892                                 q("UPDATE `user` SET `blocked` = %d WHERE `uid` = %s",
1893                                         intval(1 - $user['blocked']),
1894                                         intval($uid)
1895                                 );
1896                                 notice(sprintf(($user['blocked'] ? L10n::t("User '%s' unblocked") : L10n::t("User '%s' blocked")), $user['username']) . EOL);
1897                                 break;
1898                 }
1899                 $a->internalRedirect('admin/users');
1900                 return ''; // NOTREACHED
1901         }
1902
1903         /* get pending */
1904         $pending = Register::getPending();
1905
1906         $pager = new Pager($a->query_string, 100);
1907
1908         /* ordering */
1909         $valid_orders = [
1910                 'contact.name',
1911                 'user.email',
1912                 'user.register_date',
1913                 'user.login_date',
1914                 'lastitem_date',
1915                 'user.page-flags'
1916         ];
1917
1918         $order = "contact.name";
1919         $order_direction = "+";
1920         if (!empty($_GET['o'])) {
1921                 $new_order = $_GET['o'];
1922                 if ($new_order[0] === "-") {
1923                         $order_direction = "-";
1924                         $new_order = substr($new_order, 1);
1925                 }
1926
1927                 if (in_array($new_order, $valid_orders)) {
1928                         $order = $new_order;
1929                 }
1930         }
1931         $sql_order = "`" . str_replace('.', '`.`', $order) . "`";
1932         $sql_order_direction = ($order_direction === "+") ? "ASC" : "DESC";
1933
1934         $users = q("SELECT `user`.*, `contact`.`name`, `contact`.`url`, `contact`.`micro`, `user`.`account_expired`, `contact`.`last-item` AS `lastitem_date`
1935                                 FROM `user`
1936                                 INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid` AND `contact`.`self`
1937                                 WHERE `user`.`verified`
1938                                 ORDER BY $sql_order $sql_order_direction LIMIT %d, %d", $pager->getStart(), $pager->getItemsPerPage()
1939         );
1940
1941         $adminlist = explode(",", str_replace(" ", "", Config::get('config', 'admin_email')));
1942         $_setup_users = function ($e) use ($adminlist) {
1943                 $page_types = [
1944                         User::PAGE_FLAGS_NORMAL    => L10n::t('Normal Account Page'),
1945                         User::PAGE_FLAGS_SOAPBOX   => L10n::t('Soapbox Page'),
1946                         User::PAGE_FLAGS_COMMUNITY => L10n::t('Public Forum'),
1947                         User::PAGE_FLAGS_FREELOVE  => L10n::t('Automatic Friend Page'),
1948                         User::PAGE_FLAGS_PRVGROUP  => L10n::t('Private Forum')
1949                 ];
1950                 $account_types = [
1951                         User::ACCOUNT_TYPE_PERSON       => L10n::t('Personal Page'),
1952                         User::ACCOUNT_TYPE_ORGANISATION => L10n::t('Organisation Page'),
1953                         User::ACCOUNT_TYPE_NEWS         => L10n::t('News Page'),
1954                         User::ACCOUNT_TYPE_COMMUNITY    => L10n::t('Community Forum'),
1955                         User::ACCOUNT_TYPE_RELAY        => L10n::t('Relay'),
1956                 ];
1957
1958                 $e['page_flags_raw'] = $e['page-flags'];
1959                 $e['page-flags'] = $page_types[$e['page-flags']];
1960
1961                 $e['account_type_raw'] = ($e['page_flags_raw'] == 0) ? $e['account-type'] : -1;
1962                 $e['account-type'] = ($e['page_flags_raw'] == 0) ? $account_types[$e['account-type']] : "";
1963
1964                 $e['register_date'] = Temporal::getRelativeDate($e['register_date']);
1965                 $e['login_date'] = Temporal::getRelativeDate($e['login_date']);
1966                 $e['lastitem_date'] = Temporal::getRelativeDate($e['lastitem_date']);
1967                 $e['is_admin'] = in_array($e['email'], $adminlist);
1968                 $e['is_deletable'] = (intval($e['uid']) != local_user());
1969                 $e['deleted'] = ($e['account_removed'] ? Temporal::getRelativeDate($e['account_expires_on']) : False);
1970
1971                 return $e;
1972         };
1973
1974         $users = array_map($_setup_users, $users);
1975
1976
1977         // Get rid of dashes in key names, Smarty3 can't handle them
1978         // and extracting deleted users
1979
1980         $tmp_users = [];
1981         $deleted = [];
1982
1983         while (count($users)) {
1984                 $new_user = [];
1985                 foreach (array_pop($users) as $k => $v) {
1986                         $k = str_replace('-', '_', $k);
1987                         $new_user[$k] = $v;
1988                 }
1989                 if ($new_user['deleted']) {
1990                         array_push($deleted, $new_user);
1991                 } else {
1992                         array_push($tmp_users, $new_user);
1993                 }
1994         }
1995         //Reversing the two array, and moving $tmp_users to $users
1996         array_reverse($deleted);
1997         while (count($tmp_users)) {
1998                 array_push($users, array_pop($tmp_users));
1999         }
2000
2001         $th_users = array_map(null, [L10n::t('Name'), L10n::t('Email'), L10n::t('Register date'), L10n::t('Last login'), L10n::t('Last item'), L10n::t('Type')], $valid_orders);
2002
2003         $t = Renderer::getMarkupTemplate('admin/users.tpl');
2004         $o = Renderer::replaceMacros($t, [
2005                 // strings //
2006                 '$title' => L10n::t('Administration'),
2007                 '$page' => L10n::t('Users'),
2008                 '$submit' => L10n::t('Add User'),
2009                 '$select_all' => L10n::t('select all'),
2010                 '$h_pending' => L10n::t('User registrations waiting for confirm'),
2011                 '$h_deleted' => L10n::t('User waiting for permanent deletion'),
2012                 '$th_pending' => [L10n::t('Request date'), L10n::t('Name'), L10n::t('Email')],
2013                 '$no_pending' => L10n::t('No registrations.'),
2014                 '$pendingnotetext' => L10n::t('Note from the user'),
2015                 '$approve' => L10n::t('Approve'),
2016                 '$deny' => L10n::t('Deny'),
2017                 '$delete' => L10n::t('Delete'),
2018                 '$block' => L10n::t('Block'),
2019                 '$blocked' => L10n::t('User blocked'),
2020                 '$unblock' => L10n::t('Unblock'),
2021                 '$siteadmin' => L10n::t('Site admin'),
2022                 '$accountexpired' => L10n::t('Account expired'),
2023
2024                 '$h_users' => L10n::t('Users'),
2025                 '$h_newuser' => L10n::t('New User'),
2026                 '$th_deleted' => [L10n::t('Name'), L10n::t('Email'), L10n::t('Register date'), L10n::t('Last login'), L10n::t('Last item'), L10n::t('Permanent deletion')],
2027                 '$th_users' => $th_users,
2028                 '$order_users' => $order,
2029                 '$order_direction_users' => $order_direction,
2030
2031                 '$confirm_delete_multi' => L10n::t('Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'),
2032                 '$confirm_delete' => L10n::t('The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'),
2033
2034                 '$form_security_token' => BaseModule::getFormSecurityToken("admin_users"),
2035
2036                 // values //
2037                 '$baseurl' => $a->getBaseURL(true),
2038
2039                 '$pending' => $pending,
2040                 'deleted' => $deleted,
2041                 '$users' => $users,
2042                 '$newusername' => ['new_user_name', L10n::t("Name"), '', L10n::t("Name of the new user.")],
2043                 '$newusernickname' => ['new_user_nickname', L10n::t("Nickname"), '', L10n::t("Nickname of the new user.")],
2044                 '$newuseremail' => ['new_user_email', L10n::t("Email"), '', L10n::t("Email address of the new user."), '', '', 'email'],
2045         ]);
2046         $o .= $pager->renderFull(DBA::count('user'));
2047         return $o;
2048 }
2049
2050 /**
2051  * @brief Addons admin page
2052  *
2053  * This function generates the admin panel page for managing addons on the
2054  * friendica node. If an addon name is given a single page showing the details
2055  * for this addon is generated. If no name is given, a list of available
2056  * addons is shown.
2057  *
2058  * The template used for displaying the list of addons and the details of the
2059  * addon are the same as used for the templates.
2060  *
2061  * The returned string returned hulds the HTML code of the page.
2062  *
2063  * @param App   $a
2064  * @param array $addons_admin A list of admin addon names
2065  * @return string
2066  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2067  */
2068 function admin_page_addons(App $a, array $addons_admin)
2069 {
2070         /*
2071          * Single addon
2072          */
2073         if ($a->argc == 3) {
2074                 $addon = $a->argv[2];
2075                 if (!is_file("addon/$addon/$addon.php")) {
2076                         notice(L10n::t("Item not found."));
2077                         return '';
2078                 }
2079
2080                 if (defaults($_GET, 'a', '') == "t") {
2081                         BaseModule::checkFormSecurityTokenRedirectOnError('/admin/addons', 'admin_themes', 't');
2082
2083                         // Toggle addon status
2084                         if (Addon::isEnabled($addon)) {
2085                                 Addon::uninstall($addon);
2086                                 info(L10n::t("Addon %s disabled.", $addon));
2087                         } else {
2088                                 Addon::install($addon);
2089                                 info(L10n::t("Addon %s enabled.", $addon));
2090                         }
2091
2092                         Addon::saveEnabledList();
2093                         $a->internalRedirect('admin/addons');
2094                         return ''; // NOTREACHED
2095                 }
2096
2097                 // display addon details
2098                 if (Addon::isEnabled($addon)) {
2099                         $status = "on";
2100                         $action = L10n::t("Disable");
2101                 } else {
2102                         $status = "off";
2103                         $action = L10n::t("Enable");
2104                 }
2105
2106                 $readme = null;
2107                 if (is_file("addon/$addon/README.md")) {
2108                         $readme = Markdown::convert(file_get_contents("addon/$addon/README.md"), false);
2109                 } elseif (is_file("addon/$addon/README")) {
2110                         $readme = "<pre>" . file_get_contents("addon/$addon/README") . "</pre>";
2111                 }
2112
2113                 $admin_form = "";
2114                 if (in_array($addon, $addons_admin)) {
2115                         require_once "addon/$addon/$addon.php";
2116                         $func = $addon . '_addon_admin';
2117                         $func($a, $admin_form);
2118                 }
2119
2120                 $t = Renderer::getMarkupTemplate('admin/addon_details.tpl');
2121
2122                 return Renderer::replaceMacros($t, [
2123                         '$title' => L10n::t('Administration'),
2124                         '$page' => L10n::t('Addons'),
2125                         '$toggle' => L10n::t('Toggle'),
2126                         '$settings' => L10n::t('Settings'),
2127                         '$baseurl' => $a->getBaseURL(true),
2128
2129                         '$addon' => $addon,
2130                         '$status' => $status,
2131                         '$action' => $action,
2132                         '$info' => Addon::getInfo($addon),
2133                         '$str_author' => L10n::t('Author: '),
2134                         '$str_maintainer' => L10n::t('Maintainer: '),
2135
2136                         '$admin_form' => $admin_form,
2137                         '$function' => 'addons',
2138                         '$screenshot' => '',
2139                         '$readme' => $readme,
2140
2141                         '$form_security_token' => BaseModule::getFormSecurityToken("admin_themes"),
2142                 ]);
2143         }
2144
2145         /*
2146          * List addons
2147          */
2148         if (!empty($_GET['a']) && $_GET['a'] == "r") {
2149                 BaseModule::checkFormSecurityTokenRedirectOnError($a->getBaseURL() . '/admin/addons', 'admin_themes', 't');
2150                 Addon::reload();
2151                 info("Addons reloaded");
2152                 $a->internalRedirect('admin/addons');
2153         }
2154
2155         $addons = [];
2156         $files = glob("addon/*/");
2157         if (is_array($files)) {
2158                 foreach ($files as $file) {
2159                         if (is_dir($file)) {
2160                                 list($tmp, $id) = array_map("trim", explode("/", $file));
2161                                 $info = Addon::getInfo($id);
2162                                 $show_addon = true;
2163
2164                                 // If the addon is unsupported, then only show it, when it is enabled
2165                                 if ((strtolower($info["status"]) == "unsupported") && !Addon::isEnabled($id)) {
2166                                         $show_addon = false;
2167                                 }
2168
2169                                 // Override the above szenario, when the admin really wants to see outdated stuff
2170                                 if (Config::get("system", "show_unsupported_addons")) {
2171                                         $show_addon = true;
2172                                 }
2173
2174                                 if ($show_addon) {
2175                                         $addons[] = [$id, (Addon::isEnabled($id) ? "on" : "off"), $info];
2176                                 }
2177                         }
2178                 }
2179         }
2180
2181         $t = Renderer::getMarkupTemplate('admin/addons.tpl');
2182         return Renderer::replaceMacros($t, [
2183                 '$title' => L10n::t('Administration'),
2184                 '$page' => L10n::t('Addons'),
2185                 '$submit' => L10n::t('Save Settings'),
2186                 '$reload' => L10n::t('Reload active addons'),
2187                 '$baseurl' => System::baseUrl(true),
2188                 '$function' => 'addons',
2189                 '$addons' => $addons,
2190                 '$pcount' => count($addons),
2191                 '$noplugshint' => L10n::t('There are currently no addons available on your node. You can find the official addon repository at %1$s and might find other interesting addons in the open addon registry at %2$s', 'https://github.com/friendica/friendica-addons', 'http://addons.friendi.ca'),
2192                 '$form_security_token' => BaseModule::getFormSecurityToken("admin_themes"),
2193         ]);
2194 }
2195
2196 /**
2197  * @param array  $themes
2198  * @param string $th
2199  * @param int    $result
2200  */
2201 function toggle_theme(&$themes, $th, &$result)
2202 {
2203         $count = count($themes);
2204         for ($x = 0; $x < $count; $x++) {
2205                 if ($themes[$x]['name'] === $th) {
2206                         if ($themes[$x]['allowed']) {
2207                                 $themes[$x]['allowed'] = 0;
2208                                 $result = 0;
2209                         } else {
2210                                 $themes[$x]['allowed'] = 1;
2211                                 $result = 1;
2212                         }
2213                 }
2214         }
2215 }
2216
2217 /**
2218  * @param array  $themes
2219  * @param string $th
2220  * @return int
2221  */
2222 function theme_status($themes, $th)
2223 {
2224         $count = count($themes);
2225         for ($x = 0; $x < $count; $x++) {
2226                 if ($themes[$x]['name'] === $th) {
2227                         if ($themes[$x]['allowed']) {
2228                                 return 1;
2229                         } else {
2230                                 return 0;
2231                         }
2232                 }
2233         }
2234         return 0;
2235 }
2236
2237 /**
2238  * @param array $themes
2239  * @return string
2240  */
2241 function rebuild_theme_table($themes)
2242 {
2243         $o = '';
2244         if (count($themes)) {
2245                 foreach ($themes as $th) {
2246                         if ($th['allowed']) {
2247                                 if (strlen($o)) {
2248                                         $o .= ',';
2249                                 }
2250                                 $o .= $th['name'];
2251                         }
2252                 }
2253         }
2254         return $o;
2255 }
2256
2257 /**
2258  * @brief Themes admin page
2259  *
2260  * This function generates the admin panel page to control the themes available
2261  * on the friendica node. If the name of a theme is given as parameter a page
2262  * with the details for the theme is shown. Otherwise a list of available
2263  * themes is generated.
2264  *
2265  * The template used for displaying the list of themes and the details of the
2266  * themes are the same as used for the addons.
2267  *
2268  * The returned string contains the HTML code of the admin panel page.
2269  *
2270  * @param App $a
2271  * @return string
2272  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2273  */
2274 function admin_page_themes(App $a)
2275 {
2276         $allowed_themes_str = Config::get('system', 'allowed_themes');
2277         $allowed_themes_raw = explode(',', $allowed_themes_str);
2278         $allowed_themes = [];
2279         if (count($allowed_themes_raw)) {
2280                 foreach ($allowed_themes_raw as $x) {
2281                         if (strlen(trim($x))) {
2282                                 $allowed_themes[] = trim($x);
2283                         }
2284                 }
2285         }
2286
2287         $themes = [];
2288         $files = glob('view/theme/*');
2289         if (is_array($files)) {
2290                 foreach ($files as $file) {
2291                         $f = basename($file);
2292
2293                         // Is there a style file?
2294                         $theme_files = glob('view/theme/' . $f . '/style.*');
2295
2296                         // If not then quit
2297                         if (count($theme_files) == 0) {
2298                                 continue;
2299                         }
2300
2301                         $is_experimental = intval(file_exists($file . '/experimental'));
2302                         $is_supported = 1 - (intval(file_exists($file . '/unsupported')));
2303                         $is_allowed = intval(in_array($f, $allowed_themes));
2304
2305                         if ($is_allowed || $is_supported || Config::get("system", "show_unsupported_themes")) {
2306                                 $themes[] = ['name' => $f, 'experimental' => $is_experimental, 'supported' => $is_supported, 'allowed' => $is_allowed];
2307                         }
2308                 }
2309         }
2310
2311         if (!count($themes)) {
2312                 notice(L10n::t('No themes found.'));
2313                 return '';
2314         }
2315
2316         /*
2317          * Single theme
2318          */
2319
2320         if ($a->argc == 3) {
2321                 $theme = $a->argv[2];
2322                 if (!is_dir("view/theme/$theme")) {
2323                         notice(L10n::t("Item not found."));
2324                         return '';
2325                 }
2326
2327                 if (!empty($_GET['a']) && $_GET['a'] == "t") {
2328                         BaseModule::checkFormSecurityTokenRedirectOnError('/admin/themes', 'admin_themes', 't');
2329
2330                         // Toggle theme status
2331
2332                         toggle_theme($themes, $theme, $result);
2333                         $s = rebuild_theme_table($themes);
2334                         if ($result) {
2335                                 Theme::install($theme);
2336                                 info(sprintf('Theme %s enabled.', $theme));
2337                         } else {
2338                                 Theme::uninstall($theme);
2339                                 info(sprintf('Theme %s disabled.', $theme));
2340                         }
2341
2342                         Config::set('system', 'allowed_themes', $s);
2343                         $a->internalRedirect('admin/themes');
2344                         return ''; // NOTREACHED
2345                 }
2346
2347                 // display theme details
2348                 if (theme_status($themes, $theme)) {
2349                         $status = "on";
2350                         $action = L10n::t("Disable");
2351                 } else {
2352                         $status = "off";
2353                         $action = L10n::t("Enable");
2354                 }
2355
2356                 $readme = null;
2357
2358                 if (is_file("view/theme/$theme/README.md")) {
2359                         $readme = Markdown::convert(file_get_contents("view/theme/$theme/README.md"), false);
2360                 } elseif (is_file("view/theme/$theme/README")) {
2361                         $readme = "<pre>" . file_get_contents("view/theme/$theme/README") . "</pre>";
2362                 }
2363
2364                 $admin_form = '';
2365                 if (is_file("view/theme/$theme/config.php")) {
2366                         require_once "view/theme/$theme/config.php";
2367
2368                         if (function_exists('theme_admin')) {
2369                                 $admin_form = theme_admin($a);
2370                         }
2371                 }
2372
2373                 $screenshot = [Theme::getScreenshot($theme), L10n::t('Screenshot')];
2374                 if (!stristr($screenshot[0], $theme)) {
2375                         $screenshot = null;
2376                 }
2377
2378                 $t = Renderer::getMarkupTemplate('admin/addon_details.tpl');
2379                 return Renderer::replaceMacros($t, [
2380                         '$title' => L10n::t('Administration'),
2381                         '$page' => L10n::t('Themes'),
2382                         '$toggle' => L10n::t('Toggle'),
2383                         '$settings' => L10n::t('Settings'),
2384                         '$baseurl' => System::baseUrl(true),
2385                         '$addon' => $theme . (!empty($_GET['mode']) ? '?mode=' . $_GET['mode'] : ''),
2386                         '$status' => $status,
2387                         '$action' => $action,
2388                         '$info' => Theme::getInfo($theme),
2389                         '$function' => 'themes',
2390                         '$admin_form' => $admin_form,
2391                         '$str_author' => L10n::t('Author: '),
2392                         '$str_maintainer' => L10n::t('Maintainer: '),
2393                         '$screenshot' => $screenshot,
2394                         '$readme' => $readme,
2395
2396                         '$form_security_token' => BaseModule::getFormSecurityToken("admin_themes"),
2397                 ]);
2398         }
2399
2400         // reload active themes
2401         if (!empty($_GET['a']) && $_GET['a'] == "r") {
2402                 BaseModule::checkFormSecurityTokenRedirectOnError(System::baseUrl() . '/admin/themes', 'admin_themes', 't');
2403                 foreach ($themes as $th) {
2404                         if ($th['allowed']) {
2405                                 Theme::uninstall($th['name']);
2406                                 Theme::install($th['name']);
2407                         }
2408                 }
2409                 info("Themes reloaded");
2410                 $a->internalRedirect('admin/themes');
2411         }
2412
2413         /*
2414          * List themes
2415          */
2416
2417         $addons = [];
2418         foreach ($themes as $th) {
2419                 $addons[] = [$th['name'], (($th['allowed']) ? "on" : "off"), Theme::getInfo($th['name'])];
2420         }
2421
2422         $t = Renderer::getMarkupTemplate('admin/addons.tpl');
2423         return Renderer::replaceMacros($t, [
2424                 '$title'               => L10n::t('Administration'),
2425                 '$page'                => L10n::t('Themes'),
2426                 '$submit'              => L10n::t('Save Settings'),
2427                 '$reload'              => L10n::t('Reload active themes'),
2428                 '$baseurl'             => System::baseUrl(true),
2429                 '$function'            => 'themes',
2430                 '$addons'             => $addons,
2431                 '$pcount'              => count($themes),
2432                 '$noplugshint'         => L10n::t('No themes found on the system. They should be placed in %1$s', '<code>/view/themes</code>'),
2433                 '$experimental'        => L10n::t('[Experimental]'),
2434                 '$unsupported'         => L10n::t('[Unsupported]'),
2435                 '$form_security_token' => BaseModule::getFormSecurityToken("admin_themes"),
2436         ]);
2437 }
2438
2439 /**
2440  * @brief Prosesses data send by Logs admin page
2441  *
2442  * @param App $a
2443  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2444  */
2445 function admin_page_logs_post(App $a)
2446 {
2447         if (!empty($_POST['page_logs'])) {
2448                 BaseModule::checkFormSecurityTokenRedirectOnError('/admin/logs', 'admin_logs');
2449
2450                 $logfile   = (!empty($_POST['logfile']) ? Strings::escapeTags(trim($_POST['logfile'])) : '');
2451                 $debugging = !empty($_POST['debugging']);
2452                 $loglevel  = defaults($_POST, 'loglevel', LogLevel::ERROR);
2453
2454                 Config::set('system', 'logfile', $logfile);
2455                 Config::set('system', 'debugging', $debugging);
2456                 Config::set('system', 'loglevel', $loglevel);
2457         }
2458
2459         info(L10n::t("Log settings updated."));
2460         $a->internalRedirect('admin/logs');
2461         return; // NOTREACHED
2462 }
2463
2464 /**
2465  * @brief Generates admin panel subpage for configuration of the logs
2466  *
2467  * This function take the view/templates/admin_logs.tpl file and generates a
2468  * page where admin can configure the logging of friendica.
2469  *
2470  * Displaying the log is separated from the log config as the logfile can get
2471  * big depending on the settings and changing settings regarding the logs can
2472  * thus waste bandwidth.
2473  *
2474  * The string returned contains the content of the template file with replaced
2475  * macros.
2476  *
2477  * @param App $a
2478  * @return string
2479  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2480  */
2481 function admin_page_logs(App $a)
2482 {
2483         $log_choices = [
2484                 LogLevel::ERROR   => 'Error',
2485                 LogLevel::WARNING => 'Warning',
2486                 LogLevel::NOTICE  => 'Notice',
2487                 LogLevel::INFO    => 'Info',
2488                 LogLevel::DEBUG   => 'Debug',
2489         ];
2490
2491         if (ini_get('log_errors')) {
2492                 $phplogenabled = L10n::t('PHP log currently enabled.');
2493         } else {
2494                 $phplogenabled = L10n::t('PHP log currently disabled.');
2495         }
2496
2497         $t = Renderer::getMarkupTemplate('admin/logs.tpl');
2498
2499         return Renderer::replaceMacros($t, [
2500                 '$title' => L10n::t('Administration'),
2501                 '$page' => L10n::t('Logs'),
2502                 '$submit' => L10n::t('Save Settings'),
2503                 '$clear' => L10n::t('Clear'),
2504                 '$baseurl' => System::baseUrl(true),
2505                 '$logname' => Config::get('system', 'logfile'),
2506                 // name, label, value, help string, extra data...
2507                 '$debugging' => ['debugging', L10n::t("Enable Debugging"), Config::get('system', 'debugging'), ""],
2508                 '$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.")],
2509                 '$loglevel' => ['loglevel', L10n::t("Log level"), Config::get('system', 'loglevel'), "", $log_choices],
2510                 '$form_security_token' => BaseModule::getFormSecurityToken("admin_logs"),
2511                 '$phpheader' => L10n::t("PHP logging"),
2512                 '$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."),
2513                 '$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');",
2514                 '$phplogenabled' => $phplogenabled,
2515         ]);
2516 }
2517
2518 /**
2519  * @brief Generates admin panel subpage to view the Friendica log
2520  *
2521  * This function loads the template view/templates/admin_viewlogs.tpl to
2522  * display the systemlog content. The filename for the systemlog of friendica
2523  * is relative to the base directory and taken from the config entry 'logfile'
2524  * in the 'system' category.
2525  *
2526  * Displaying the log is separated from the log config as the logfile can get
2527  * big depending on the settings and changing settings regarding the logs can
2528  * thus waste bandwidth.
2529  *
2530  * The string returned contains the content of the template file with replaced
2531  * macros.
2532  *
2533  * @param App $a
2534  * @return string
2535  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2536  */
2537 function admin_page_viewlogs(App $a)
2538 {
2539         $t = Renderer::getMarkupTemplate('admin/viewlogs.tpl');
2540         $f = Config::get('system', 'logfile');
2541         $data = '';
2542
2543         if (!file_exists($f)) {
2544                 $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);
2545         } else {
2546                 $fp = fopen($f, 'r');
2547                 if (!$fp) {
2548                         $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);
2549                 } else {
2550                         $fstat = fstat($fp);
2551                         $size = $fstat['size'];
2552                         if ($size != 0) {
2553                                 if ($size > 5000000 || $size < 0) {
2554                                         $size = 5000000;
2555                                 }
2556                                 $seek = fseek($fp, 0 - $size, SEEK_END);
2557                                 if ($seek === 0) {
2558                                         $data = Strings::escapeHtml(fread($fp, $size));
2559                                         while (!feof($fp)) {
2560                                                 $data .= Strings::escapeHtml(fread($fp, 4096));
2561                                         }
2562                                 }
2563                         }
2564                         fclose($fp);
2565                 }
2566         }
2567         return Renderer::replaceMacros($t, [
2568                 '$title' => L10n::t('Administration'),
2569                 '$page' => L10n::t('View Logs'),
2570                 '$data' => $data,
2571                 '$logname' => Config::get('system', 'logfile')
2572         ]);
2573 }
2574
2575 /**
2576  * @brief Prosesses data send by the features admin page
2577  *
2578  * @param App $a
2579  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2580  */
2581 function admin_page_features_post(App $a)
2582 {
2583         BaseModule::checkFormSecurityTokenRedirectOnError('/admin/features', 'admin_manage_features');
2584
2585         Logger::log('postvars: ' . print_r($_POST, true), Logger::DATA);
2586
2587         $features = Feature::get(false);
2588
2589         foreach ($features as $fname => $fdata) {
2590                 foreach (array_slice($fdata, 1) as $f) {
2591                         $feature = $f[0];
2592                         $feature_state = 'feature_' . $feature;
2593                         $featurelock = 'featurelock_' . $feature;
2594
2595                         if (!empty($_POST[$feature_state])) {
2596                                 $val = intval($_POST[$feature_state]);
2597                         } else {
2598                                 $val = 0;
2599                         }
2600                         Config::set('feature', $feature, $val);
2601
2602                         if (!empty($_POST[$featurelock])) {
2603                                 Config::set('feature_lock', $feature, $val);
2604                         } else {
2605                                 Config::delete('feature_lock', $feature);
2606                         }
2607                 }
2608         }
2609
2610         $a->internalRedirect('admin/features');
2611         return; // NOTREACHED
2612 }
2613
2614 /**
2615  * @brief Subpage for global additional feature management
2616  *
2617  * This functin generates the subpage 'Manage Additional Features'
2618  * for the admin panel. At this page the admin can set preferences
2619  * for the user settings of the 'additional features'. If needed this
2620  * preferences can be locked through the admin.
2621  *
2622  * The returned string contains the HTML code of the subpage 'Manage
2623  * Additional Features'
2624  *
2625  * @param App $a
2626  * @return string
2627  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
2628  */
2629 function admin_page_features(App $a)
2630 {
2631         if (($a->argc > 1) && ($a->getArgumentValue(1) === 'features')) {
2632                 $arr = [];
2633                 $features = Feature::get(false);
2634
2635                 foreach ($features as $fname => $fdata) {
2636                         $arr[$fname] = [];
2637                         $arr[$fname][0] = $fdata[0];
2638                         foreach (array_slice($fdata, 1) as $f) {
2639                                 $set = Config::get('feature', $f[0], $f[3]);
2640                                 $arr[$fname][1][] = [
2641                                         ['feature_' . $f[0], $f[1], $set, $f[2], [L10n::t('Off'), L10n::t('On')]],
2642                                         ['featurelock_' . $f[0], L10n::t('Lock feature %s', $f[1]), (($f[4] !== false) ? "1" : ''), '', [L10n::t('Off'), L10n::t('On')]]
2643                                 ];
2644                         }
2645                 }
2646
2647                 $tpl = Renderer::getMarkupTemplate('admin/settings_features.tpl');
2648                 $o = Renderer::replaceMacros($tpl, [
2649                         '$form_security_token' => BaseModule::getFormSecurityToken("admin_manage_features"),
2650                         '$title' => L10n::t('Manage Additional Features'),
2651                         '$features' => $arr,
2652                         '$submit' => L10n::t('Save Settings'),
2653                 ]);
2654
2655                 return $o;
2656         }
2657 }
2658
2659 function admin_page_server_vital()
2660 {
2661         // Fetch the host-meta to check if this really is a vital server
2662         return Network::curl(System::baseUrl() . '/.well-known/host-meta')->isSuccess();
2663 }