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 Support_ticketsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const support_tickets = await db.support_tickets.create( { id: data.id || undefined, subject: data.subject || null , status: data.status || null , priority: data.priority || null , description: data.description || null , closed_at: data.closed_at || null , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await support_tickets.setUser( data.user || null, { transaction, }); await support_tickets.setOrder( data.order || null, { transaction, }); await support_tickets.setVpn_account( data.vpn_account || null, { transaction, }); return support_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 support_ticketsData = data.map((item, index) => ({ id: item.id || undefined, subject: item.subject || null , status: item.status || null , priority: item.priority || null , description: item.description || 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 support_tickets = await db.support_tickets.bulkCreate(support_ticketsData, { transaction }); // For each item created, replace relation files return support_tickets; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const support_tickets = await db.support_tickets.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.subject !== undefined) updatePayload.subject = data.subject; if (data.status !== undefined) updatePayload.status = data.status; if (data.priority !== undefined) updatePayload.priority = data.priority; if (data.description !== undefined) updatePayload.description = data.description; if (data.closed_at !== undefined) updatePayload.closed_at = data.closed_at; updatePayload.updatedById = currentUser.id; await support_tickets.update(updatePayload, {transaction}); if (data.user !== undefined) { await support_tickets.setUser( data.user, { transaction } ); } if (data.order !== undefined) { await support_tickets.setOrder( data.order, { transaction } ); } if (data.vpn_account !== undefined) { await support_tickets.setVpn_account( data.vpn_account, { transaction } ); } return support_tickets; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const support_tickets = await db.support_tickets.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of support_tickets) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of support_tickets) { await record.destroy({transaction}); } }); return support_tickets; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const support_tickets = await db.support_tickets.findByPk(id, options); await support_tickets.update({ deletedBy: currentUser.id }, { transaction, }); await support_tickets.destroy({ transaction }); return support_tickets; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const support_tickets = await db.support_tickets.findOne( { where }, { transaction }, ); if (!support_tickets) { return support_tickets; } const output = support_tickets.get({plain: true}); output.ticket_messages_support_ticket = await support_tickets.getTicket_messages_support_ticket({ transaction }); output.user = await support_tickets.getUser({ transaction }); output.order = await support_tickets.getOrder({ transaction }); output.vpn_account = await support_tickets.getVpn_account({ transaction }); return output; } static async findAll( filter, options ) { const limit = filter.limit || 0; let offset = 0; let where = {}; const currentPage = +filter.page; offset = currentPage * limit; const orderBy = null; const transaction = (options && options.transaction) || undefined; let include = [ { model: db.users, as: 'user', where: filter.user ? { [Op.or]: [ { id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } }, { firstName: { [Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, { model: db.orders, as: 'order', where: filter.order ? { [Op.or]: [ { id: { [Op.in]: filter.order.split('|').map(term => Utils.uuid(term)) } }, { order_number: { [Op.or]: filter.order.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, { model: db.vpn_accounts, as: 'vpn_account', where: filter.vpn_account ? { [Op.or]: [ { id: { [Op.in]: filter.vpn_account.split('|').map(term => Utils.uuid(term)) } }, { account_label: { [Op.or]: filter.vpn_account.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.subject) { where = { ...where, [Op.and]: Utils.ilike( 'support_tickets', 'subject', filter.subject, ), }; } if (filter.description) { where = { ...where, [Op.and]: Utils.ilike( 'support_tickets', 'description', filter.description, ), }; } 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.status) { where = { ...where, status: filter.status, }; } if (filter.priority) { where = { ...where, priority: filter.priority, }; } 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.support_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, ) { let where = {}; if (query) { where = { [Op.or]: [ { ['id']: Utils.uuid(query) }, Utils.ilike( 'support_tickets', 'subject', query, ), ], }; } const records = await db.support_tickets.findAll({ attributes: [ 'id', 'subject' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['subject', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.subject, })); } };