32 lines
1000 B
PHP
32 lines
1000 B
PHP
<?php
|
|
|
|
namespace Core\Objects\DatabaseEntity;
|
|
|
|
use Core\API\Parameter\Parameter;
|
|
use Core\Driver\SQL\Expression\CurrentTimeStamp;
|
|
use Core\Objects\DatabaseEntity\Attribute\DefaultValue;
|
|
use Core\Objects\DatabaseEntity\Attribute\Enum;
|
|
use Core\Objects\DatabaseEntity\Attribute\MaxLength;
|
|
use Core\Objects\DatabaseEntity\Controller\DatabaseEntity;
|
|
|
|
class SystemLog extends DatabaseEntity {
|
|
|
|
#[DefaultValue(CurrentTimeStamp::class)] private \DateTime $timestamp;
|
|
private string $message;
|
|
#[MaxLength(64)] #[DefaultValue('global')] private string $module;
|
|
#[Enum('debug','info','warning','error','severe')] private string $severity;
|
|
|
|
public function __construct(?int $id = null) {
|
|
parent::__construct($id);
|
|
}
|
|
|
|
public function jsonSerialize(): array {
|
|
return [
|
|
"id" => $this->getId(),
|
|
"timestamp" => $this->timestamp->format(Parameter::DATE_TIME_FORMAT),
|
|
"message" => $this->message,
|
|
"module" => $this->module,
|
|
"severity" => $this->severity
|
|
];
|
|
}
|
|
} |