33786/backend/src/db/api/logs.js
2025-09-01 10:43:29 +00:00

382 lines
8.9 KiB
JavaScript

const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class LogsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const logs = await db.logs.create(
{
id: data.id || undefined,
plate_number: data.plate_number || null,
name: data.name || null,
role: data.role || null,
entrance: data.entrance || null,
exit: data.exit || null,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await logs.setCampuses(data.campuses || null, {
transaction,
});
return logs;
}
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 logsData = data.map((item, index) => ({
id: item.id || undefined,
plate_number: item.plate_number || null,
name: item.name || null,
role: item.role || null,
entrance: item.entrance || null,
exit: item.exit || null,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const logs = await db.logs.bulkCreate(logsData, { transaction });
// For each item created, replace relation files
return logs;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const globalAccess = currentUser.app_role?.globalAccess;
const logs = await db.logs.findByPk(id, {}, { transaction });
const updatePayload = {};
if (data.plate_number !== undefined)
updatePayload.plate_number = data.plate_number;
if (data.name !== undefined) updatePayload.name = data.name;
if (data.role !== undefined) updatePayload.role = data.role;
if (data.entrance !== undefined) updatePayload.entrance = data.entrance;
if (data.exit !== undefined) updatePayload.exit = data.exit;
updatePayload.updatedById = currentUser.id;
await logs.update(updatePayload, { transaction });
if (data.campuses !== undefined) {
await logs.setCampuses(
data.campuses,
{ transaction },
);
}
return logs;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const logs = await db.logs.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of logs) {
await record.update({ deletedBy: currentUser.id }, { transaction });
}
for (const record of logs) {
await record.destroy({ transaction });
}
});
return logs;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const logs = await db.logs.findByPk(id, options);
await logs.update(
{
deletedBy: currentUser.id,
},
{
transaction,
},
);
await logs.destroy({
transaction,
});
return logs;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const logs = await db.logs.findOne({ where }, { transaction });
if (!logs) {
return logs;
}
const output = logs.get({ plain: true });
output.campuses = await logs.getCampuses({
transaction,
});
return output;
}
static async findAll(filter, globalAccess, options) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
const user = (options && options.currentUser) || null;
const userCampuses = (user && user.campuses?.id) || null;
if (userCampuses) {
if (options?.currentUser?.campusesId) {
where.campusesId = options.currentUser.campusesId;
}
}
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.campuses,
as: 'campuses',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.plate_number) {
where = {
...where,
[Op.and]: Utils.ilike('logs', 'plate_number', filter.plate_number),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike('logs', 'name', filter.name),
};
}
if (filter.entranceRange) {
const [start, end] = filter.entranceRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
entrance: {
...where.entrance,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
entrance: {
...where.entrance,
[Op.lte]: end,
},
};
}
}
if (filter.exitRange) {
const [start, end] = filter.exitRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
exit: {
...where.exit,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
exit: {
...where.exit,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true',
};
}
if (filter.role) {
where = {
...where,
role: filter.role,
};
}
if (filter.campuses) {
const listItems = filter.campuses.split('|').map((item) => {
return Utils.uuid(item);
});
where = {
...where,
campusesId: { [Op.or]: listItems },
};
}
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,
},
};
}
}
}
if (globalAccess) {
delete where.campusesId;
}
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.logs.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,
globalAccess,
organizationId,
) {
let where = {};
if (!globalAccess && organizationId) {
where.organizationId = organizationId;
}
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike('logs', 'plate_number', query),
],
};
}
const records = await db.logs.findAll({
attributes: ['id', 'plate_number'],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['plate_number', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.plate_number,
}));
}
};