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