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