32693/backend/src/db/api/districts.js
2025-07-08 14:53:46 +00:00

291 lines
7.9 KiB
JavaScript

const db = require('../models');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class DistrictsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const districts = await db.districts.create(
{
id: data.id || undefined,
name_kh: data.name_kh
||
null
,
name_en: data.name_en
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
return districts;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const districtsData = data.map((item, index) => ({
id: item.id || undefined,
name_kh: item.name_kh
||
null
,
name_en: item.name_en
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const districts = await db.districts.bulkCreate(districtsData, { transaction });
return districts;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const districts = await db.districts.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name_kh !== undefined) updatePayload.name_kh = data.name_kh;
if (data.name_en !== undefined) updatePayload.name_en = data.name_en;
updatePayload.updatedById = currentUser.id;
await districts.update(updatePayload, {transaction});
return districts;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const districts = await db.districts.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of districts) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of districts) {
await record.destroy({transaction});
}
});
return districts;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const districts = await db.districts.findByPk(id, options);
await districts.update({
deletedBy: currentUser.id
}, {
transaction,
});
await districts.destroy({
transaction
});
return districts;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const districts = await db.districts.findOne(
{ where },
{ transaction },
);
if (!districts) {
return districts;
}
const output = districts.get({plain: true});
return output;
}
static async findAll(filter, options) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
const user = (options && options.currentUser) || null;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name_kh) {
where = {
...where,
[Op.and]: Utils.ilike(
'districts',
'name_kh',
filter.name_kh,
),
};
}
if (filter.name_en) {
where = {
...where,
[Op.and]: Utils.ilike(
'districts',
'name_en',
filter.name_en,
),
};
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.districts.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'districts',
'name_en',
query,
),
],
};
}
const records = await db.districts.findAll({
attributes: [ 'id', 'name_en' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['name_en', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.name_en,
}));
}
};