2019-06-28 18:00:37 +02:00
|
|
|
<?php
|
|
|
|
/*******************************************************************************
|
|
|
|
* Copyright (C) 2007 Easter-eggs
|
2021-04-13 18:04:19 +02:00
|
|
|
* https://ldapsaisie.org
|
2019-06-28 18:00:37 +02:00
|
|
|
*
|
|
|
|
* Author: See AUTHORS file in top-level directory.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License version 2
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
2020-09-10 10:26:49 +02:00
|
|
|
LSsession :: loadLSclass('LSlog_staticLoggerClass');
|
|
|
|
|
2020-04-29 15:54:21 +02:00
|
|
|
/**
|
2019-06-28 18:00:37 +02:00
|
|
|
* Default logging handler
|
|
|
|
*
|
|
|
|
* @author Benjamin Renard <brenard@easter-eggs.com>
|
|
|
|
*/
|
2020-09-10 10:26:49 +02:00
|
|
|
class LSlog_handler extends LSlog_staticLoggerClass {
|
2019-06-28 18:00:37 +02:00
|
|
|
|
|
|
|
// The handler configuration
|
2020-05-08 12:32:21 +02:00
|
|
|
protected $config;
|
|
|
|
|
2020-05-14 10:49:50 +02:00
|
|
|
// Log level
|
|
|
|
protected $level;
|
|
|
|
|
2020-05-08 12:32:21 +02:00
|
|
|
// Default log formats
|
|
|
|
protected $default_format = '%{requesturi} - %{remoteaddr} - %{ldapservername} - %{authuser} - %{logger} - %{level} - %{message}';
|
|
|
|
protected $default_cli_format = '%{clibinpath} - %{logger} - %{level} - %{message}';
|
|
|
|
|
|
|
|
// Default datetime prefix (enabled/disabled)
|
|
|
|
protected $default_datetime_prefix = true;
|
|
|
|
|
|
|
|
// Default datetime format
|
|
|
|
protected $default_datetime_format = 'Y/m/d H:i:s';
|
2019-06-28 18:00:37 +02:00
|
|
|
|
2020-05-08 13:18:17 +02:00
|
|
|
// Loggers filters
|
|
|
|
protected $loggers = array();
|
|
|
|
protected $excluded_loggers = array();
|
|
|
|
|
2019-06-28 18:00:37 +02:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param[in] $config array The handler configuration
|
|
|
|
*
|
|
|
|
* @retval void
|
|
|
|
**/
|
|
|
|
public function __construct($config) {
|
|
|
|
$this -> config = $config;
|
2020-05-14 10:49:50 +02:00
|
|
|
$this -> level = $this -> getConfig('level', null, 'string');
|
2020-05-08 12:32:21 +02:00
|
|
|
$this -> loggers = $this -> getConfig('loggers', array());
|
|
|
|
if (!is_array($this -> loggers))
|
|
|
|
$this -> loggers = array($this -> loggers);
|
2020-05-08 13:18:17 +02:00
|
|
|
$this -> excluded_loggers = $this -> getConfig('excluded_loggers', array());
|
|
|
|
if (!is_array($this -> excluded_loggers))
|
|
|
|
$this -> excluded_loggers = array($this -> excluded_loggers);
|
2019-06-28 18:00:37 +02:00
|
|
|
}
|
|
|
|
|
2020-09-08 17:29:10 +02:00
|
|
|
/**
|
|
|
|
* Allow conversion of LSlog_handler to string
|
|
|
|
*
|
|
|
|
* @retval string The string representation of the LSlog_handler
|
|
|
|
*/
|
|
|
|
public function __toString() {
|
|
|
|
return "<".get_class($this)." ".implode(', ', $this -> __toStringDetails()).">";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return list of details for the string representation of the LSlog_handler
|
|
|
|
*
|
|
|
|
* @retval array List of details for the string representation of the LSlog_handler
|
|
|
|
*/
|
|
|
|
public function __toStringDetails() {
|
|
|
|
return array(
|
|
|
|
"level=".($this -> level?$this -> level:'default'),
|
|
|
|
"loggers=".($this -> loggers?implode(',', $this -> loggers):'all'),
|
|
|
|
"excluded loggers=".($this -> excluded_loggers?implode(',', $this -> excluded_loggers):'no'),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-09-10 10:17:19 +02:00
|
|
|
/**
|
|
|
|
* Get handler info
|
|
|
|
*
|
|
|
|
* @param[in] $key string The info name
|
|
|
|
*
|
|
|
|
* @retval mixed The info value
|
|
|
|
**/
|
|
|
|
public function __get($key) {
|
|
|
|
switch ($key) {
|
|
|
|
case 'enabled':
|
|
|
|
return $this -> getConfig('enabled', true, 'bool');
|
|
|
|
case 'format':
|
|
|
|
if (php_sapi_name() == "cli")
|
|
|
|
$format = $this -> getConfig('cli_format', $this -> default_cli_format, 'string');
|
|
|
|
else
|
|
|
|
$format = $this -> getConfig('format', $this -> default_format, 'string');
|
|
|
|
// Add datetime prefix (if enabled)
|
|
|
|
if ($this -> getConfig('datetime_prefix', $this -> default_datetime_prefix, 'boolean')) {
|
|
|
|
$format = date($this -> getConfig('datetime_format', $this -> default_datetime_format, 'string'))." - $format";
|
|
|
|
}
|
|
|
|
return $format;
|
|
|
|
}
|
|
|
|
// Unknown key, log warning
|
2020-09-10 10:26:49 +02:00
|
|
|
self :: log_warning("__get($key): invalid property requested\n".LSlog :: get_debug_backtrace_context());
|
2020-09-10 10:17:19 +02:00
|
|
|
}
|
|
|
|
|
2019-06-28 18:00:37 +02:00
|
|
|
/**
|
|
|
|
* Check system compatibility with this handler
|
|
|
|
*
|
|
|
|
* Note : LSlog do not generate no error about imcompatibly, it's
|
|
|
|
* just omit this handler if system is incompatible. You have to
|
|
|
|
* trigger it with this method if you want.
|
|
|
|
*
|
|
|
|
* @retval bool True if system is compatible, False otherwise
|
|
|
|
**/
|
|
|
|
public function checkCompatibility() {
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a configuration variable value
|
|
|
|
*
|
|
|
|
* @param[in] $var string The configuration variable name
|
|
|
|
* @param[in] $default mixed The default value to return if configuration variable
|
|
|
|
* is not set (Default : null)
|
|
|
|
* @param[in] $cast string The type of expected value. The configuration variable
|
|
|
|
* value will be cast as this type. Could be : bool, int,
|
|
|
|
* float or string. (Optional, default : raw value)
|
|
|
|
*
|
|
|
|
* @retval mixed The configuration variable value
|
|
|
|
**/
|
|
|
|
public function getConfig($var, $default=null, $cast=null) {
|
|
|
|
return LSconfig :: get($var, $default, $cast, $this -> config);
|
|
|
|
}
|
|
|
|
|
2020-05-14 10:49:50 +02:00
|
|
|
/**
|
|
|
|
* Set log level
|
|
|
|
*
|
|
|
|
* @param[in] $level string The level
|
|
|
|
*
|
|
|
|
* @retval bool True if log level set, False otherwise
|
|
|
|
**/
|
|
|
|
public function setLevel($level) {
|
|
|
|
if (!is_null($level) && !LSlog :: checkLevelExists($level)) {
|
2020-09-10 10:26:49 +02:00
|
|
|
self :: log_error("Invalid log level '$level'");
|
2020-05-14 10:49:50 +02:00
|
|
|
return false;
|
|
|
|
}
|
2020-09-10 10:26:49 +02:00
|
|
|
self :: log_debug("Log handler ".get_called_class()." level set to ".(is_null($level)?'default':$level));
|
2020-05-14 10:49:50 +02:00
|
|
|
$this -> level = $level;
|
|
|
|
}
|
|
|
|
|
2019-06-28 18:00:37 +02:00
|
|
|
/**
|
|
|
|
* Check level against configured level
|
|
|
|
*
|
|
|
|
* @param[in] $level string The level
|
|
|
|
*
|
|
|
|
* @retval bool True if a message with this level have to be logged, False otherwise
|
|
|
|
**/
|
|
|
|
public function checkLevel($level) {
|
2020-05-14 10:49:50 +02:00
|
|
|
return LSlog :: checkLevel($level, $this -> level);
|
2019-06-28 18:00:37 +02:00
|
|
|
}
|
|
|
|
|
2020-05-08 12:32:21 +02:00
|
|
|
/**
|
|
|
|
* Check logger against configured loggers filters
|
|
|
|
*
|
|
|
|
* @param[in] $logger string The logger
|
|
|
|
*
|
|
|
|
* @retval bool True if message of this logger have to be logged, False otherwise
|
|
|
|
**/
|
|
|
|
public function checkLogger($logger) {
|
2020-05-08 13:18:17 +02:00
|
|
|
if (!$this -> loggers && !$this -> excluded_loggers)
|
|
|
|
return true;
|
|
|
|
if ($this -> loggers && in_array($logger, $this -> loggers))
|
|
|
|
return true;
|
|
|
|
if ($this -> excluded_loggers && !in_array($logger, $this -> excluded_loggers))
|
|
|
|
return true;
|
|
|
|
return false;
|
2020-05-08 12:32:21 +02:00
|
|
|
}
|
|
|
|
|
2019-06-28 18:00:37 +02:00
|
|
|
/**
|
|
|
|
* Log a message
|
|
|
|
*
|
|
|
|
* @param[in] $level string The message level
|
|
|
|
* @param[in] $message string The message
|
2020-05-08 12:32:21 +02:00
|
|
|
* @param[in] $logger string|null The logger name (optional, default: null)
|
2019-06-28 18:00:37 +02:00
|
|
|
*
|
|
|
|
* @retval void
|
|
|
|
**/
|
2020-05-08 12:32:21 +02:00
|
|
|
public function logging($level, $message, $logger=null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Format a message
|
|
|
|
*
|
|
|
|
* @param[in] $level string The message level
|
|
|
|
* @param[in] $message string The message
|
|
|
|
* @param[in] $logger string|null The logger name (optional, default: null)
|
|
|
|
*
|
|
|
|
* @retval string The formated message to log
|
|
|
|
**/
|
|
|
|
protected function format($level, $message, $logger=null) {
|
|
|
|
global $argv;
|
|
|
|
return getFData(
|
2020-09-10 10:17:19 +02:00
|
|
|
$this -> format,
|
2020-05-08 12:32:21 +02:00
|
|
|
array(
|
|
|
|
'level' => $level,
|
|
|
|
'message' => $message,
|
|
|
|
'logger' => ($logger?$logger:'default'),
|
2020-05-08 16:18:29 +02:00
|
|
|
'clibinpath' => (isset($argv)?basename($argv[0]):'unknown bin path'),
|
2020-05-08 13:21:28 +02:00
|
|
|
'requesturi' => (isset($_SERVER['REQUEST_URI'])?$_SERVER['REQUEST_URI']:'unknown request URI'),
|
|
|
|
'remoteaddr' => (isset($_SERVER['REMOTE_ADDR'])?$_SERVER['REMOTE_ADDR']:'unknown remote address'),
|
2020-05-08 12:32:21 +02:00
|
|
|
'ldapservername' => self :: getLdapServerName(),
|
|
|
|
'authuser' => self :: getAuthenticatedUserDN(),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper to retreive current LDAP server name
|
|
|
|
*
|
|
|
|
* @retval string Current LDAP server name
|
|
|
|
**/
|
|
|
|
private static function getLdapServerName() {
|
|
|
|
if (LSsession :: $ldapServer) {
|
|
|
|
if (isset(LSsession :: $ldapServer['name']))
|
|
|
|
return LSsession :: $ldapServer['name'];
|
|
|
|
else
|
|
|
|
return "#".LSsession :: $ldapServerId;
|
|
|
|
}
|
|
|
|
return "Not connected";
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Helper to retreive current authenticated user DN
|
|
|
|
*
|
|
|
|
* @retval string Current authenticated user DN
|
|
|
|
**/
|
|
|
|
private static function getAuthenticatedUserDN() {
|
|
|
|
$auth_dn = LSsession :: getLSuserObjectDn();
|
|
|
|
if ($auth_dn)
|
|
|
|
return LSsession :: getLSuserObjectDn();
|
|
|
|
return "Anonymous";
|
2019-06-28 18:00:37 +02:00
|
|
|
}
|
|
|
|
}
|