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