96 lines
3.3 KiB
PHP
96 lines
3.3 KiB
PHP
<?php
|
|
|
|
namespace App\Services\Part;
|
|
|
|
use App\DTOs\Part\DISKDTO;
|
|
use App\Entities\Part\DISKEntity;
|
|
use App\Forms\Part\DISKForm;
|
|
use App\Helpers\Part\DISKHelper;
|
|
use App\Models\Part\DISKModel;
|
|
use RuntimeException;
|
|
|
|
class DISKService extends PartService
|
|
{
|
|
private $_form = null;
|
|
private $_helper = null;
|
|
public function __construct(DISKModel $model)
|
|
{
|
|
parent::__construct($model);
|
|
$this->addClassPaths('DISK');
|
|
}
|
|
public function createDTO(array $formDatas): DISKDTO
|
|
{
|
|
return new DISKDTO($formDatas);
|
|
}
|
|
public function getFormService(): DISKForm
|
|
{
|
|
if ($this->_form === null) {
|
|
$this->_form = new DISKForm();
|
|
$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(): DISKHelper
|
|
{
|
|
if ($this->_helper === null) {
|
|
$this->_helper = new DISKHelper();
|
|
$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): DISKEntity
|
|
{
|
|
return $entity;
|
|
}
|
|
protected function create_process(array $formDatas): DISKEntity
|
|
{
|
|
return new DISKEntity($formDatas);
|
|
}
|
|
public function create(object $dto): DISKEntity
|
|
{
|
|
if (!$dto instanceof DISKDTO) {
|
|
throw new RuntimeException(__METHOD__ . "에서 오류발생:" . get_class($dto) . "는 사용할수 없습니다.");
|
|
}
|
|
$entity = parent::create($dto);
|
|
if (!$entity instanceof DISKEntity) {
|
|
throw new RuntimeException(__METHOD__ . "에서 오류발생:Return Type은 DISKEntity만 가능");
|
|
}
|
|
return $entity;
|
|
}
|
|
protected function modify_process($uid, array $formDatas): DISKEntity
|
|
{
|
|
$entity = parent::modify_process($uid, $formDatas);
|
|
if (!$entity instanceof DISKEntity) {
|
|
throw new RuntimeException(__METHOD__ . "에서 오류발생:Return Type은 DISKEntity만 가능");
|
|
}
|
|
return $entity;
|
|
}
|
|
public function modify($uid, object $dto): DISKEntity
|
|
{
|
|
if (!$dto instanceof DISKDTO) {
|
|
throw new RuntimeException(__METHOD__ . "에서 오류발생:" . get_class($dto) . "는 사용할수 없습니다.");
|
|
}
|
|
$entity = parent::modify($uid, $dto);
|
|
if (!$entity instanceof DISKEntity) {
|
|
throw new RuntimeException(__METHOD__ . "에서 오류발생:Return Type은 DISKEntity만 가능");
|
|
}
|
|
return $entity;
|
|
}
|
|
//List 검색용
|
|
//FormFilter 조건절 처리
|
|
//검색어조건절처리
|
|
}
|