131 lines
4.5 KiB
PHP
131 lines
4.5 KiB
PHP
<?php
|
|
|
|
namespace App\Services\Part;
|
|
|
|
use App\DTOs\Part\SOFTWAREDTO;
|
|
use App\Entities\Part\SOFTWAREEntity;
|
|
use App\Forms\Part\SOFTWAREForm;
|
|
use App\Helpers\Part\SOFTWAREHelper;
|
|
use App\Models\Part\SOFTWAREModel;
|
|
use RuntimeException;
|
|
|
|
class SOFTWAREService extends PartService
|
|
{
|
|
private $_form = null;
|
|
private $_helper = null;
|
|
public function __construct(SOFTWAREModel $model)
|
|
{
|
|
parent::__construct($model);
|
|
$this->addClassPaths('SOFTWARE');
|
|
}
|
|
public function createDTO(array $formDatas): SOFTWAREDTO
|
|
{
|
|
return new SOFTWAREDTO($formDatas);
|
|
}
|
|
public function getFormService(): SOFTWAREForm
|
|
{
|
|
if ($this->_form === null) {
|
|
$this->_form = new SOFTWAREForm();
|
|
$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 action_init_process(string $action): 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($filters);
|
|
$this->getFormService()->setIndexFilters($indexFilter);
|
|
$this->getFormService()->setBatchjobFilters($batchjobFilters);
|
|
parent::action_init_process($action);
|
|
}
|
|
public function getHelper(): SOFTWAREHelper
|
|
{
|
|
if ($this->_helper === null) {
|
|
$this->_helper = new SOFTWAREHelper();
|
|
$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;
|
|
}
|
|
//기본 기능부분
|
|
protected function getEntity_process(mixed $entity): SOFTWAREEntity
|
|
{
|
|
return $entity;
|
|
}
|
|
protected function create_process(array $formDatas): SOFTWAREEntity
|
|
{
|
|
return new SOFTWAREEntity($formDatas);
|
|
}
|
|
public function create(object $dto): SOFTWAREEntity
|
|
{
|
|
if (!$dto instanceof SOFTWAREDTO) {
|
|
throw new RuntimeException(__METHOD__ . "에서 오류발생:" . get_class($dto) . "는 사용할수 없습니다.");
|
|
}
|
|
$entity = parent::create($dto);
|
|
if (!$entity instanceof SOFTWAREEntity) {
|
|
throw new RuntimeException(__METHOD__ . "에서 오류발생:Return Type은 SOFTWAREEntity만 가능");
|
|
}
|
|
return $entity;
|
|
}
|
|
protected function modify_process($uid, array $formDatas): SOFTWAREEntity
|
|
{
|
|
$entity = parent::modify_process($uid, $formDatas);
|
|
if (!$entity instanceof SOFTWAREEntity) {
|
|
throw new RuntimeException(__METHOD__ . "에서 오류발생:Return Type은 SOFTWAREEntity만 가능");
|
|
}
|
|
return $entity;
|
|
}
|
|
public function modify($uid, object $dto): SOFTWAREEntity
|
|
{
|
|
if (!$dto instanceof SOFTWAREDTO) {
|
|
throw new RuntimeException(__METHOD__ . "에서 오류발생:" . get_class($dto) . "는 사용할수 없습니다.");
|
|
}
|
|
$entity = parent::modify($uid, $dto);
|
|
if (!$entity instanceof SOFTWAREEntity) {
|
|
throw new RuntimeException(__METHOD__ . "에서 오류발생:Return Type은 SOFTWAREEntity만 가능");
|
|
}
|
|
return $entity;
|
|
}
|
|
//List 검색용
|
|
//FormFilter 조건절 처리
|
|
//검색어조건절처리
|
|
}
|