TrackManiaControl/core/Logger.php

138 lines
3.2 KiB
PHP
Raw Normal View History

2014-06-17 22:15:35 +02:00
<?php
namespace ManiaControl;
2014-06-20 16:51:08 +02:00
use ManiaControl\Files\FileUtil;
use ManiaControl\General\UsageInformationAble;
use ManiaControl\General\UsageInformationTrait;
use ManiaControl\Utils\Formatter;
2014-06-20 16:51:08 +02:00
2014-06-17 22:15:35 +02:00
/**
* ManiaControl Logger Class
*
* @author ManiaControl Team <mail@maniacontrol.com>
2020-01-22 10:39:35 +01:00
* @copyright 2014-2020 ManiaControl Team
2014-06-17 22:15:35 +02:00
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
abstract class Logger implements UsageInformationAble {
use UsageInformationTrait;
2014-06-17 22:15:35 +02:00
/**
2014-08-05 02:00:18 +02:00
* Setup the logging mechanism
2014-06-17 22:15:35 +02:00
*/
public static function setup() {
self::setupErrorLogFileName();
2014-06-20 16:51:08 +02:00
self::cleanLogsFolder();
}
/**
2014-08-05 02:00:18 +02:00
* Set the error log file name
*/
2014-06-20 15:00:09 +02:00
private static function setupErrorLogFileName() {
2014-06-20 16:20:03 +02:00
$logsFolder = self::getLogsFolder();
if ($logsFolder) {
$logFileName = $logsFolder . 'ManiaControl';
2014-08-05 01:54:50 +02:00
if (!defined('LOG_NAME_USE_DATE') || LOG_NAME_USE_DATE) {
$logFileName .= '_' . date('Y-m-d');
}
2014-08-05 01:54:50 +02:00
if (!defined('LOG_NAME_USE_PID') || LOG_NAME_USE_PID) {
$logFileName .= '_' . getmypid();
}
$logFileName .= '.log';
ini_set('error_log', $logFileName);
2014-06-17 22:15:35 +02:00
}
}
/**
2014-08-05 02:00:18 +02:00
* Get the logs folder and create it if necessary
*
2014-08-05 02:00:18 +02:00
* @return string
*/
public static function getLogsFolder() {
$logsFolder = MANIACONTROL_PATH . 'logs' . DIRECTORY_SEPARATOR;
if (!is_dir($logsFolder) && !mkdir($logsFolder)) {
self::logError("Couldn't create the logs folder!");
2014-08-05 02:00:18 +02:00
return null;
2014-06-17 22:15:35 +02:00
}
if (!is_writeable($logsFolder)) {
self::logError("ManiaControl doesn't have the necessary write rights for the logs folder!");
2014-08-05 02:00:18 +02:00
return null;
2014-06-17 22:15:35 +02:00
}
return $logsFolder;
2014-06-17 22:15:35 +02:00
}
2014-06-17 22:37:34 +02:00
2014-06-20 16:51:08 +02:00
/**
2014-08-05 02:00:18 +02:00
* Delete old ManiaControl log files
2014-06-20 16:51:08 +02:00
*
* @return bool
*/
private static function cleanLogsFolder() {
$logsFolderPath = self::getLogsFolder();
return FileUtil::cleanDirectory($logsFolderPath);
}
2014-06-17 22:37:34 +02:00
/**
2014-08-05 02:00:18 +02:00
* Log and output the given Error message
2014-06-17 22:37:34 +02:00
*
* @param string $message
* @param bool $stripCodes
2014-08-05 02:00:18 +02:00
* @param bool $eol
2014-06-17 22:37:34 +02:00
*/
2014-08-05 02:00:18 +02:00
public static function logError($message, $stripCodes = false, $eol = true) {
2014-06-17 22:37:34 +02:00
$message = '[ERROR] ' . $message;
2014-08-05 02:00:18 +02:00
self::log($message, $stripCodes, $eol);
2014-06-17 22:37:34 +02:00
}
/**
2014-08-05 02:00:18 +02:00
* Log and output the given message
2014-06-17 22:37:34 +02:00
*
* @param string $message
* @param bool $stripCodes
2014-08-05 02:00:18 +02:00
* @param bool $eol
2014-06-17 22:37:34 +02:00
*/
2014-08-05 02:00:18 +02:00
public static function log($message, $stripCodes = false, $eol = true) {
if ($stripCodes) {
$message = Formatter::stripCodes($message);
}
2014-06-17 22:37:34 +02:00
error_log($message);
self::output($message, $eol);
2014-06-17 22:37:34 +02:00
}
/**
2014-08-05 02:00:18 +02:00
* Echo the given message
*
* @param string $message
* @param bool $eol
*/
private static function output($message, $eol = true) {
if ($eol) {
$message = '[' . date('d-M-Y H:i:s e') . '] ' . $message . PHP_EOL;
}
echo $message;
}
2014-06-20 10:56:15 +02:00
/**
2014-08-05 02:00:18 +02:00
* Log and output the given Info message
2014-06-20 10:56:15 +02:00
*
* @param string $message
* @param bool $stripCodes
2014-08-05 02:00:18 +02:00
* @param bool $eol
2014-06-20 10:56:15 +02:00
*/
2014-08-05 02:00:18 +02:00
public static function logInfo($message, $stripCodes = false, $eol = true) {
2014-06-20 10:56:15 +02:00
$message = '[INFO] ' . $message;
2014-08-05 02:00:18 +02:00
self::log($message, $stripCodes, $eol);
2014-06-20 10:56:15 +02:00
}
/**
2014-08-05 02:00:18 +02:00
* Log and output the given Warning message
2014-06-20 10:56:15 +02:00
*
* @param string $message
* @param bool $stripCodes
2014-08-05 02:00:18 +02:00
* @param bool $eol
2014-06-20 10:56:15 +02:00
*/
2014-08-05 02:00:18 +02:00
public static function logWarning($message, $stripCodes = false, $eol = true) {
2014-06-20 10:56:15 +02:00
$message = '[WARNING] ' . $message;
2014-08-05 02:00:18 +02:00
self::log($message, $stripCodes, $eol);
2014-06-20 10:56:15 +02:00
}
2014-06-17 22:15:35 +02:00
}