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