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