dbmsv4/app/Services/Part/CPUService.php
2025-11-24 11:11:53 +09:00

112 lines
3.6 KiB
PHP

<?php
namespace App\Services\Part;
use App\DTOs\Part\CPUDTO;
use App\Entities\Part\CPUEntity;
use App\Forms\Part\CPUForm;
use App\Helpers\Part\CPUHelper;
use App\Models\Part\CPUModel;
use RuntimeException;
class CPUService extends PartService
{
private $_form = null;
private $_helper = null;
public function __construct(CPUModel $model)
{
parent::__construct($model);
$this->addClassPaths('CPU');
}
protected function getDTOClass(): string
{
return CPUDTO::class;
}
public function createDTO(array $formDatas): CPUDTO
{
return new CPUDTO($formDatas);
}
public function getFormService(): CPUForm
{
if ($this->_form === null) {
$this->_form = new CPUForm();
$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(): CPUHelper
{
if ($this->_helper === null) {
$this->_helper = new CPUHelper();
$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, ?object $entity = null): void
{
$fields = [
"title",
"price",
"stock",
];
$filters = [
"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, 'status', 'created_at'];
break;
case 'index':
case 'download':
$fields = [...$fields, 'status', 'created_at'];
break;
}
$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): CPUEntity
{
return $entity;
}
protected function create_process(array $formDatas): CPUEntity
{
return new CPUEntity($formDatas);
}
protected function modify_process($uid, array $formDatas): CPUEntity
{
$entity = parent::modify_process($uid, $formDatas);
if (!$entity instanceof CPUEntity) {
throw new RuntimeException(__METHOD__ . "에서 오류발생:Return Type은 CPUEntity만 가능");
}
return $entity;
}
//List 검색용
//FormFilter 조건절 처리
//검색어조건절처리
}