Files
BE_CPONE/application/controllers/tools/Wynacom.php
2026-06-18 11:40:44 +07:00

492 lines
20 KiB
PHP

<?php
defined('BASEPATH') or exit('No direct script access allowed');
class Wynacom extends MY_Controller
{
var $db;
var $load;
public function __construct()
{
parent::__construct();
$this->db = $this->load->database("default", true);
}
public function index()
{
$this->sys_ok(array(
"message" => "Wynacom tools API",
"endpoints" => array(
"POST /tools/wynacom/sampling_timestamp",
"POST /tools/wynacom/nonlab",
"POST /tools/wynacom/lab",
"POST /tools/wynacom/sampling",
"POST /tools/wynacom/generate_token",
"POST /tools/wynacom/check_token"
)
));
exit;
}
public function sampling()
{
try {
$order = $this->require_order_header();
$lab_number = $order["T_OrderHeaderLabNumber"];
$this->sys_ok(array(
"T_OrderHeaderID" => $order["T_OrderHeaderID"],
"T_OrderHeaderLabNumber" => $lab_number,
"nonlab" => $this->get_nonlab_timestamp($lab_number),
"lab" => $this->get_lab_timestamp($lab_number)
));
exit;
} catch (Exception $exc) {
$this->sys_error($exc->getMessage());
exit;
}
}
public function nonlab()
{
try {
$order = $this->require_order_header();
$lab_number = $order["T_OrderHeaderLabNumber"];
$this->sys_ok(array(
"T_OrderHeaderID" => $order["T_OrderHeaderID"],
"T_OrderHeaderLabNumber" => $lab_number,
"records" => $this->get_nonlab_timestamp($lab_number)
));
exit;
} catch (Exception $exc) {
$this->sys_error($exc->getMessage());
exit;
}
}
public function lab()
{
try {
$order = $this->require_order_header();
$lab_number = $order["T_OrderHeaderLabNumber"];
$this->sys_ok(array(
"T_OrderHeaderID" => $order["T_OrderHeaderID"],
"T_OrderHeaderLabNumber" => $lab_number,
"records" => $this->get_lab_timestamp($lab_number)
));
exit;
} catch (Exception $exc) {
$this->sys_error($exc->getMessage());
exit;
}
}
public function generate_token()
{
try {
$access_token = $this->create_access_token();
$expired_at = date("Y-m-d H:i:s", strtotime("+3 days"));
$sql = "INSERT INTO api_wynacom_token (
Api_WynacomTokenAccessToken,
Api_WynacomTokenExpiredAt,
Api_WynacomTokenCreated,
Api_WynacomTokenCreatedUserID,
Api_WynacomTokenLastUpdated,
Api_WynacomTokenLastUpdatedUserID
) VALUES (?, ?, NOW(), 0, NOW(), 0)";
$qry = $this->db->query($sql, array(
$access_token,
$expired_at
));
if (!$qry) {
$this->sys_error_db("Gagal generate token Wynacom", $this->db);
exit;
}
$this->sys_ok(array(
"access_token" => $access_token,
"token_type" => "Bearer",
"expired_at" => $expired_at,
"expires_in" => 259200
));
exit;
} catch (Exception $exc) {
$this->sys_error($exc->getMessage());
exit;
}
}
public function check_token()
{
try {
$credential = $this->validate_wynacom_token($this->get_access_token_param());
$this->sys_ok(array(
"valid" => true,
"token_id" => $credential["Api_WynacomTokenID"],
"expired_at" => $credential["Api_WynacomTokenExpiredAt"]
));
exit;
} catch (Exception $exc) {
$this->sys_error($exc->getMessage());
exit;
}
}
public function sampling_timestamp()
{
try {
$order = $this->require_order_header();
$lab_number = $order["T_OrderHeaderLabNumber"];
$this->sys_ok($this->union_sampling_timestamp($lab_number));
exit;
} catch (Exception $exc) {
$this->sys_error($exc->getMessage());
exit;
}
}
private function require_order_header()
{
$lab_number = $this->get_lab_number_param();
if ($lab_number === "") {
throw new Exception("Parameter T_OrderHeaderLabNumber wajib diisi");
}
$order = $this->get_order_header($lab_number);
if (!$order) {
throw new Exception("Order tidak ditemukan: " . $lab_number);
}
return $order;
}
private function get_lab_number_param()
{
$prm = is_array($this->sys_input) ? $this->sys_input : array();
if (isset($prm["T_OrderHeaderLabNumber"])) {
return trim($prm["T_OrderHeaderLabNumber"]);
}
if (isset($prm["orderNumber"])) {
return trim($prm["orderNumber"]);
}
if (isset($prm["nolab"])) {
return trim($prm["nolab"]);
}
return "";
}
private function get_access_token_param()
{
$headers = function_exists("getallheaders") ? getallheaders() : array();
if (isset($headers["Authorization"])) {
return trim(str_replace("Bearer", "", $headers["Authorization"]));
}
if (isset($headers["authorization"])) {
return trim(str_replace("Bearer", "", $headers["authorization"]));
}
$prm = is_array($this->sys_input) ? $this->sys_input : array();
if (isset($prm["access_token"])) {
return trim($prm["access_token"]);
}
if (isset($prm["token"])) {
return trim($prm["token"]);
}
return "";
}
private function validate_wynacom_token($token)
{
if ($token === "") {
throw new Exception("Token wajib diisi");
}
$sql = "SELECT *
FROM api_wynacom_token
WHERE Api_WynacomTokenAccessToken = ?
AND Api_WynacomTokenExpiredAt >= NOW()
AND (
Api_WynacomTokenDeleted IS NULL
OR Api_WynacomTokenDeleted = '0000-00-00 00:00:00'
)
LIMIT 1";
$qry = $this->db->query($sql, array($token));
if (!$qry) {
$this->sys_error_db("Gagal validasi token Wynacom", $this->db);
exit;
}
$rows = $qry->result_array();
if (count($rows) === 0) {
throw new Exception("Token tidak valid atau sudah expired");
}
$credential = $rows[0];
return $credential;
}
private function create_access_token()
{
if (function_exists("random_bytes")) {
return bin2hex(random_bytes(32));
}
if (function_exists("openssl_random_pseudo_bytes")) {
return bin2hex(openssl_random_pseudo_bytes(32));
}
return hash("sha256", uniqid("", true) . microtime(true));
}
private function get_order_header($lab_number)
{
$sql = "SELECT T_OrderHeaderID, T_OrderHeaderLabNumber
FROM t_orderheader
WHERE T_OrderHeaderLabNumber = ?
AND T_OrderHeaderIsActive = 'Y'
LIMIT 1";
$qry = $this->db->query($sql, array($lab_number));
if (!$qry) {
$this->sys_error_db("Gagal mengambil order header", $this->db);
exit;
}
$rows = $qry->result_array();
return count($rows) > 0 ? $rows[0] : false;
}
private function get_nonlab_timestamp($lab_number)
{
$sql = "SELECT
ss.T_SampleStationName as sample_station_name,
ml.M_LocationName as location_name,
LEFT(tt.T_TestSasCode, 8) as cpone_test_code,
tt.T_TestName as cpone_test_name,
IFNULL(ntm.Nat_TestMapCode, 'Un-Map') AS lis_test_code,
CASE
WHEN so.T_SamplingSoProcessDate IS NULL THEN NULL
ELSE CONCAT(so.T_SamplingSoProcessDate, ' ', IFNULL(so.T_SamplingSoProcessTime, '00:00:00'))
END AS sampling_check_in_datetime,
so.T_SamplingSoProcessUserID as sampling_check_in_userid,
CASE
WHEN so.T_SamplingSoDoneDate IS NULL THEN NULL
ELSE CONCAT(so.T_SamplingSoDoneDate, ' ', IFNULL(so.T_SamplingSoDoneTime, '00:00:00'))
END AS sampling_check_out_datetime,
so.T_SamplingSoDoneUserID as sampling_check_out_userid
FROM t_orderheader oh
JOIN t_samplingso so ON so.T_SamplingSoT_OrderHeaderID = oh.T_OrderHeaderID
AND so.T_SamplingSoIsActive = 'Y'
JOIN t_test tt ON tt.T_TestID = so.T_SamplingSoT_TestID
AND tt.T_TestIsActive = 'Y'
JOIN t_sampletype st ON st.T_SampleTypeID = tt.T_TestT_SampleTypeID
AND st.T_SampleTypeIsActive = 'Y'
JOIN t_bahan tb ON tb.T_BahanID = st.T_SampleTypeT_BahanID
AND tb.T_BahanIsActive = 'Y'
LEFT JOIN nat_testmap ntm ON ntm.Nat_TestMapNat_TestID = tt.T_TestNat_TestID
AND ntm.Nat_TestMapIsActive = 'Y'
LEFT JOIN t_orderdetail od ON od.T_OrderDetailT_OrderHeaderID = oh.T_OrderHeaderID
AND od.T_OrderDetailT_TestID = tt.T_TestID
AND od.T_OrderDetailIsActive = 'Y'
JOIN t_samplestation ss ON ss.T_SampleStationID = tb.T_BahanT_SampleStationID
AND ss.T_SampleStationIsActive = 'Y'
LEFT JOIN t_order_location ol ON ol.T_OrderLocationT_OrderHeaderID = oh.T_OrderHeaderID
AND ol.T_OrderLocationT_SampleStationID = ss.T_SampleStationID
AND ol.T_OrderLocationIsActive = 'Y'
LEFT JOIN m_location ml ON ml.M_LocationID = ol.T_OrderLocationM_LocationID
AND ml.M_LocationIsActive = 'Y'
WHERE oh.T_OrderHeaderLabNumber = ?
AND oh.T_OrderHeaderIsActive = 'Y'
GROUP BY so.T_SamplingSoT_TestID
ORDER BY ss.T_SampleStationName, Nat_TestMapCode, tt.T_TestName";
$qry = $this->db->query($sql, array($lab_number));
if (!$qry) {
$this->sys_error_db("Gagal mengambil timestamp nonlab", $this->db);
exit;
}
return $qry->result_array();
}
private function get_lab_timestamp($lab_number)
{
$sql = "SELECT
ss.T_SampleStationName as sample_station_name,
ml.M_LocationName as location_name,
LEFT(effective_test.T_TestSasCode, 8) as cpone_test_code,
effective_test.T_TestName as cpone_test_name,
IFNULL(ntm.Nat_TestMapCode, 'Un-Map') as lis_test_code,
CASE
WHEN os.T_OrderSampleSamplingDate IS NULL THEN NULL
ELSE CONCAT(os.T_OrderSampleSamplingDate, ' ', IFNULL(os.T_OrderSampleSamplingTime, '00:00:00'))
END AS sampling_check_in_datetime,
os.T_OrderSampleSamplingUserID as sampling_check_in_userid,
CASE
WHEN os.T_OrderSampleReceiveDate IS NULL THEN NULL
ELSE CONCAT(os.T_OrderSampleReceiveDate, ' ', IFNULL(os.T_OrderSampleReceiveTime, '00:00:00'))
END AS sampling_check_out_datetime,
os.T_OrderSampleReceiveUserID as sampling_check_out_userid
FROM t_orderheader oh
JOIN t_ordersample os ON os.T_OrderSampleT_OrderHeaderID = oh.T_OrderHeaderID
AND os.T_OrderSampleIsActive = 'Y'
JOIN t_sampletype st ON st.T_SampleTypeID = os.T_OrderSampleT_SampleTypeID
AND st.T_SampleTypeIsActive = 'Y'
JOIN t_bahan tb ON tb.T_BahanID = st.T_SampleTypeT_BahanID
AND tb.T_BahanIsActive = 'Y'
JOIN t_test child_test ON child_test.T_TestT_SampleTypeID = st.T_SampleTypeID
AND child_test.T_TestIsActive = 'Y'
JOIN t_test effective_test ON effective_test.T_TestID = CASE
WHEN child_test.T_TestParentT_TestID IS NOT NULL
AND child_test.T_TestParentT_TestID <> 0
THEN child_test.T_TestParentT_TestID
ELSE child_test.T_TestID
END
AND effective_test.T_TestIsActive = 'Y'
JOIN t_orderdetail od ON od.T_OrderDetailT_OrderHeaderID = oh.T_OrderHeaderID
AND od.T_OrderDetailT_TestID = effective_test.T_TestID
AND od.T_OrderDetailIsActive = 'Y'
LEFT JOIN nat_testmap ntm ON ntm.Nat_TestMapNat_TestID = effective_test.T_TestNat_TestID
AND ntm.Nat_TestMapIsActive = 'Y'
LEFT JOIN t_samplestation ss ON ss.T_SampleStationID = tb.T_BahanT_SampleStationID
AND ss.T_SampleStationIsActive = 'Y'
LEFT JOIN t_order_location ol ON ol.T_OrderLocationT_OrderHeaderID = oh.T_OrderHeaderID
AND ol.T_OrderLocationT_SampleStationID = ss.T_SampleStationID
AND ol.T_OrderLocationIsActive = 'Y'
LEFT JOIN m_location ml ON ml.M_LocationID = ol.T_OrderLocationM_LocationID
AND ml.M_LocationIsActive = 'Y'
WHERE oh.T_OrderHeaderLabNumber = ?
AND oh.T_OrderHeaderIsActive = 'Y'
GROUP BY effective_test.T_TestID
ORDER BY ss.T_SampleStationName, st.T_SampleTypeName, Nat_TestMapCode, effective_test.T_TestName";
$qry = $this->db->query($sql, array($lab_number));
if (!$qry) {
$this->sys_error_db("Gagal mengambil timestamp lab", $this->db);
exit;
}
return $qry->result_array();
}
private function union_sampling_timestamp($lab_number)
{
$sql = "SELECT *
FROM (
SELECT
ss.T_SampleStationName as sample_station_name,
ml.M_LocationName as location_name,
LEFT(tt.T_TestSasCode, 8) as cpone_test_code,
tt.T_TestName as cpone_test_name,
IFNULL(ntm.Nat_TestMapCode, 'Un-Map') AS lis_test_code,
CASE
WHEN so.T_SamplingSoProcessDate IS NULL THEN NULL
ELSE CONCAT(so.T_SamplingSoProcessDate, ' ', IFNULL(so.T_SamplingSoProcessTime, '00:00:00'))
END AS sampling_check_in_datetime,
so.T_SamplingSoProcessUserID as sampling_check_in_userid,
CASE
WHEN so.T_SamplingSoDoneDate IS NULL THEN NULL
ELSE CONCAT(so.T_SamplingSoDoneDate, ' ', IFNULL(so.T_SamplingSoDoneTime, '00:00:00'))
END AS sampling_check_out_datetime,
so.T_SamplingSoDoneUserID as sampling_check_out_userid
FROM t_orderheader oh
JOIN t_samplingso so ON so.T_SamplingSoT_OrderHeaderID = oh.T_OrderHeaderID
AND so.T_SamplingSoIsActive = 'Y'
JOIN t_test tt ON tt.T_TestID = so.T_SamplingSoT_TestID
AND tt.T_TestIsActive = 'Y'
JOIN t_sampletype st ON st.T_SampleTypeID = tt.T_TestT_SampleTypeID
AND st.T_SampleTypeIsActive = 'Y'
JOIN t_bahan tb ON tb.T_BahanID = st.T_SampleTypeT_BahanID
AND tb.T_BahanIsActive = 'Y'
LEFT JOIN nat_testmap ntm ON ntm.Nat_TestMapNat_TestID = tt.T_TestNat_TestID
AND ntm.Nat_TestMapIsActive = 'Y'
LEFT JOIN t_orderdetail od ON od.T_OrderDetailT_OrderHeaderID = oh.T_OrderHeaderID
AND od.T_OrderDetailT_TestID = tt.T_TestID
AND od.T_OrderDetailIsActive = 'Y'
JOIN t_samplestation ss ON ss.T_SampleStationID = tb.T_BahanT_SampleStationID
AND ss.T_SampleStationIsActive = 'Y'
LEFT JOIN t_order_location ol ON ol.T_OrderLocationT_OrderHeaderID = oh.T_OrderHeaderID
AND ol.T_OrderLocationT_SampleStationID = ss.T_SampleStationID
AND ol.T_OrderLocationIsActive = 'Y'
LEFT JOIN m_location ml ON ml.M_LocationID = ol.T_OrderLocationM_LocationID
AND ml.M_LocationIsActive = 'Y'
WHERE oh.T_OrderHeaderLabNumber = ?
AND oh.T_OrderHeaderIsActive = 'Y'
GROUP BY so.T_SamplingSoT_TestID
UNION ALL
SELECT
ss.T_SampleStationName as sample_station_name,
ml.M_LocationName as location_name,
LEFT(effective_test.T_TestSasCode, 8) as cpone_test_code,
effective_test.T_TestName as cpone_test_name,
IFNULL(ntm.Nat_TestMapCode, 'Un-Map') as lis_test_code,
CASE
WHEN os.T_OrderSampleSamplingDate IS NULL THEN NULL
ELSE CONCAT(os.T_OrderSampleSamplingDate, ' ', IFNULL(os.T_OrderSampleSamplingTime, '00:00:00'))
END AS sampling_check_in_datetime,
os.T_OrderSampleSamplingUserID as sampling_check_in_userid,
CASE
WHEN os.T_OrderSampleReceiveDate IS NULL THEN NULL
ELSE CONCAT(os.T_OrderSampleReceiveDate, ' ', IFNULL(os.T_OrderSampleReceiveTime, '00:00:00'))
END AS sampling_check_out_datetime,
os.T_OrderSampleReceiveUserID as sampling_check_out_userid
FROM t_orderheader oh
JOIN t_ordersample os ON os.T_OrderSampleT_OrderHeaderID = oh.T_OrderHeaderID
AND os.T_OrderSampleIsActive = 'Y'
JOIN t_sampletype st ON st.T_SampleTypeID = os.T_OrderSampleT_SampleTypeID
AND st.T_SampleTypeIsActive = 'Y'
JOIN t_bahan tb ON tb.T_BahanID = st.T_SampleTypeT_BahanID
AND tb.T_BahanIsActive = 'Y'
JOIN t_test child_test ON child_test.T_TestT_SampleTypeID = st.T_SampleTypeID
AND child_test.T_TestIsActive = 'Y'
JOIN t_test effective_test ON effective_test.T_TestID = CASE
WHEN child_test.T_TestParentT_TestID IS NOT NULL
AND child_test.T_TestParentT_TestID <> 0
THEN child_test.T_TestParentT_TestID
ELSE child_test.T_TestID
END
AND effective_test.T_TestIsActive = 'Y'
JOIN t_orderdetail od ON od.T_OrderDetailT_OrderHeaderID = oh.T_OrderHeaderID
AND od.T_OrderDetailT_TestID = effective_test.T_TestID
AND od.T_OrderDetailIsActive = 'Y'
LEFT JOIN nat_testmap ntm ON ntm.Nat_TestMapNat_TestID = effective_test.T_TestNat_TestID
AND ntm.Nat_TestMapIsActive = 'Y'
LEFT JOIN t_samplestation ss ON ss.T_SampleStationID = tb.T_BahanT_SampleStationID
AND ss.T_SampleStationIsActive = 'Y'
LEFT JOIN t_order_location ol ON ol.T_OrderLocationT_OrderHeaderID = oh.T_OrderHeaderID
AND ol.T_OrderLocationT_SampleStationID = ss.T_SampleStationID
AND ol.T_OrderLocationIsActive = 'Y'
LEFT JOIN m_location ml ON ml.M_LocationID = ol.T_OrderLocationM_LocationID
AND ml.M_LocationIsActive = 'Y'
WHERE oh.T_OrderHeaderLabNumber = ?
AND oh.T_OrderHeaderIsActive = 'Y'
GROUP BY effective_test.T_TestID
) x
ORDER BY sample_station_name, cpone_test_code, cpone_test_name";
$qry = $this->db->query($sql, array($lab_number, $lab_number));
if (!$qry) {
$this->sys_error_db("Gagal mengambil union timestamp", $this->db);
exit;
}
return $qry->result_array();
}
}