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