dbmsv4/app/Services/Part/IPService.php
2025-11-25 11:52:10 +09:00

137 lines
4.4 KiB
PHP

<?php
namespace App\Services\Part;
use App\DTOs\Part\IPDTO;
use App\Entities\Part\IPEntity;
use App\Forms\Part\IPForm;
use App\Helpers\Part\IPHelper;
use App\Models\Part\IPModel;
use RuntimeException;
class IPService extends PartService
{
private $_form = null;
private $_helper = null;
public function __construct(IPModel $model)
{
parent::__construct($model);
$this->addClassPaths('IP');
}
protected function getDTOClass(): string
{
return IPDTO::class;
}
public function createDTO(array $formDatas): IPDTO
{
return new IPDTO($formDatas);
}
public function getFormService(): IPForm
{
if ($this->_form === null) {
$this->_form = new IPForm();
$this->_form->setAttributes([
'pk_field' => $this->model->getPKField(),
'title_field' => $this->model->getTitleField(),
'table' => $this->model->getTable(),
'useAutoIncrement' => $this->model->useAutoIncrement(),
'class_path' => $this->getClassPaths(false)
]);
}
return $this->_form;
}
public function getHelper(): IPHelper
{
if ($this->_helper === null) {
$this->_helper = new IPHelper();
$this->_helper->setAttributes([
'pk_field' => $this->model->getPKField(),
'title_field' => $this->model->getTitleField(),
'table' => $this->model->getTable(),
'useAutoIncrement' => $this->model->useAutoIncrement(),
'class_path' => $this->getClassPaths(false)
]);
}
return $this->_helper;
}
public function action_init_process(string $action, array $formDatas = [], ?object $entity = null): void
{
$fields = [
"lineinfo_uid",
"ip",
"price",
];
$filters = [
'old_clientinfo_uid',
'clientinfo_uid',
'serverinfo_uid',
"lineinfo_uid",
'status'
];
$indexFilter = $filters;
$batchjobFilters = ['status'];
switch ($action) {
case 'create':
case 'create_form':
case 'modify':
case 'modify_form':
$fields = [...$fields, 'status'];
break;
case 'view':
$fields = [
...$fields,
'clientinfo_uid',
'serverinfo_uid',
'old_clientinfo_uid',
'status',
'created_at'
];
break;
case 'index':
case 'download':
$fields = [
...$fields,
'clientinfo_uid',
'serverinfo_uid',
'old_clientinfo_uid',
'status',
'created_at'
];
break;
}
$this->getFormService()->setFormDatas($formDatas);
$this->getFormService()->setFormFields($fields);
$this->getFormService()->setFormRules($action, $fields);
$this->getFormService()->setFormFilters($filters);
$this->getFormService()->setFormOptions($action, $filters, $entity);
$this->getFormService()->setIndexFilters($indexFilter);
$this->getFormService()->setBatchjobFilters($batchjobFilters);
}
//기본 기능부분
protected function getEntity_process(mixed $entity): IPEntity
{
return $entity;
}
protected function create_process(array $formDatas): IPEntity
{
return new IPEntity($formDatas);
}
protected function modify_process($uid, array $formDatas): IPEntity
{
$entity = parent::modify_process($uid, $formDatas);
if (!$entity instanceof IPEntity) {
throw new RuntimeException(__METHOD__ . "에서 오류발생:Return Type은 IPEntity만 가능");
}
return $entity;
}
//List 검색용
//FormFilter 조건절 처리
//검색어조건절처리
//OrderBy 처리(INET_ATON() 함수를 사용)
public function setOrderBy(mixed $field = null, mixed $value = null): void
{
$this->model->orderBy("INET_ATON(ip) ASC");
parent::setOrderBy($field, $value);
}
}