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 ExportsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const exports = await db.exports.create( { id: data.id || undefined, export_format: data.export_format || null , export_status: data.export_status || null , error_message: data.error_message || null , requested_at: data.requested_at || null , completed_at: data.completed_at || null , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await exports.setCustomization( data.customization || null, { transaction, }); await FileDBApi.replaceRelationFiles( { belongsTo: db.exports.getTableName(), belongsToColumn: 'export_files', belongsToId: exports.id, }, data.export_files, options, ); return exports; } 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 exportsData = data.map((item, index) => ({ id: item.id || undefined, export_format: item.export_format || null , export_status: item.export_status || null , error_message: item.error_message || null , requested_at: item.requested_at || null , completed_at: item.completed_at || null , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const exports = await db.exports.bulkCreate(exportsData, { transaction }); // For each item created, replace relation files for (let i = 0; i < exports.length; i++) { await FileDBApi.replaceRelationFiles( { belongsTo: db.exports.getTableName(), belongsToColumn: 'export_files', belongsToId: exports[i].id, }, data[i].export_files, options, ); } return exports; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const exports = await db.exports.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.export_format !== undefined) updatePayload.export_format = data.export_format; if (data.export_status !== undefined) updatePayload.export_status = data.export_status; if (data.error_message !== undefined) updatePayload.error_message = data.error_message; if (data.requested_at !== undefined) updatePayload.requested_at = data.requested_at; if (data.completed_at !== undefined) updatePayload.completed_at = data.completed_at; updatePayload.updatedById = currentUser.id; await exports.update(updatePayload, {transaction}); if (data.customization !== undefined) { await exports.setCustomization( data.customization, { transaction } ); } await FileDBApi.replaceRelationFiles( { belongsTo: db.exports.getTableName(), belongsToColumn: 'export_files', belongsToId: exports.id, }, data.export_files, options, ); return exports; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const exports = await db.exports.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of exports) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of exports) { await record.destroy({transaction}); } }); return exports; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const exports = await db.exports.findByPk(id, options); await exports.update({ deletedBy: currentUser.id }, { transaction, }); await exports.destroy({ transaction }); return exports; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const exports = await db.exports.findOne( { where }, { transaction }, ); if (!exports) { return exports; } const output = exports.get({plain: true}); output.customization = await exports.getCustomization({ transaction }); output.export_files = await exports.getExport_files({ 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.article_customizations, as: 'customization', where: filter.customization ? { [Op.or]: [ { id: { [Op.in]: filter.customization.split('|').map(term => Utils.uuid(term)) } }, { custom_title: { [Op.or]: filter.customization.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, { model: db.file, as: 'export_files', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.error_message) { where = { ...where, [Op.and]: Utils.ilike( 'exports', 'error_message', filter.error_message, ), }; } if (filter.requested_atRange) { const [start, end] = filter.requested_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, requested_at: { ...where.requested_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, requested_at: { ...where.requested_at, [Op.lte]: end, }, }; } } if (filter.completed_atRange) { const [start, end] = filter.completed_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, completed_at: { ...where.completed_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, completed_at: { ...where.completed_at, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true' }; } if (filter.export_format) { where = { ...where, export_format: filter.export_format, }; } if (filter.export_status) { where = { ...where, export_status: filter.export_status, }; } 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.exports.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( 'exports', 'export_status', query, ), ], }; } const records = await db.exports.findAll({ attributes: [ 'id', 'export_status' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['export_status', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.export_status, })); } };