102 lines
3.6 KiB
PHP
102 lines
3.6 KiB
PHP
<?php
|
|
|
|
namespace App\Services\Customer;
|
|
|
|
use App\DTOs\Customer\AccountDTO;
|
|
use App\Entities\Customer\AccountEntity;
|
|
use App\Forms\Customer\AccountForm;
|
|
use App\Helpers\Customer\AccountHelper;
|
|
use App\Models\Customer\AccountModel;
|
|
use App\Services\CommonService;
|
|
use RuntimeException;
|
|
|
|
class AccountService extends CommonService
|
|
{
|
|
private $_form = null;
|
|
private $_helper = null;
|
|
public function __construct(AccountModel $model)
|
|
{
|
|
parent::__construct($model);
|
|
$this->addClassPaths('Account');
|
|
}
|
|
public function createDTO(array $formDatas): AccountDTO
|
|
{
|
|
return new AccountDTO($formDatas);
|
|
}
|
|
public function getFormService(): AccountForm
|
|
{
|
|
if ($this->_form === null) {
|
|
$this->_form = new AccountForm();
|
|
$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(): AccountHelper
|
|
{
|
|
if ($this->_helper === null) {
|
|
$this->_helper = new AccountHelper();
|
|
$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): AccountEntity
|
|
{
|
|
return $entity;
|
|
}
|
|
protected function create_process(array $formDatas): AccountEntity
|
|
{
|
|
return new AccountEntity($formDatas);
|
|
}
|
|
public function create(object $dto): AccountEntity
|
|
{
|
|
if (!$dto instanceof AccountDTO) {
|
|
throw new RuntimeException(__METHOD__ . "에서 오류발생:" . get_class($dto) . "는 사용할수 없습니다.");
|
|
}
|
|
$entity = parent::create($dto);
|
|
if (!$entity instanceof AccountEntity) {
|
|
throw new \RuntimeException(__METHOD__ . "에서 오류발생:Return Type은 AccountEntity만 가능");
|
|
}
|
|
return $entity;
|
|
}
|
|
protected function modify_process($uid, array $formDatas): AccountEntity
|
|
{
|
|
$entity = parent::modify_process($uid, $formDatas);
|
|
if (!$entity instanceof AccountEntity) {
|
|
throw new \RuntimeException(__METHOD__ . "에서 오류발생:Return Type은 AccountEntity만 가능");
|
|
}
|
|
return $entity;
|
|
}
|
|
public function modify($uid, object $dto): AccountEntity
|
|
{
|
|
if (!$dto instanceof AccountDTO) {
|
|
throw new RuntimeException(__METHOD__ . "에서 오류발생:" . get_class($dto) . "는 사용할수 없습니다.");
|
|
}
|
|
$entity = parent::modify($uid, $dto);
|
|
if (!$entity instanceof AccountEntity) {
|
|
throw new \RuntimeException(__METHOD__ . "에서 오류발생:Return Type은 AccountEntity만 가능");
|
|
}
|
|
return $entity;
|
|
}
|
|
//List 검색용
|
|
//FormFilter 조건절 처리
|
|
//검색어조건절처리
|
|
public function setSearchWord(string $word): void
|
|
{
|
|
$this->model->orLike($this->model->getTable() . '.alias', $word, 'both');
|
|
parent::setSearchWord($word);
|
|
}
|
|
}
|