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