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 RefundsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const refunds = await db.refunds.create( { id: data.id || undefined, status: data.status || null , amount: data.amount || null , reason: data.reason || null , provider_reference: data.provider_reference || null , requested_at: data.requested_at || null , processed_at: data.processed_at || null , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await refunds.setPayment( data.payment || null, { transaction, }); return refunds; } 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 refundsData = data.map((item, index) => ({ id: item.id || undefined, status: item.status || null , amount: item.amount || null , reason: item.reason || null , provider_reference: item.provider_reference || null , requested_at: item.requested_at || null , processed_at: item.processed_at || null , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const refunds = await db.refunds.bulkCreate(refundsData, { transaction }); // For each item created, replace relation files return refunds; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const refunds = await db.refunds.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.status !== undefined) updatePayload.status = data.status; if (data.amount !== undefined) updatePayload.amount = data.amount; if (data.reason !== undefined) updatePayload.reason = data.reason; if (data.provider_reference !== undefined) updatePayload.provider_reference = data.provider_reference; if (data.requested_at !== undefined) updatePayload.requested_at = data.requested_at; if (data.processed_at !== undefined) updatePayload.processed_at = data.processed_at; updatePayload.updatedById = currentUser.id; await refunds.update(updatePayload, {transaction}); if (data.payment !== undefined) { await refunds.setPayment( data.payment, { transaction } ); } return refunds; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const refunds = await db.refunds.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of refunds) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of refunds) { await record.destroy({transaction}); } }); return refunds; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const refunds = await db.refunds.findByPk(id, options); await refunds.update({ deletedBy: currentUser.id }, { transaction, }); await refunds.destroy({ transaction }); return refunds; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const refunds = await db.refunds.findOne( { where }, { transaction }, ); if (!refunds) { return refunds; } const output = refunds.get({plain: true}); output.payment = await refunds.getPayment({ 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.payments, as: 'payment', where: filter.payment ? { [Op.or]: [ { id: { [Op.in]: filter.payment.split('|').map(term => Utils.uuid(term)) } }, { provider_reference: { [Op.or]: filter.payment.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.reason) { where = { ...where, [Op.and]: Utils.ilike( 'refunds', 'reason', filter.reason, ), }; } if (filter.provider_reference) { where = { ...where, [Op.and]: Utils.ilike( 'refunds', 'provider_reference', filter.provider_reference, ), }; } if (filter.amountRange) { const [start, end] = filter.amountRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, amount: { ...where.amount, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, amount: { ...where.amount, [Op.lte]: end, }, }; } } 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.processed_atRange) { const [start, end] = filter.processed_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, processed_at: { ...where.processed_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, processed_at: { ...where.processed_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.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.refunds.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( 'refunds', 'provider_reference', query, ), ], }; } const records = await db.refunds.findAll({ attributes: [ 'id', 'provider_reference' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['provider_reference', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.provider_reference, })); } };