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 EquipmentsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const equipments = await db.equipments.create( { id: data.id || undefined, name: data.name || null, type: data.type || null, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await equipments.setOrganizations(data.organizations || null, { transaction, }); await equipments.setSensors(data.sensors || [], { transaction, }); return equipments; } 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 equipmentsData = data.map((item, index) => ({ id: item.id || undefined, name: item.name || null, type: item.type || null, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const equipments = await db.equipments.bulkCreate(equipmentsData, { transaction, }); // For each item created, replace relation files return equipments; } 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 equipments = await db.equipments.findByPk(id, {}, { transaction }); const updatePayload = {}; if (data.name !== undefined) updatePayload.name = data.name; if (data.type !== undefined) updatePayload.type = data.type; updatePayload.updatedById = currentUser.id; await equipments.update(updatePayload, { transaction }); if (data.organizations !== undefined) { await equipments.setOrganizations( data.organizations, { transaction }, ); } if (data.sensors !== undefined) { await equipments.setSensors(data.sensors, { transaction }); } return equipments; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const equipments = await db.equipments.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of equipments) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of equipments) { await record.destroy({ transaction }); } }); return equipments; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const equipments = await db.equipments.findByPk(id, options); await equipments.update( { deletedBy: currentUser.id, }, { transaction, }, ); await equipments.destroy({ transaction, }); return equipments; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const equipments = await db.equipments.findOne({ where }, { transaction }); if (!equipments) { return equipments; } const output = equipments.get({ plain: true }); output.iot_sensors_equipment = await equipments.getIot_sensors_equipment({ transaction, }); output.maintenance_schedules_equipment = await equipments.getMaintenance_schedules_equipment({ transaction, }); output.sensors = await equipments.getSensors({ transaction, }); output.organizations = await equipments.getOrganizations({ 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 userOrganizations = (user && user.organizations?.id) || null; if (userOrganizations) { if (options?.currentUser?.organizationsId) { where.organizationsId = options.currentUser.organizationsId; } } offset = currentPage * limit; const orderBy = null; const transaction = (options && options.transaction) || undefined; let include = [ { model: db.organizations, as: 'organizations', }, { model: db.iot_sensors, as: 'sensors', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.name) { where = { ...where, [Op.and]: Utils.ilike('equipments', 'name', filter.name), }; } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true', }; } if (filter.type) { where = { ...where, type: filter.type, }; } if (filter.organizations) { const listItems = filter.organizations.split('|').map((item) => { return Utils.uuid(item); }); where = { ...where, organizationsId: { [Op.or]: listItems }, }; } if (filter.sensors) { const searchTerms = filter.sensors.split('|'); include = [ { model: db.iot_sensors, as: 'sensors_filter', required: searchTerms.length > 0, where: searchTerms.length > 0 ? { [Op.or]: [ { id: { [Op.in]: searchTerms.map((term) => Utils.uuid(term)), }, }, { sensor_id: { [Op.or]: searchTerms.map((term) => ({ [Op.iLike]: `%${term}%`, })), }, }, ], } : undefined, }, ...include, ]; } 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.organizationsId; } 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.equipments.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('equipments', 'name', query), ], }; } const records = await db.equipments.findAll({ attributes: ['id', 'name'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['name', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.name, })); } };