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