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 Maintenance_ticketsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const maintenance_tickets = await db.maintenance_tickets.create( { id: data.id || undefined, category: data.category || null , priority: data.priority || null , title: data.title || null , description: data.description || null , status: data.status || null , opened_at: data.opened_at || null , closed_at: data.closed_at || null , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await maintenance_tickets.setHotel( data.hotel || null, { transaction, }); await maintenance_tickets.setRoom( data.room || null, { transaction, }); await maintenance_tickets.setAssigned_staff_profile( data.assigned_staff_profile || null, { transaction, }); await maintenance_tickets.setOrganizations( data.organizations || null, { transaction, }); await FileDBApi.replaceRelationFiles( { belongsTo: db.maintenance_tickets.getTableName(), belongsToColumn: 'attachments', belongsToId: maintenance_tickets.id, }, data.attachments, options, ); return maintenance_tickets; } 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 maintenance_ticketsData = data.map((item, index) => ({ id: item.id || undefined, category: item.category || null , priority: item.priority || null , title: item.title || null , description: item.description || null , status: item.status || null , opened_at: item.opened_at || null , closed_at: item.closed_at || null , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const maintenance_tickets = await db.maintenance_tickets.bulkCreate(maintenance_ticketsData, { transaction }); // For each item created, replace relation files for (let i = 0; i < maintenance_tickets.length; i++) { await FileDBApi.replaceRelationFiles( { belongsTo: db.maintenance_tickets.getTableName(), belongsToColumn: 'attachments', belongsToId: maintenance_tickets[i].id, }, data[i].attachments, options, ); } return maintenance_tickets; } 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 maintenance_tickets = await db.maintenance_tickets.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.category !== undefined) updatePayload.category = data.category; if (data.priority !== undefined) updatePayload.priority = data.priority; if (data.title !== undefined) updatePayload.title = data.title; if (data.description !== undefined) updatePayload.description = data.description; if (data.status !== undefined) updatePayload.status = data.status; if (data.opened_at !== undefined) updatePayload.opened_at = data.opened_at; if (data.closed_at !== undefined) updatePayload.closed_at = data.closed_at; updatePayload.updatedById = currentUser.id; await maintenance_tickets.update(updatePayload, {transaction}); if (data.hotel !== undefined) { await maintenance_tickets.setHotel( data.hotel, { transaction } ); } if (data.room !== undefined) { await maintenance_tickets.setRoom( data.room, { transaction } ); } if (data.assigned_staff_profile !== undefined) { await maintenance_tickets.setAssigned_staff_profile( data.assigned_staff_profile, { transaction } ); } if (data.organizations !== undefined) { await maintenance_tickets.setOrganizations( data.organizations, { transaction } ); } await FileDBApi.replaceRelationFiles( { belongsTo: db.maintenance_tickets.getTableName(), belongsToColumn: 'attachments', belongsToId: maintenance_tickets.id, }, data.attachments, options, ); return maintenance_tickets; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const maintenance_tickets = await db.maintenance_tickets.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of maintenance_tickets) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of maintenance_tickets) { await record.destroy({transaction}); } }); return maintenance_tickets; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const maintenance_tickets = await db.maintenance_tickets.findByPk(id, options); await maintenance_tickets.update({ deletedBy: currentUser.id }, { transaction, }); await maintenance_tickets.destroy({ transaction }); return maintenance_tickets; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const maintenance_tickets = await db.maintenance_tickets.findOne( { where }, { transaction }, ); if (!maintenance_tickets) { return maintenance_tickets; } const output = maintenance_tickets.get({plain: true}); output.hotel = await maintenance_tickets.getHotel({ transaction }); output.room = await maintenance_tickets.getRoom({ transaction }); output.assigned_staff_profile = await maintenance_tickets.getAssigned_staff_profile({ transaction }); output.attachments = await maintenance_tickets.getAttachments({ transaction }); output.organizations = await maintenance_tickets.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.hotels, as: 'hotel', where: filter.hotel ? { [Op.or]: [ { id: { [Op.in]: filter.hotel.split('|').map(term => Utils.uuid(term)) } }, { name: { [Op.or]: filter.hotel.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, { model: db.rooms, as: 'room', where: filter.room ? { [Op.or]: [ { id: { [Op.in]: filter.room.split('|').map(term => Utils.uuid(term)) } }, { room_number: { [Op.or]: filter.room.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, { model: db.staff_profiles, as: 'assigned_staff_profile', where: filter.assigned_staff_profile ? { [Op.or]: [ { id: { [Op.in]: filter.assigned_staff_profile.split('|').map(term => Utils.uuid(term)) } }, { employee_code: { [Op.or]: filter.assigned_staff_profile.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, { model: db.organizations, as: 'organizations', }, { model: db.file, as: 'attachments', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.title) { where = { ...where, [Op.and]: Utils.ilike( 'maintenance_tickets', 'title', filter.title, ), }; } if (filter.description) { where = { ...where, [Op.and]: Utils.ilike( 'maintenance_tickets', 'description', filter.description, ), }; } if (filter.opened_atRange) { const [start, end] = filter.opened_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, opened_at: { ...where.opened_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, opened_at: { ...where.opened_at, [Op.lte]: end, }, }; } } if (filter.closed_atRange) { const [start, end] = filter.closed_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, closed_at: { ...where.closed_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, closed_at: { ...where.closed_at, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true' }; } if (filter.category) { where = { ...where, category: filter.category, }; } if (filter.priority) { where = { ...where, priority: filter.priority, }; } if (filter.status) { where = { ...where, status: filter.status, }; } if (filter.organizations) { const listItems = filter.organizations.split('|').map(item => { return Utils.uuid(item) }); where = { ...where, organizationsId: {[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.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.maintenance_tickets.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( 'maintenance_tickets', 'title', query, ), ], }; } const records = await db.maintenance_tickets.findAll({ attributes: [ 'id', 'title' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['title', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.title, })); } };