Files
CodePress/cms/core/class/Logger.php
T
E.Noorlander 6333bc410f CMS 2.0 - Theme engine, logging, admin improvements
Major changes:
- New ThemeManager with Twig templating and SCSS compilation
- Dynamic themes system (themes/default, themes/demo)
- LogManager with SQLite storage and syslog forwarding
- RequestLogger with static helper methods
- Admin UI overhaul (Bootstrap 5, dark mode)
- Admin config page with logging and theme settings
- Admin logs page with filters and search
- Removed legacy Mustache templates
- Removed test plugin and theme
- Composer dependencies: Twig, scssphp, CommonMark, MaxMind GeoIP
2026-08-08 18:02:14 +02:00

201 lines
5.4 KiB
PHP

<?php
/**
* Simple Logger Class for CodePress CMS
*
* Provides structured logging with log levels and file output.
*
* @package CodePress
* @version 1.0.0
*/
class Logger {
const DEBUG = 'DEBUG';
const INFO = 'INFO';
const WARNING = 'WARNING';
const ERROR = 'ERROR';
private static $logFile = null;
private static $debugMode = false;
/**
* Initialize logger
*
* @param string $logFile Path to log file
* @param bool $debugMode Enable debug logging
*/
public static function init($logFile = null, $debugMode = false) {
if ($logFile === null) {
$logFile = __DIR__ . '/../../logs/codepress.log';
}
self::$logFile = $logFile;
self::$debugMode = $debugMode;
// Ensure log directory exists
$logDir = dirname(self::$logFile);
if (!is_dir($logDir)) {
@mkdir($logDir, 0755, true);
}
}
/**
* Log debug message (only in debug mode)
*
* @param string $message Message to log
* @param array $context Additional context
*/
public static function debug($message, $context = []) {
if (self::$debugMode) {
self::write(self::DEBUG, $message, $context);
}
}
/**
* Log info message
*
* @param string $message Message to log
* @param array $context Additional context
*/
public static function info($message, $context = []) {
self::write(self::INFO, $message, $context);
}
/**
* Log warning message
*
* @param string $message Message to log
* @param array $context Additional context
*/
public static function warning($message, $context = []) {
self::write(self::WARNING, $message, $context);
}
/**
* Log error message
*
* @param string $message Message to log
* @param array $context Additional context
*/
public static function error($message, $context = []) {
self::write(self::ERROR, $message, $context);
}
/**
* Write log entry to file
*
* @param string $level Log level
* @param string $message Message to log
* @param array $context Additional context
*/
private static function write($level, $message, $context = []) {
if (self::$logFile === null) {
self::init();
}
$timestamp = date('Y-m-d H:i:s');
$contextStr = !empty($context) ? ' ' . json_encode($context) : '';
$line = "[$timestamp] [$level] $message$contextStr\n";
// Write to file with error suppression (graceful degradation)
@file_put_contents(self::$logFile, $line, FILE_APPEND | LOCK_EX);
// Route through the dynamic log manager (errors/system events)
if (class_exists('LogManager')) {
$event = ($level === self::ERROR || $level === self::WARNING)
? LogManager::EVENT_ERRORS
: LogManager::EVENT_SYSTEM;
LogManager::log($event, strtolower($level), $message, $context);
}
}
/**
* Get log file path
*
* @return string Log file path
*/
public static function getLogFile() {
return self::$logFile;
}
/**
* Clear log file
*
* @return bool Success status
*/
public static function clear() {
if (self::$logFile && file_exists(self::$logFile)) {
return @unlink(self::$logFile);
}
return false;
}
/**
* Get last N lines from log file
*
* Reads the file backwards in chunks so large log files never have to be
* loaded into memory in their entirety.
*
* @param int $lines Number of lines to retrieve
* @return array Log lines (including trailing newlines, oldest first)
*/
public static function tail($lines = 100) {
if (!self::$logFile || !file_exists(self::$logFile)) {
return [];
}
$lines = max(1, (int)$lines);
$handle = @fopen(self::$logFile, 'rb');
if ($handle === false) {
return [];
}
if (fseek($handle, 0, SEEK_END) !== 0) {
fclose($handle);
return [];
}
$fileSize = ftell($handle);
if ($fileSize === false || $fileSize === 0) {
fclose($handle);
return [];
}
$chunkSize = 8192;
$position = $fileSize;
$buffer = '';
$newlineCount = 0;
// Read backwards until we have enough newlines or reach the start
while ($position > 0 && $newlineCount <= $lines) {
$readSize = (int)min($chunkSize, $position);
$position -= $readSize;
if (fseek($handle, $position, SEEK_SET) !== 0) {
break;
}
$chunk = fread($handle, $readSize);
if ($chunk === false) {
break;
}
$buffer = $chunk . $buffer;
$newlineCount = substr_count($buffer, "\n");
}
fclose($handle);
if ($buffer === '') {
return [];
}
// Split while keeping the newline characters, matching file() behaviour
$result = preg_split('/(?<=\n)/', $buffer, -1, PREG_SPLIT_NO_EMPTY);
if ($result === false) {
return [];
}
return array_slice($result, -$lines);
}
}