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