title = lang("{$this->getService()->class_path}.title"); $this->helper = new UserHelper(); } protected function getModel(): UserModel { if ($this->_model === null) { $this->_model = new UserModel(); } return $this->_model; } protected function getService(): UserService { if ($this->service === null) { $this->service = new UserService(); } return $this->service; } protected function setValidationRule($field, Validation $validation, string $action): Validation { switch ($field) { case 'role': //아래 Rule Array는 필드명.* checkbox를 사용 $validation->setRule($field . ".*", $field, $this->getModel()->getFieldRule($action, $field)); break; default: $validation = parent::setValidationRule($field, $validation, $action); break; } return $validation; } protected function getFormData(string $field, array $formDatas): array { switch ($field) { case 'role': $roles = $this->request->getVar($field) ?? []; if (!count($roles)) { throw new \Exception("권한이 지정되지 않았습니다."); } $formDatas[$field] = implode(DEFAULTS["DELIMITER_ROLE"], $roles); break; case 'passwd': //데이터가 있을때면 formData에 넣어줌 : 수정시에는 않넣을수도 있어야하므로 $passwd = $this->request->getVar($field); if ($passwd) { $formDatas[$field] = $passwd; } break; case 'confirmpassword': $confirmpassword = $this->request->getVar($field); if ($confirmpassword) { $formDatas[$field] = $confirmpassword; } break; default: $formDatas = parent::getFormData($field, $formDatas); break; } return $formDatas; } private function init(string $action, array $fields = []): void { $this->action = $action; $this->fields = count($fields) ? $fields : ['id', $this->getModel()::TITLE, 'email', 'mobile', 'role', 'updated_at', 'created_at']; $this->field_rules = $this->getModel()->getFieldRules($action, $this->fields); $this->filter_fields = ['role', 'status']; $this->field_options = $this->getFormFieldOptions($this->filter_fields); $this->batchjob_fields = ['status']; } //생성 public function create_form(): RedirectResponse|string { $this->init('create', ['id', 'passwd', 'confirmpassword', $this->getModel()::TITLE, 'email', 'mobile', 'role']); return $this->create_form_procedure(); } public function create(): RedirectResponse|string { $this->init(__FUNCTION__, ['id', 'passwd', 'confirmpassword', $this->getModel()::TITLE, 'email', 'mobile', 'role']); return $this->create_procedure(); } //수정 public function modify_form(int $uid): RedirectResponse|string { $this->init('modify', ['passwd', 'confirmpassword', $this->getModel()::TITLE, 'email', 'mobile', 'role']); return $this->modify_form_procedure($uid); } public function modify(int $uid): RedirectResponse|string { $this->init(__FUNCTION__, ['passwd', 'confirmpassword', $this->getModel()::TITLE, 'email', 'mobile', 'role']); return $this->modify_procedure($uid); } //일괄작업 public function batcjob(): RedirectResponse { $this->init(__FUNCTION__); return $this->batcjob_procedure(); } //View public function view(int $uid): RedirectResponse|string { $this->init(__FUNCTION__); return $this->view_procedure($uid); } // 리스트 public function index(): string { $this->init(__FUNCTION__); return $this->list_procedure(); } // Download public function download(string $output_type, mixed $uid = false): DownloadResponse|string { $this->init(__FUNCTION__); return $this->download_procedure($output_type, $uid); } }