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