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