158 lines
5.3 KiB
PHP
158 lines
5.3 KiB
PHP
<?php
|
|
|
|
namespace App\Services\Customer;
|
|
|
|
use App\DTOs\Customer\ClientDTO;
|
|
use App\Entities\Customer\ClientEntity;
|
|
use App\Forms\Customer\ClientForm;
|
|
use App\Helpers\Customer\ClientHelper;
|
|
use App\Models\Customer\ClientModel;
|
|
use RuntimeException;
|
|
|
|
class ClientService extends CustomerService
|
|
{
|
|
private $_form = null;
|
|
private $_helper = null;
|
|
public function __construct(ClientModel $model)
|
|
{
|
|
parent::__construct($model);
|
|
$this->addClassPaths('Client');
|
|
}
|
|
public function createDTO(array $formDatas): ClientDTO
|
|
{
|
|
return new ClientDTO($formDatas);
|
|
}
|
|
public function getFormService(): ClientForm
|
|
{
|
|
if ($this->_form === null) {
|
|
$this->_form = new ClientForm();
|
|
$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(): ClientHelper
|
|
{
|
|
if ($this->_helper === null) {
|
|
$this->_helper = new ClientHelper();
|
|
$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): void
|
|
{
|
|
$fields = [
|
|
'site',
|
|
'name',
|
|
'email',
|
|
'phone',
|
|
'role',
|
|
];
|
|
$filters = [
|
|
'site',
|
|
'role',
|
|
'status',
|
|
];
|
|
$indexFilter = $filters;
|
|
$batchjobFilters = ['site', 'role', 'status'];
|
|
switch ($action) {
|
|
case 'create':
|
|
case 'create_form':
|
|
break;
|
|
case 'modify':
|
|
case 'modify_form':
|
|
$fields = [...$fields, 'status'];
|
|
break;
|
|
case 'view':
|
|
$fields = [...$fields, 'status', 'created_at'];
|
|
break;
|
|
case 'index':
|
|
case 'download':
|
|
$fields = [
|
|
'site',
|
|
'name',
|
|
'email',
|
|
'phone',
|
|
'role',
|
|
'account_balance',
|
|
'coupon_balance',
|
|
'point_balance',
|
|
'status',
|
|
'created_at',
|
|
'updated_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);
|
|
}
|
|
//기본 기능부분
|
|
protected function getEntity_process(mixed $entity): ClientEntity
|
|
{
|
|
return $entity;
|
|
}
|
|
protected function create_process(array $formDatas): ClientEntity
|
|
{
|
|
return new ClientEntity($formDatas);
|
|
}
|
|
public function create(object $dto): ClientEntity
|
|
{
|
|
if (!$dto instanceof ClientDTO) {
|
|
throw new RuntimeException(__METHOD__ . "에서 오류발생:" . get_class($dto) . "는 사용할수 없습니다.");
|
|
}
|
|
$entity = parent::create($dto);
|
|
if (!$entity instanceof ClientEntity) {
|
|
throw new RuntimeException(__METHOD__ . "에서 오류발생:Return Type은 ClientEntity만 가능");
|
|
}
|
|
return $entity;
|
|
}
|
|
protected function modify_process($uid, array $formDatas): ClientEntity
|
|
{
|
|
$entity = parent::modify_process($uid, $formDatas);
|
|
if (!$entity instanceof ClientEntity) {
|
|
throw new RuntimeException(__METHOD__ . "에서 오류발생:Return Type은 ClientEntity만 가능");
|
|
}
|
|
return $entity;
|
|
}
|
|
public function modify($uid, object $dto): ClientEntity
|
|
{
|
|
if (!$dto instanceof ClientDTO) {
|
|
throw new RuntimeException(__METHOD__ . "에서 오류발생:" . get_class($dto) . "는 사용할수 없습니다.");
|
|
}
|
|
$entity = parent::modify($uid, $dto);
|
|
if (!$entity instanceof ClientEntity) {
|
|
throw new RuntimeException(__METHOD__ . "에서 오류발생:Return Type은 ClientEntity만 가능");
|
|
}
|
|
return $entity;
|
|
}
|
|
//List 검색용
|
|
//FormFilter 조건절 처리
|
|
//검색어조건절처리
|
|
public function setSearchWord(string $word): void
|
|
{
|
|
$this->model->orLike($this->model->getTable() . '.alias', $word, 'both');
|
|
parent::setSearchWord($word);
|
|
}
|
|
//OrderBy 처리
|
|
public function setOrderBy(mixed $field = null, mixed $value = null): void
|
|
{
|
|
$this->model->orderBy("site ASC,name ASC");
|
|
parent::setOrderBy($field, $value);
|
|
}
|
|
}
|