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