Files
cod-api/db/roles.db.js
2025-10-21 20:05:15 +07:00

100 lines
2.7 KiB
JavaScript

const pool = require("../config");
const getAllRolesDb = async (searchParams = {}) => {
let queryParams = [];
// Handle pagination
if (searchParams.limit) {
const page = Number(searchParams.page ?? 1) - 1;
queryParams = [Number(searchParams.limit ?? 10), page];
}
const { whereOrConditions, whereParamOr } = pool.buildStringOrIlike(
["a.role_name", "a.role_level", "a.role_description"],
searchParams.criteria,
queryParams
);
if (whereParamOr) queryParams = whereParamOr;
const { whereConditions, whereParamAnd } = pool.buildFilterQuery(
[
{ column: "a.role_name", param: searchParams.role_name, type: "string" },
{ column: "a.role_level", param: searchParams.start_time, type: "string" },
{ column: "a.role_description", param: searchParams.role_description, type: "string" },
],
queryParams
);
if (whereParamAnd) queryParams = whereParamAnd;
const queryText = `
SELECT
COUNT(*) OVER() AS total_data,
a.*
FROM m_roles a
WHERE a.deleted_at IS NULL
${whereConditions.length > 0 ? ` AND ${whereConditions.join(" AND ")}` : ""}
${whereOrConditions ? ` ${whereOrConditions}` : ""}
ORDER BY a.role_id ASC
${searchParams.limit ? `OFFSET $2 * $1 ROWS FETCH NEXT $1 ROWS ONLY` : ''}
`;
const result = await pool.query(queryText, queryParams);
const total =
result?.recordset?.length > 0
? parseInt(result.recordset[0].total_data, 10)
: 0;
return { data: result.recordset, total };
};
const getRolesByIdDb = async (id) => {
const queryText = `
SELECT
a.*
FROM m_roles a
WHERE a.role_id = $1 AND a.deleted_at IS NULL
`;
const result = await pool.query(queryText, [id]);
return result.recordset?.[0] || null;
};
const insertRolesDb = async (store) => {
const { query: queryText, values } = pool.buildDynamicInsert("m_roles", store);
const result = await pool.query(queryText, values);
const insertedId = result.recordset?.[0]?.inserted_id;
return insertedId ? await getRolesByIdDb(insertedId) : null;
};
const updateRolesDb = async (id, data) => {
const store = { ...data };
const whereData = { role_id: id };
const { query: queryText, values } = pool.buildDynamicUpdate(
"m_roles",
store,
whereData
);
await pool.query(`${queryText} AND deleted_at IS NULL`, values);
return getRolesByIdDb(id);
};
const deleteRolesDb = async (id, deletedBy) => {
const queryText = `
UPDATE m_roles
SET deleted_at = CURRENT_TIMESTAMP, deleted_by = $1
WHERE role_id = $2 AND deleted_at IS NULL
`;
await pool.query(queryText, [deletedBy, id]);
return true;
};
module.exports = {
getAllRolesDb,
getRolesByIdDb,
insertRolesDb,
updateRolesDb,
deleteRolesDb,
};