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 PlansDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const plans = await db.plans.create( { id: data.id || undefined, code: data.code || null, name: data.name || null, interval_unit: data.interval_unit || null, interval_count: data.interval_count || null, price_cents: data.price_cents || null, currency: data.currency || null, is_active: data.is_active || false, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await plans.setDealerships(data.dealerships || null, { transaction, }); return plans; } 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 plansData = data.map((item, index) => ({ id: item.id || undefined, code: item.code || null, name: item.name || null, interval_unit: item.interval_unit || null, interval_count: item.interval_count || null, price_cents: item.price_cents || null, currency: item.currency || null, is_active: item.is_active || false, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const plans = await db.plans.bulkCreate(plansData, { transaction }); // For each item created, replace relation files return plans; } 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 plans = await db.plans.findByPk(id, {}, { transaction }); const updatePayload = {}; if (data.code !== undefined) updatePayload.code = data.code; if (data.name !== undefined) updatePayload.name = data.name; if (data.interval_unit !== undefined) updatePayload.interval_unit = data.interval_unit; if (data.interval_count !== undefined) updatePayload.interval_count = data.interval_count; if (data.price_cents !== undefined) updatePayload.price_cents = data.price_cents; if (data.currency !== undefined) updatePayload.currency = data.currency; if (data.is_active !== undefined) updatePayload.is_active = data.is_active; updatePayload.updatedById = currentUser.id; await plans.update(updatePayload, { transaction }); if (data.dealerships !== undefined) { await plans.setDealerships( data.dealerships, { transaction }, ); } return plans; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const plans = await db.plans.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of plans) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of plans) { await record.destroy({ transaction }); } }); return plans; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const plans = await db.plans.findByPk(id, options); await plans.update( { deletedBy: currentUser.id, }, { transaction, }, ); await plans.destroy({ transaction, }); return plans; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const plans = await db.plans.findOne({ where }, { transaction }); if (!plans) { return plans; } const output = plans.get({ plain: true }); output.subscriptions_plan = await plans.getSubscriptions_plan({ transaction, }); output.dealerships = await plans.getDealerships({ 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 userDealerships = (user && user.dealerships?.id) || null; if (userDealerships) { if (options?.currentUser?.dealershipsId) { where.dealershipsId = options.currentUser.dealershipsId; } } offset = currentPage * limit; const orderBy = null; const transaction = (options && options.transaction) || undefined; let include = [ { model: db.dealerships, as: 'dealerships', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.code) { where = { ...where, [Op.and]: Utils.ilike('plans', 'code', filter.code), }; } if (filter.name) { where = { ...where, [Op.and]: Utils.ilike('plans', 'name', filter.name), }; } if (filter.interval_unit) { where = { ...where, [Op.and]: Utils.ilike('plans', 'interval_unit', filter.interval_unit), }; } if (filter.currency) { where = { ...where, [Op.and]: Utils.ilike('plans', 'currency', filter.currency), }; } if (filter.interval_countRange) { const [start, end] = filter.interval_countRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, interval_count: { ...where.interval_count, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, interval_count: { ...where.interval_count, [Op.lte]: end, }, }; } } if (filter.price_centsRange) { const [start, end] = filter.price_centsRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, price_cents: { ...where.price_cents, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, price_cents: { ...where.price_cents, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true', }; } if (filter.is_active) { where = { ...where, is_active: filter.is_active, }; } if (filter.dealerships) { const listItems = filter.dealerships.split('|').map((item) => { return Utils.uuid(item); }); where = { ...where, dealershipsId: { [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.dealershipsId; } 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.plans.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('plans', 'name', query), ], }; } const records = await db.plans.findAll({ attributes: ['id', 'name'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['name', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.name, })); } };