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