mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
89 lines
2.0 KiB
PHP
89 lines
2.0 KiB
PHP
<?php namespace System\Models;
|
|
|
|
use App;
|
|
use Str;
|
|
use October\Rain\Database\Model;
|
|
use Exception;
|
|
|
|
/**
|
|
* Model for logging system errors and debug trace messages
|
|
*
|
|
* @package october\system
|
|
* @author Alexey Bobkov, Samuel Georges
|
|
*/
|
|
class EventLog extends Model
|
|
{
|
|
/**
|
|
* @var string The database table used by the model.
|
|
*/
|
|
protected $table = 'system_event_logs';
|
|
|
|
/**
|
|
* @var array List of attribute names which are json encoded and decoded from the database.
|
|
*/
|
|
protected $jsonable = ['details'];
|
|
|
|
/**
|
|
* Returns true if this logger should be used.
|
|
* @return bool
|
|
*/
|
|
public static function useLogging()
|
|
{
|
|
return (
|
|
class_exists('Model') &&
|
|
Model::getConnectionResolver() &&
|
|
App::hasDatabase() &&
|
|
!defined('OCTOBER_NO_EVENT_LOGGING')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Creates a log record
|
|
* @param string $message Specifies the message text
|
|
* @param string $level Specifies the logging level
|
|
* @param string $details Specifies the error details string
|
|
* @return self
|
|
*/
|
|
public static function add($message, $level = 'info', $details = null)
|
|
{
|
|
$record = new static;
|
|
$record->message = $message;
|
|
$record->level = $level;
|
|
|
|
if ($details !== null) {
|
|
$record->details = (array) $details;
|
|
}
|
|
|
|
try {
|
|
$record->save();
|
|
}
|
|
catch (Exception $ex) {}
|
|
|
|
return $record;
|
|
}
|
|
|
|
/**
|
|
* Beautify level value.
|
|
* @param string $level
|
|
* @return string
|
|
*/
|
|
public function getLevelAttribute($level)
|
|
{
|
|
return ucfirst($level);
|
|
}
|
|
|
|
/**
|
|
* Creates a shorter version of the message attribute,
|
|
* extracts the exception message or limits by 100 characters.
|
|
* @return string
|
|
*/
|
|
public function getSummaryAttribute()
|
|
{
|
|
if (preg_match("/with message '(.+)' in/", $this->message, $match)) {
|
|
return $match[1];
|
|
}
|
|
|
|
return Str::limit($this->message, 100);
|
|
}
|
|
}
|