dbms/app/Services/MyLogService.php
2025-05-06 10:26:18 +09:00

43 lines
1.1 KiB
PHP

<?php
namespace App\Services;
use App\Entities\MyLogEntity;
use App\Models\MyLogModel;
use App\Services\Auth\AuthService;
use CodeIgniter\HTTP\IncomingRequest;
use App\Libraries\LogCollector;
class MyLogService extends CommonService
{
public function __construct(?IncomingRequest $request = null)
{
parent::__construct($request);
}
final public function getClassName(): string
{
return "MyLog";
}
public function getModelClass(): MyLogModel
{
return new MyLogModel();
}
public function getEntityClass(): MyLogEntity
{
return new MyLogEntity();
}
public function save($service, string $method, AuthService $myauth, string $title): MyLogEntity
{
$formDatas = [
'user_uid' => $myauth->getUIDByAuthInfo(),
'class_name' => $service->getClassName(),
'method_name' => $method,
'title' => $title,
'content' => LogCollector::dump(),
];
LogCollector::clear();
return $this->getModel()->create($formDatas, new MyLogEntity());
}
}