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 DiagnosticsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const diagnostics = await db.diagnostics.create( { id: data.id || undefined, run_at: data.run_at || null, result: data.result || null, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await diagnostics.setDevice(data.device || null, { transaction, }); await diagnostics.setIsps(data.isps || null, { transaction, }); return diagnostics; } 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 diagnosticsData = data.map((item, index) => ({ id: item.id || undefined, run_at: item.run_at || null, result: item.result || null, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const diagnostics = await db.diagnostics.bulkCreate(diagnosticsData, { transaction, }); // For each item created, replace relation files return diagnostics; } 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 diagnostics = await db.diagnostics.findByPk(id, {}, { transaction }); const updatePayload = {}; if (data.run_at !== undefined) updatePayload.run_at = data.run_at; if (data.result !== undefined) updatePayload.result = data.result; updatePayload.updatedById = currentUser.id; await diagnostics.update(updatePayload, { transaction }); if (data.device !== undefined) { await diagnostics.setDevice( data.device, { transaction }, ); } if (data.isps !== undefined) { await diagnostics.setIsps( data.isps, { transaction }, ); } return diagnostics; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const diagnostics = await db.diagnostics.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of diagnostics) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of diagnostics) { await record.destroy({ transaction }); } }); return diagnostics; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const diagnostics = await db.diagnostics.findByPk(id, options); await diagnostics.update( { deletedBy: currentUser.id, }, { transaction, }, ); await diagnostics.destroy({ transaction, }); return diagnostics; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const diagnostics = await db.diagnostics.findOne( { where }, { transaction }, ); if (!diagnostics) { return diagnostics; } const output = diagnostics.get({ plain: true }); output.device = await diagnostics.getDevice({ transaction, }); output.isps = await diagnostics.getIsps({ 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 userIsps = (user && user.isps?.id) || null; if (userIsps) { if (options?.currentUser?.ispsId) { where.ispsId = options.currentUser.ispsId; } } offset = currentPage * limit; const orderBy = null; const transaction = (options && options.transaction) || undefined; let include = [ { model: db.devices, as: 'device', where: filter.device ? { [Op.or]: [ { id: { [Op.in]: filter.device .split('|') .map((term) => Utils.uuid(term)), }, }, { serial_number: { [Op.or]: filter.device .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, { model: db.isps, as: 'isps', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.result) { where = { ...where, [Op.and]: Utils.ilike('diagnostics', 'result', filter.result), }; } if (filter.run_atRange) { const [start, end] = filter.run_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, run_at: { ...where.run_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, run_at: { ...where.run_at, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true', }; } if (filter.isps) { const listItems = filter.isps.split('|').map((item) => { return Utils.uuid(item); }); where = { ...where, ispsId: { [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.ispsId; } 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.diagnostics.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('diagnostics', 'result', query), ], }; } const records = await db.diagnostics.findAll({ attributes: ['id', 'result'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['result', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.result, })); } };