dbmsv2/app/Services/MyLogService.php
2025-09-01 13:54:20 +09:00

77 lines
2.0 KiB
PHP

<?php
namespace App\Services;
use App\Entities\MyLogEntity;
use App\Models\MyLogModel;
use App\Libraries\LogCollector;
use App\Services\UserService;
class MyLogService extends CommonService
{
private $_userService = null;
public function __construct()
{
parent::__construct(new MyLogModel());
$this->addClassName('MyLog');
}
public function getFormFields(): array
{
return [
"user_uid",
"title",
"content",
"status",
];
}
public function getFormFilters(): array
{
return [
'user_uid',
'status'
];
}
public function getBatchjobFields(): array
{
return ['status'];
}
public function getUserService(): UserService
{
if (!$this->_userService) {
$this->_userService = new UserService();
}
return $this->_userService;
}
//기본 기능부분
//FieldForm관련용
public function getFormOption(string $field, array $options = []): array
{
switch ($field) {
case 'user_uid':
$options = $this->getUserService()->getEntities();
break;
default:
$options = parent::getFormOption($field, $options);
break;
}
return $options;
}
public function save(string $class, string $method, string $title, int $user_uid): MyLogEntity
{
$formDatas = [
'user_uid' => $user_uid,
'title' => sprintf("%s->%s %s", $class, $method, $title),
'content' => LogCollector::dump(),
];
// dd($formDatas);
LogCollector::clear();
return $this->create($formDatas);
}
//List 검색용
public function index_condition_filterWord(string $word): void
{
$this->getModel()->orLike($this->getModel()::TABLE . "." . $this->getModel()::TITLE, $word, 'both');
$this->getModel()->orLike($this->getModel()::TABLE . '.content', $word, 'both');
}
}