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