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 Delivery_serversDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const delivery_servers = await db.delivery_servers.create( { id: data.id || undefined, server_name: data.server_name || null, ip_address: data.ip_address || null, status: data.status || null, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await delivery_servers.setEmail_campaigns(data.email_campaigns || [], { transaction, }); return delivery_servers; } 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 delivery_serversData = data.map((item, index) => ({ id: item.id || undefined, server_name: item.server_name || null, ip_address: item.ip_address || null, status: item.status || null, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const delivery_servers = await db.delivery_servers.bulkCreate( delivery_serversData, { transaction }, ); // For each item created, replace relation files return delivery_servers; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const delivery_servers = await db.delivery_servers.findByPk( id, {}, { transaction }, ); const updatePayload = {}; if (data.server_name !== undefined) updatePayload.server_name = data.server_name; if (data.ip_address !== undefined) updatePayload.ip_address = data.ip_address; if (data.status !== undefined) updatePayload.status = data.status; updatePayload.updatedById = currentUser.id; await delivery_servers.update(updatePayload, { transaction }); if (data.email_campaigns !== undefined) { await delivery_servers.setEmail_campaigns(data.email_campaigns, { transaction, }); } return delivery_servers; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const delivery_servers = await db.delivery_servers.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of delivery_servers) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of delivery_servers) { await record.destroy({ transaction }); } }); return delivery_servers; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const delivery_servers = await db.delivery_servers.findByPk(id, options); await delivery_servers.update( { deletedBy: currentUser.id, }, { transaction, }, ); await delivery_servers.destroy({ transaction, }); return delivery_servers; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const delivery_servers = await db.delivery_servers.findOne( { where }, { transaction }, ); if (!delivery_servers) { return delivery_servers; } const output = delivery_servers.get({ plain: true }); output.email_campaigns = await delivery_servers.getEmail_campaigns({ 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.email_campaigns, as: 'email_campaigns', required: false, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.server_name) { where = { ...where, [Op.and]: Utils.ilike( 'delivery_servers', 'server_name', filter.server_name, ), }; } if (filter.ip_address) { where = { ...where, [Op.and]: Utils.ilike( 'delivery_servers', 'ip_address', filter.ip_address, ), }; } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true', }; } if (filter.status) { where = { ...where, status: filter.status, }; } if (filter.email_campaigns) { const searchTerms = filter.email_campaigns.split('|'); include = [ { model: db.email_campaigns, as: 'email_campaigns_filter', required: searchTerms.length > 0, where: searchTerms.length > 0 ? { [Op.or]: [ { id: { [Op.in]: searchTerms.map((term) => Utils.uuid(term)), }, }, { name: { [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, }, }; } } } 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.delivery_servers.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('delivery_servers', 'server_name', query), ], }; } const records = await db.delivery_servers.findAll({ attributes: ['id', 'server_name'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['server_name', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.server_name, })); } };