- Rename all controllers from X.php to XController.php format - Add new RefTxtModel for text-based reference ranges - Rename group_dialog.php to grp_dialog.php and remove title_dialog.php - Add comprehensive test suite for v2/master/TestDef module - Update Routes.php to reflect controller renames - Remove obsolete data files (clqms_v2.sql, lab.dbml)
73 lines
2.4 KiB
PHP
73 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace App\Controllers\Specimen;
|
|
|
|
use CodeIgniter\API\ResponseTrait;
|
|
use App\Controllers\BaseController;
|
|
use App\Models\Specimen\ContainerDefModel;
|
|
|
|
class ContainerDefController extends BaseController {
|
|
use ResponseTrait;
|
|
|
|
protected $db;
|
|
protected $model;
|
|
protected $rules;
|
|
|
|
public function __construct() {
|
|
$this->db = \Config\Database::connect();
|
|
$this->model = new ContainerDefModel();
|
|
$this->rules = [
|
|
'ConCode' => 'required|max_length[50]',
|
|
'ConName' => 'required|max_length[50]'
|
|
];
|
|
}
|
|
|
|
public function index() {
|
|
try {
|
|
$filter = [
|
|
'ConCode' => $this->request->getVar('ConCode'),
|
|
'ConName' => $this->request->getVar('ConName')
|
|
];
|
|
$rows = $this->model->getContainers($filter);
|
|
return $this->respond([ 'status' => 'success', 'message'=> "data fetched successfully", 'data' => $rows ], 200);
|
|
} catch (\Exception $e) {
|
|
return $this->failServerError('Exception : '.$e->getMessage());
|
|
}
|
|
}
|
|
|
|
public function show($ConDefID) {
|
|
try {
|
|
$row = $this->model->getContainer($ConDefID);
|
|
if (empty($row)) {
|
|
return $this->respond([ 'status' => 'success', 'message'=> "data not found", 'data' => null ], 200);
|
|
}
|
|
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 {
|
|
$ConDefID = $this->model->insert($input);
|
|
return $this->respondCreated([ 'status' => 'success', 'message' => "data $ConDefID created successfully" ]);
|
|
} catch (\Exception $e) {
|
|
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
}
|
|
}
|
|
|
|
public function update() {
|
|
$input = $this->request->getJSON(true);
|
|
if (!$this->validateData($input, $this->rules)) { return $this->failValidationErrors($this->validator->getErrors()); }
|
|
try {
|
|
$ConDefID = $this->model->update($input['ConDefID'], $input);
|
|
return $this->respondCreated([ 'status' => 'success', 'message' => "data $ConDefID updated successfully" ]);
|
|
} catch (\Exception $e) {
|
|
return $this->failServerError('Something went wrong: ' . $e->getMessage());
|
|
}
|
|
}
|
|
|
|
}
|