187 lines
3.7 KiB
PHP
187 lines
3.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* This file is part of the Froxlor project.
|
|
* Copyright (c) 2003-2009 the SysCP Team (see authors).
|
|
* Copyright (c) 2010 the Froxlor Team (see authors).
|
|
*
|
|
* For the full copyright and license information, please view the COPYING
|
|
* file that was distributed with this source code. You can also view the
|
|
* COPYING file online at http://files.froxlor.org/misc/COPYING.txt
|
|
*
|
|
* @copyright (c) the authors
|
|
* @author Michael Kaufmann <mkaufmann@nutime.de>
|
|
* @author Froxlor team <team@froxlor.org> (2010-)
|
|
* @license GPLv2 http://files.froxlor.org/misc/COPYING.txt
|
|
* @package Logger
|
|
*
|
|
* @link http://www.nutime.de/
|
|
*
|
|
* Logger - File-Logger-Class
|
|
*/
|
|
|
|
class FileLogger extends AbstractLogger {
|
|
|
|
/**
|
|
* Userinfo
|
|
* @var array
|
|
*/
|
|
private $userinfo = array();
|
|
|
|
/**
|
|
* Logfile
|
|
* @var logfile
|
|
*/
|
|
private $logfile = null;
|
|
|
|
/**
|
|
* Syslogger Objects Array
|
|
* @var loggers
|
|
*/
|
|
static private $loggers = array();
|
|
|
|
/**
|
|
* Class constructor.
|
|
*
|
|
* @param array userinfo
|
|
*/
|
|
protected function __construct($userinfo) {
|
|
parent::setupLogger();
|
|
$this->userinfo = $userinfo;
|
|
$this->setLogFile(Settings::Get('logger.logfile'));
|
|
}
|
|
|
|
/**
|
|
* Singleton ftw ;-)
|
|
*/
|
|
static public function getInstanceOf($_usernfo) {
|
|
if (!isset(self::$loggers[$_usernfo['loginname']])) {
|
|
self::$loggers[$_usernfo['loginname']] = new FileLogger($_usernfo);
|
|
}
|
|
return self::$loggers[$_usernfo['loginname']];
|
|
}
|
|
|
|
/**
|
|
* logs a given text to all enabled logger-facilities
|
|
*
|
|
* @param int $action
|
|
* @param int $type
|
|
* @param string $text
|
|
*/
|
|
public function logAction($action = USR_ACTION, $type = LOG_NOTICE, $text = null) {
|
|
global $lng;
|
|
|
|
if (parent::isEnabled()) {
|
|
|
|
if (parent::getSeverity() <= 1
|
|
&& $type == LOG_NOTICE
|
|
) {
|
|
return;
|
|
}
|
|
|
|
$_action = 'unknown';
|
|
|
|
switch($action)
|
|
{
|
|
case USR_ACTION:
|
|
$_action = $lng['admin']['customer'];
|
|
break;
|
|
case RES_ACTION:
|
|
$_action = $lng['logger']['reseller'];
|
|
break;
|
|
case ADM_ACTION:
|
|
$_action = $lng['logger']['admin'];
|
|
break;
|
|
case CRON_ACTION:
|
|
$_action = $lng['logger']['cron'];
|
|
break;
|
|
case LOGIN_ACTION:
|
|
$_action = $lng['logger']['login'];
|
|
break;
|
|
case LOG_ERROR:
|
|
$_action = $lng['logger']['intern'];
|
|
break;
|
|
default:
|
|
$_action = $lng['logger']['unknown'];
|
|
break;
|
|
}
|
|
|
|
$_type = 'unknown';
|
|
|
|
switch($type)
|
|
{
|
|
case LOG_INFO:
|
|
$_type = 'information';
|
|
break;
|
|
case LOG_NOTICE:
|
|
$_type = 'notice';
|
|
break;
|
|
case LOG_WARNING:
|
|
$_type = 'warning';
|
|
break;
|
|
case LOG_ERR:
|
|
$_type = 'error';
|
|
break;
|
|
case LOG_CRIT:
|
|
$_type = 'critical';
|
|
break;
|
|
default:
|
|
$_type = 'unknown';
|
|
break;
|
|
}
|
|
|
|
if(!isset($this->userinfo['loginname'])
|
|
|| $this->userinfo['loginname'] == '')
|
|
{
|
|
$name = 'unknown';
|
|
}
|
|
else
|
|
{
|
|
$name = $this->userinfo['loginname'];
|
|
}
|
|
|
|
$fp = @fopen($this->logfile, 'a');
|
|
|
|
if($fp !== false)
|
|
{
|
|
$now = time();
|
|
|
|
if($text != null
|
|
&& $text != '')
|
|
{
|
|
fwrite($fp, date("d.m.Y H:i:s", $now) . " [" . $_type . "] [" . $_action . "-action " . $name . "] " . $text . "\n");
|
|
}
|
|
else
|
|
{
|
|
fwrite($fp, date("d.m.Y H:i:s", $now) . " [" . $_type . "] [" . $_action . "-action " . $name . "] No text given!!! Check scripts!\n");
|
|
}
|
|
|
|
fclose($fp);
|
|
}
|
|
else
|
|
{
|
|
if($this->logfile != null
|
|
|| $this->logfile != '')
|
|
{
|
|
throw new Exception("Cannot open logfile '" . $this->logfile . "' for writing!");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public function setLogFile($filename = null)
|
|
{
|
|
if($filename != null
|
|
&& $filename != ''
|
|
&& $filename != "."
|
|
&& $filename != ".."
|
|
&& !is_dir($filename))
|
|
{
|
|
$this->logfile = $filename;
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|