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