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