db = \Config\Database::connect(); $this->model = new SpecimenStatusModel(); $this->rules = []; } public function index() { try { $rows = $this->model->findAll(); $rows = ValueSet::transformLabels($rows, [ 'Status' => 'specimen_status', 'Activity' => 'specimen_activity', ]); return $this->respond([ 'status' => 'success', 'message'=> "data fetched successfully", 'data' => $rows ], 200); } catch (\Exception $e) { return $this->failServerError('Exception : '.$e->getMessage()); } } public function show($id) { try { $row = $this->model->where('SpcStaID', $id)->first(); if (empty($row)) { return $this->respond([ 'status' => 'success', 'message'=> "data not found", 'data' => null ], 200); } $row = ValueSet::transformLabels([$row], [ 'Status' => 'specimen_status', 'Activity' => 'specimen_activity', ])[0]; return $this->respond([ 'status' => 'success', 'message'=> "data fetched successfully", 'data' => $row ], 200); } catch (\Exception $e) { return $this->failServerError('Exception : '.$e->getMessage()); } } public function create() { $input = $this->request->getJSON(true); if (!$this->validateData($input, $this->rules)) { return $this->failValidationErrors($this->validator->getErrors()); } try { $id = $this->model->insert($input); return $this->respondCreated([ 'status' => 'success', 'message' => "data $id created successfully" ]); } catch (\Exception $e) { return $this->failServerError('Something went wrong: ' . $e->getMessage()); } } public function update($SpcStaID = null) { $input = $this->request->getJSON(true); if (!$SpcStaID || !ctype_digit((string) $SpcStaID)) { return $this->failValidationErrors('SpcStaID is required.'); } $input['SpcStaID'] = (int) $SpcStaID; if (!$this->validateData($input, $this->rules)) { return $this->failValidationErrors($this->validator->getErrors()); } try { $id = $this->model->update($input['SpcStaID'], $input); return $this->respondCreated([ 'status' => 'success', 'message' => "data $id updated successfully" ]); } catch (\Exception $e) { return $this->failServerError('Something went wrong: ' . $e->getMessage()); } } }