addClassPaths('CS'); } protected function getDTOClass(): string { return CSDTO::class; } public function createDTO(array $formDatas): CSDTO { return new CSDTO($formDatas); } public function getEntityClass(): string { return CSEntity::class; } public function getFormService(): CSForm { if ($this->_form === null) { $this->_form = new CSForm(); $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(): CSHelper { if ($this->_helper === null) { $this->_helper = new CSHelper(); $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, array $formDatas = []): void { $fields = [ "type", "ip", "accountid", "domain", "price", ]; $filters = [ "clientinfo_uid", 'serverinfo_uid', 'type', '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, "clientinfo_uid", 'serverinfo_uid', 'type', 'ip', 'accountid', 'domain', 'price', 'status', 'created_at' ]; break; case 'index': case 'download': $fields = [ ...$fields, "clientinfo_uid", 'serverinfo_uid', 'type', 'ip', 'accountid', 'domain', 'price', 'status', 'created_at' ]; break; } $this->getFormService()->setFormFields($fields); $this->getFormService()->setFormRules($action, $fields); $this->getFormService()->setFormFilters($filters); $this->getFormService()->setFormOptions($action, $filters, $formDatas); $this->getFormService()->setIndexFilters($indexFilter); $this->getFormService()->setBatchjobFilters($batchjobFilters); } //기본 기능부분 protected function getEntity_process(mixed $entity): CSEntity { return $entity; } protected function create_process(array $formDatas): CSEntity { $entity = parent::create_process($formDatas); if (!$entity instanceof CSEntity) { throw new RuntimeException(__METHOD__ . "에서 오류발생:Return Type은 CSEntity만 가능"); } return $entity; } protected function modify_process($uid, array $formDatas): CSEntity { $entity = parent::modify_process($uid, $formDatas); if (!$entity instanceof CSEntity) { throw new RuntimeException(__METHOD__ . "에서 오류발생:Return Type은 CSEntity만 가능"); } return $entity; } //List 검색용 //FormFilter 조건절 처리 //검색어조건절처리 //OrderBy 처리(INET_ATON() 함수를 사용) public function setOrderBy(mixed $field = null, mixed $value = null): void { $this->model->orderBy("INET_ATON(ip) ASC"); parent::setOrderBy($field, $value); } //서버파트관련 작업 public function attachToServerPart(ServerPartEntity $serverPartEntity): CSEntity { $formDatas = []; $formDatas['clientinfo_uid'] = $serverPartEntity->getClientInfoUID(); $formDatas['serviceinfo_uid'] = $serverPartEntity->getServiceInfoUID(); $formDatas['serverinfo_uid'] = $serverPartEntity->getServerInfoUID(); $formDatas['status'] = STATUS['OCCUPIED']; if (!array_key_exists('status', $formDatas)) { throw new \Exception(__METHOD__ . "에서 오류발생: CS상태가 설정되지 않았습니다."); } //CS정보가져오기 $entity = $this->getEntity($serverPartEntity->getPartUID()); if (!$entity instanceof CSEntity) { throw new \Exception(message: "{$serverPartEntity->getPartUID()}에 해당하는 CS정보를 찾을수없습니다."); } //CS정보에서 해당하는 CS가 있으면 가져와서 사용중인지 체크 후 수정 $entity = $this->getEntity($serverPartEntity->getPartUID()); if ($entity instanceof CSEntity) { if ($entity->getStatus() !== STATUS['AVAILABLE']) { throw new \Exception(__METHOD__ . ":에서 오류발생: {$serverPartEntity->getTitle()}는 사용중입니다."); } $entity = $this->model->modify($entity, $formDatas); } return $entity; } public function detachFromServerPart(ServerPartEntity $serverPartEntity): CSEntity { $formDatas = []; $formDatas['clientinfo_uid'] = null; $formDatas['serviceinfo_uid'] = null; $formDatas['serverinfo_uid'] = null; $formDatas['status'] = STATUS['AVAILABLE']; if (!array_key_exists('status', $formDatas)) { throw new \Exception(__METHOD__ . "에서 오류발생: CS상태가 설정되지 않았습니다."); } //CS정보가져오기 $entity = $this->getEntity($serverPartEntity->getPartUID()); if (!$entity instanceof CSEntity) { throw new \Exception("{$serverPartEntity->getPartUID()}에 해당하는 CS정보를 찾을수없습니다."); } //CS정보 수정 return $this->model->modify($entity, $formDatas); } }