dolibarr/htdocs/admin/syslog.php

345 lines
12 KiB
PHP
Raw Permalink Normal View History

<?php
2012-05-13 17:11:31 +02:00
/* Copyright (C) 2005-2012 Laurent Destailleur <eldy@users.sourceforge.net>
2018-10-27 14:43:12 +02:00
* Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
2007-01-07 19:19:59 +01:00
* Copyright (C) 2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2013 Juanjo Menent <jmenent@2byte.es>
* Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
2024-03-24 21:36:51 +01:00
* Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2019-09-23 21:55:30 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/**
* \file htdocs/admin/syslog.php
* \ingroup syslog
* \brief Setup page for logs module
*/
2022-09-07 20:08:59 +02:00
// Load Dolibarr environment
require '../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
add baseline exclude for phpstan (#31632) * add baseline exclude for phpstan * update * update * update * update * update * merge * restore one filter * delete old errors * fix * fix * fix * $moreforfilter can t be empty * fix * enable check * refresh baseline * add phpdoc * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * update phpstan baseline * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix --------- Co-authored-by: Laurent Destailleur <eldy@destailleur.fr>
2024-11-04 23:53:20 +01:00
/**
* @var Conf $conf
* @var DoliDB $db
* @var HookManager $hookmanager
* @var Translate $langs
* @var User $user
*/
2021-02-26 22:04:03 +01:00
if (!$user->admin) {
accessforbidden();
}
2018-05-26 18:52:14 +02:00
// Load translation files required by the page
$langs->loadLangs(array("admin", "other"));
$error = 0;
$action = GETPOST('action', 'aZ09');
$syslogModules = array();
$activeModules = array();
if (getDolGlobalString('SYSLOG_HANDLERS')) {
2021-02-26 22:04:03 +01:00
$activeModules = json_decode($conf->global->SYSLOG_HANDLERS);
if (!is_array($activeModules)) {
$activeModules = array();
}
2021-02-26 22:04:03 +01:00
}
$dirsyslogs = array_merge(array('/core/modules/syslog/'), $conf->modules_parts['syslog']);
foreach ($dirsyslogs as $reldir) {
$dir = dol_buildpath($reldir, 0);
$newdir = dol_osencode($dir);
if (is_dir($newdir)) {
$handle = opendir($newdir);
if (is_resource($handle)) {
while (($file = readdir($handle)) !== false) {
if (substr($file, 0, 11) == 'mod_syslog_' && substr($file, dol_strlen($file) - 3, 3) == 'php') {
$file = substr($file, 0, dol_strlen($file) - 4);
require_once $newdir.$file.'.php';
2023-12-04 11:41:14 +01:00
$module = new $file();
2024-03-24 21:36:51 +01:00
'@phan-var-force LogHandler $module';
// Show modules according to features level
2023-11-27 12:24:18 +01:00
if ($module->getVersion() == 'development' && getDolGlobalInt('MAIN_FEATURES_LEVEL') < 2) {
continue;
}
2023-11-27 12:24:18 +01:00
if ($module->getVersion() == 'experimental' && getDolGlobalInt('MAIN_FEATURES_LEVEL') < 1) {
continue;
}
$syslogModules[] = $file;
}
}
closedir($handle);
}
}
}
/*
* Actions
*/
2011-09-21 15:16:13 +02:00
// Set modes
2021-02-26 22:04:03 +01:00
if ($action == 'set') {
$db->begin();
2011-09-21 15:16:13 +02:00
$newActiveModules = array();
2020-11-30 14:47:07 +01:00
$selectedModules = (GETPOSTISSET('SYSLOG_HANDLERS') ? GETPOST('SYSLOG_HANDLERS') : array());
// Save options of handler
2021-02-26 22:04:03 +01:00
foreach ($syslogModules as $syslogHandler) {
if (in_array($syslogHandler, $syslogModules)) {
2023-12-04 11:41:14 +01:00
$module = new $syslogHandler();
2024-03-24 21:36:51 +01:00
'@phan-var-force LogHandler $module';
2021-02-26 22:04:03 +01:00
if (in_array($syslogHandler, $selectedModules)) {
$newActiveModules[] = $syslogHandler;
}
foreach ($module->configure() as $option) {
if (GETPOSTISSET($option['constant'])) {
dolibarr_del_const($db, $option['constant'], -1);
2020-11-30 14:47:07 +01:00
dolibarr_set_const($db, $option['constant'], trim(GETPOST($option['constant'])), 'chaine', 0, '', 0);
}
}
}
}
$activeModules = $newActiveModules;
dolibarr_del_const($db, 'SYSLOG_HANDLERS', -1); // To be sure there is not a setup into another entity
dolibarr_set_const($db, 'SYSLOG_HANDLERS', json_encode($activeModules), 'chaine', 0, '', 0);
$error = 0;
$errors = [];
// Check configuration
foreach ($activeModules as $modulename) {
2023-12-04 11:41:14 +01:00
$module = new $modulename();
2024-03-24 21:36:51 +01:00
'@phan-var-force LogHandler $module';
$res = $module->checkConfiguration();
if (!$res) {
$error++;
$errors = array_merge($errors, $module->errors);
}
}
2021-02-26 22:04:03 +01:00
if (!$error) {
$db->commit();
2015-10-29 13:58:16 +01:00
setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
2020-05-21 09:35:30 +02:00
} else {
$db->rollback();
setEventMessages('', $errors, 'errors');
}
}
// Set level
2021-02-26 22:04:03 +01:00
if ($action == 'setlevel') {
$level = GETPOST("level");
$res = dolibarr_set_const($db, "SYSLOG_LEVEL", $level, 'chaine', 0, '', 0);
dol_syslog("admin/syslog: level ".$level);
2021-02-26 22:04:03 +01:00
if (!($res > 0)) {
$error++;
}
2018-03-09 16:52:06 +01:00
2021-02-26 22:04:03 +01:00
if (!$error) {
2018-03-09 16:52:06 +01:00
$file_saves = GETPOST("file_saves");
$res = dolibarr_set_const($db, "SYSLOG_FILE_SAVES", $file_saves, 'chaine', 0, '', 0);
2018-03-09 16:52:06 +01:00
dol_syslog("admin/syslog: file saves ".$file_saves);
2021-02-26 22:04:03 +01:00
if (!($res > 0)) {
$error++;
}
2018-03-09 16:52:06 +01:00
}
2021-02-26 22:04:03 +01:00
if (!$error) {
2015-10-29 13:58:16 +01:00
setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
2020-05-21 09:35:30 +02:00
} else {
2015-10-29 13:58:16 +01:00
setEventMessages($langs->trans("Error"), null, 'errors');
}
}
2020-09-08 02:11:09 +02:00
/*
* View
*/
2007-01-07 19:19:59 +01:00
llxHeader('', $langs->trans("SyslogSetup"), '', '', 0, 0, '', '', '', 'mod-admin page-syslog');
$form = new Form($db);
$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
print load_fiche_titre($langs->trans("SyslogSetup"), $linkback, 'title_setup');
print '<br>';
$syslogfacility = $defaultsyslogfacility = dolibarr_get_const($db, "SYSLOG_FACILITY", 0);
$syslogfile = $defaultsyslogfile = dolibarr_get_const($db, "SYSLOG_FILE", 0);
2021-02-26 22:04:03 +01:00
if (!$defaultsyslogfacility) {
$defaultsyslogfacility = 'LOG_USER';
}
if (!$defaultsyslogfile) {
$defaultsyslogfile = 'dolibarr.log';
}
$optionmc = '';
if (isModEnabled('multicompany') && $user->entity) {
print '<div class="error">'.$langs->trans("ContactSuperAdminForChange").'</div>';
2021-06-20 20:15:19 +02:00
$optionmc = 'disabled';
}
// Output mode
2008-10-03 00:29:54 +02:00
print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
2023-12-11 09:13:10 +01:00
print load_fiche_titre($langs->trans("SyslogOutput"), '', '');
print '<input type="hidden" name="token" value="'.newToken().'">';
print '<input type="hidden" name="action" value="set">';
2023-12-11 09:13:10 +01:00
print '<div class="div-table-responsive-no-min">'; // You can use div-table-responsive-no-min if you don't need reserved height for your table
2019-11-05 21:24:41 +01:00
print '<table class="noborder centpercent">';
print '<tr class="liste_titre">';
2023-12-11 09:13:10 +01:00
print '<td>'.$langs->trans("Type").'</td>';
2025-01-24 13:12:48 +01:00
print '<td></td>';
2023-12-11 09:13:10 +01:00
print '<td class="center width150"><input type="submit" class="button small" '.$optionmc.' value="'.$langs->trans("Modify").'"></td>';
print "</tr>\n";
2021-02-26 22:04:03 +01:00
foreach ($syslogModules as $moduleName) {
2023-12-04 11:41:14 +01:00
$module = new $moduleName();
2024-03-24 21:36:51 +01:00
'@phan-var-force LogHandler $module';
$moduleactive = (int) $module->isActive();
2014-11-12 10:05:40 +01:00
//print $moduleName." = ".$moduleactive." - ".$module->getName()." ".($moduleactive == -1)."<br>\n";
2021-11-05 14:23:19 +01:00
if (($moduleactive == -1) && getDolGlobalInt('MAIN_FEATURES_LEVEL') == 0) {
2021-02-26 22:04:03 +01:00
continue; // Some modules are hidden if not activable and not into debug mode (end user must not see them)
}
print '<tr class="oddeven">';
2023-12-11 09:13:10 +01:00
print '<td class="nowraponall" width="140">';
print '<input class="oddeven" type="checkbox" id="syslog_handler_'.$moduleName.'" name="SYSLOG_HANDLERS[]" value="'.$moduleName.'" '.(in_array($moduleName, $activeModules) ? 'checked' : '').($moduleactive <= 0 ? 'disabled' : '').'> ';
print '<label for="syslog_handler_'.$moduleName.'">'.$module->getName().'</label>';
2020-09-22 16:26:53 +02:00
if ($moduleName == 'mod_syslog_syslog') {
if (!$module->isActive()) {
2020-09-22 16:26:53 +02:00
$langs->load("errors");
print $form->textwithpicto('', $langs->trans("ErrorPHPNeedModule", 'SysLog'));
}
}
print '</td>';
print '<td class="nowrap">';
$setuparray = $module->configure();
2024-01-02 16:24:57 +01:00
2021-02-26 22:04:03 +01:00
if ($setuparray) {
foreach ($setuparray as $option) {
$tmpoption = $option['constant'];
2024-01-02 16:24:57 +01:00
$value = '';
2021-02-26 22:04:03 +01:00
if (!empty($tmpoption)) {
if (GETPOSTISSET($tmpoption)) {
$value = GETPOST($tmpoption);
2024-01-02 16:24:57 +01:00
} else {
2023-12-23 20:00:57 +01:00
$value = getDolGlobalString($tmpoption);
2021-02-26 22:04:03 +01:00
}
} else {
$value = (isset($option['default']) ? $option['default'] : '');
}
2023-12-11 09:13:10 +01:00
print '<span class="hideonsmartphone opacitymedium">'.$option['name'].': </span><input type="text" class="flat'.(empty($option['css']) ? '' : ' '.$option['css']).'" name="'.dol_escape_htmltag($option['constant']).'" value="'.$value.'"'.(isset($option['attr']) ? ' '.$option['attr'] : '').'>';
2021-02-26 22:04:03 +01:00
if (!empty($option['example'])) {
2023-12-11 09:13:10 +01:00
print '<br>'.$langs->trans("Example").': '.dol_escape_htmltag($option['example']);
2021-02-26 22:04:03 +01:00
}
2021-02-26 22:04:03 +01:00
if ($option['constant'] == 'SYSLOG_FILE' && preg_match('/^DOL_DATA_ROOT\/[^\/]*$/', $value)) {
2023-12-11 09:13:10 +01:00
$filelogparam = ' &nbsp; &nbsp; <a href="'.DOL_URL_ROOT.'/document.php?modulepart=logs&file='.basename($value).'">';
$filelogparam .= $langs->trans('Download');
2023-12-11 09:13:10 +01:00
$filelogparam .= img_picto($langs->trans('Download').' '.basename($value), 'download', 'class="paddingleft"');
$filelogparam .= '</a>';
print $filelogparam;
}
}
}
print '</td>';
2023-12-11 09:13:10 +01:00
print '<td class="center">';
2021-02-26 22:04:03 +01:00
if ($module->getInfo()) {
print $form->textwithpicto('', $module->getInfo(), 1, 'help');
}
2021-02-26 22:04:03 +01:00
if ($module->getWarning()) {
print $form->textwithpicto('', $module->getWarning(), 1, 'warning');
2012-09-07 17:23:16 +02:00
}
print '</td>';
print "</tr>\n";
2012-09-07 17:23:16 +02:00
}
print "</table>\n";
2023-12-11 09:13:10 +01:00
print "</div>\n";
print "</form>\n";
2023-12-11 09:13:10 +01:00
2014-11-12 10:05:40 +01:00
print '<br>'."\n\n";
// Level
2023-12-11 09:13:10 +01:00
print '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
print load_fiche_titre($langs->trans("SyslogLevel"), '', '');
print '<input type="hidden" name="token" value="'.newToken().'">';
print '<input type="hidden" name="action" value="setlevel">';
2023-12-11 09:13:10 +01:00
print '<div class="div-table-responsive-no-min">'; // You can use div-table-responsive-no-min if you don't need reserved height for your table
2019-11-05 21:24:41 +01:00
print '<table class="noborder centpercent">';
print '<tr class="liste_titre">';
2025-01-24 13:12:48 +01:00
print '<td>'.$langs->trans("Parameter").'</td><td></td>';
2023-12-11 09:13:10 +01:00
print '<td class="center width150"><input type="submit" class="button small" '.$optionmc.' value="'.$langs->trans("Modify").'"></td>';
print "</tr>\n";
2023-12-11 09:13:10 +01:00
print '<tr class="oddeven"><td>'.$langs->trans("SyslogLevel").'</td>';
print '<td colspan="2"><select class="flat minwidth400" id="level" name="level" '.$optionmc.'>';
print '<option value="'.LOG_EMERG.'" '.($conf->global->SYSLOG_LEVEL == LOG_EMERG ? 'SELECTED' : '').'>LOG_EMERG ('.LOG_EMERG.')</option>';
print '<option value="'.LOG_ALERT.'" '.($conf->global->SYSLOG_LEVEL == LOG_ALERT ? 'SELECTED' : '').'>LOG_ALERT ('.LOG_ALERT.')</option>';
print '<option value="'.LOG_CRIT.'" '.($conf->global->SYSLOG_LEVEL == LOG_CRIT ? 'SELECTED' : '').'>LOG_CRIT ('.LOG_CRIT.')</option>';
print '<option value="'.LOG_ERR.'" '.($conf->global->SYSLOG_LEVEL == LOG_ERR ? 'SELECTED' : '').'>LOG_ERR ('.LOG_ERR.')</option>';
2023-12-11 09:13:10 +01:00
print '<option value="'.LOG_WARNING.'" '.($conf->global->SYSLOG_LEVEL == LOG_WARNING ? 'SELECTED' : '').'">LOG_WARNING ('.LOG_WARNING.')</option>';
print '<option value="'.LOG_NOTICE.'" '.($conf->global->SYSLOG_LEVEL == LOG_NOTICE ? 'SELECTED' : '').' data-html="'.dol_escape_htmltag('LOG_NOTICE ('.LOG_NOTICE.') - <span class="opacitymedium">'.$langs->trans("RecommendedForProduction").'</span>').'">LOG_NOTICE ('.LOG_NOTICE.')</option>';
print '<option value="'.LOG_INFO.'" '.($conf->global->SYSLOG_LEVEL == LOG_INFO ? 'SELECTED' : '').'>LOG_INFO ('.LOG_INFO.')</option>';
2023-12-11 09:13:10 +01:00
print '<option value="'.LOG_DEBUG.'" '.($conf->global->SYSLOG_LEVEL >= LOG_DEBUG ? 'SELECTED' : '').' data-html="'.dol_escape_htmltag('LOG_DEBUG ('.LOG_DEBUG.') - <span class="opacitymedium">'.$langs->trans("RecommendedForDebug").'</span>').'">LOG_DEBUG ('.LOG_DEBUG.')</option>';
print '</select>';
2023-12-11 09:13:10 +01:00
print ajax_combobox("level");
print '</td></tr>';
2018-03-09 16:52:06 +01:00
2022-08-23 10:12:34 +02:00
if (!empty($conf->loghandlers['mod_syslog_file']) && isModEnabled('cron')) {
2023-12-11 09:13:10 +01:00
print '<tr class="oddeven"><td>'.$langs->trans("SyslogFileNumberOfSaves").'</td>';
print '<td colspan="2"><input class="width50" type="number" name="file_saves" placeholder="14" min="0" step="1" value="'.getDolGlobalString('SYSLOG_FILE_SAVES').'" />';
print ' &nbsp; (<a href="'.dol_buildpath('/cron/list.php', 1).'?search_label=CompressSyslogs&status=-1">'.$langs->trans('ConfigureCleaningCronjobToSetFrequencyOfSaves').'</a>)</td></tr>';
2018-03-09 16:52:06 +01:00
}
print '</table>';
2023-12-11 09:13:10 +01:00
print "</div>\n";
print "</form>\n";
2018-07-29 10:29:12 +02:00
// End of page
llxFooter();
2012-02-22 13:23:13 +01:00
$db->close();