]> git.mxchange.org Git - friendica.git/blob - src/Module/Admin/Logs/Settings.php
parameters now are having a default value and are optional
[friendica.git] / src / Module / Admin / Logs / Settings.php
1 <?php
2
3 namespace Friendica\Module\Admin\Logs;
4
5 use Friendica\Core\Config;
6 use Friendica\Core\L10n;
7 use Friendica\Core\Renderer;
8 use Friendica\Module\BaseAdminModule;
9 use Friendica\Util\Strings;
10 use Psr\Log\LogLevel;
11
12 class Settings extends BaseAdminModule
13 {
14         public static function post(array $parameters = [])
15         {
16                 parent::post($parameters);
17
18                 if (!empty($_POST['page_logs'])) {
19                         parent::checkFormSecurityTokenRedirectOnError('/admin/logs', 'admin_logs');
20
21                         $logfile   = (!empty($_POST['logfile']) ? Strings::escapeTags(trim($_POST['logfile'])) : '');
22                         $debugging = !empty($_POST['debugging']);
23                         $loglevel  = ($_POST['loglevel'] ?? '') ?: LogLevel::ERROR;
24
25                         if (is_file($logfile) &&
26                         !is_writeable($logfile)) {
27                                 notice(L10n::t('The logfile \'%s\' is not writable. No logging possible', $logfile));
28                                 return;
29                         }
30
31                         Config::set('system', 'logfile', $logfile);
32                         Config::set('system', 'debugging', $debugging);
33                         Config::set('system', 'loglevel', $loglevel);
34                 }
35
36                 info(L10n::t("Log settings updated."));
37                 self::getApp()->internalRedirect('admin/logs');
38         }
39
40         public static function content(array $parameters = [])
41         {
42                 parent::content($parameters);
43
44                 $a = self::getApp();
45
46                 $log_choices = [
47                         LogLevel::ERROR   => 'Error',
48                         LogLevel::WARNING => 'Warning',
49                         LogLevel::NOTICE  => 'Notice',
50                         LogLevel::INFO    => 'Info',
51                         LogLevel::DEBUG   => 'Debug',
52                 ];
53
54                 if (ini_get('log_errors')) {
55                         $phplogenabled = L10n::t('PHP log currently enabled.');
56                 } else {
57                         $phplogenabled = L10n::t('PHP log currently disabled.');
58                 }
59
60                 $t = Renderer::getMarkupTemplate('admin/logs/settings.tpl');
61
62                 return Renderer::replaceMacros($t, [
63                         '$title' => L10n::t('Administration'),
64                         '$page' => L10n::t('Logs'),
65                         '$submit' => L10n::t('Save Settings'),
66                         '$clear' => L10n::t('Clear'),
67                         '$baseurl' => $a->getBaseURL(true),
68                         '$logname' => Config::get('system', 'logfile'),
69                         // see /help/smarty3-templates#1_1 on any Friendica node
70                         '$debugging' => ['debugging', L10n::t("Enable Debugging"), Config::get('system', 'debugging'), ""],
71                         '$logfile' => ['logfile', L10n::t("Log file"), Config::get('system', 'logfile'), L10n::t("Must be writable by web server. Relative to your Friendica top-level directory.")],
72                         '$loglevel' => ['loglevel', L10n::t("Log level"), Config::get('system', 'loglevel'), "", $log_choices],
73                         '$form_security_token' => parent::getFormSecurityToken("admin_logs"),
74                         '$phpheader' => L10n::t("PHP logging"),
75                         '$phphint' => L10n::t("To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.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."),
76                         '$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');",
77                         '$phplogenabled' => $phplogenabled,
78                 ]);
79         }
80 }