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