cfmgrv4/app/Models/MyLogModel.php
2025-03-13 13:08:35 +09:00

76 lines
2.0 KiB
PHP

<?php
namespace App\Models;
use App\Entities\MyLogEntity;
use App\Models\CommonModel;
class MyLogModel extends CommonModel
{
const TABLE = "logger";
const PK = "uid";
const TITLE = "title";
protected $table = self::TABLE;
protected $primaryKey = self::PK;
protected $returnType = MyLogEntity::class;
protected $allowedFields = [
"user_uid",
"class_name",
"method_name",
"title",
"content",
"created_at",
];
public function __construct()
{
parent::__construct();
}
public function getTitleField(): string
{
return self::TITLE;
}
public function getFields(): array
{
return ['user_uid', 'class_name', 'method_name', self::TITLE, 'user_uid', 'status', 'created_at'];
}
public function getFilterFields(): array
{
return ['user_uid'];
}
public function getBatchJobFields(): array
{
return [];
}
public function getFieldRule(string $action, string $field): string
{
if (is_array($field)) {
throw new \Exception(__FUNCTION__ . "=> field가 array 입니다.\n" . var_export($field, true));
}
switch ($field) {
case "user_uid":
$rule = "if_exist|numeric";
break;
default:
$rule = parent::getFieldRule($action, $field);
break;
}
return $rule;
}
public function getEntityByPK(string $uid): null|MyLogEntity
{
$this->where($this->getPKField(), intval($uid));
return $this->getEntity();
}
//create용
public function create(array $formDatas = []): MyLogEntity
{
return $this->create_process(new MyLogEntity(), $formDatas);
}
//List 검색용
public function setList_WordFilter(string $word): void
{
$this->orLike(self::TABLE . self::TITLE, $word, 'both');
$this->orLike(self::TABLE . '.content', $word, 'both');
}
}