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 Plan_featuresDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const plan_features = await db.plan_features.create( { id: data.id || undefined, feature_text: data.feature_text || null , is_included: data.is_included || false , sort_order: data.sort_order || null , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await plan_features.setPricing_plan( data.pricing_plan || null, { transaction, }); return plan_features; } 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 plan_featuresData = data.map((item, index) => ({ id: item.id || undefined, feature_text: item.feature_text || null , is_included: item.is_included || false , sort_order: item.sort_order || null , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const plan_features = await db.plan_features.bulkCreate(plan_featuresData, { transaction }); // For each item created, replace relation files return plan_features; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const plan_features = await db.plan_features.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.feature_text !== undefined) updatePayload.feature_text = data.feature_text; if (data.is_included !== undefined) updatePayload.is_included = data.is_included; if (data.sort_order !== undefined) updatePayload.sort_order = data.sort_order; updatePayload.updatedById = currentUser.id; await plan_features.update(updatePayload, {transaction}); if (data.pricing_plan !== undefined) { await plan_features.setPricing_plan( data.pricing_plan, { transaction } ); } return plan_features; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const plan_features = await db.plan_features.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of plan_features) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of plan_features) { await record.destroy({transaction}); } }); return plan_features; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const plan_features = await db.plan_features.findByPk(id, options); await plan_features.update({ deletedBy: currentUser.id }, { transaction, }); await plan_features.destroy({ transaction }); return plan_features; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const plan_features = await db.plan_features.findOne( { where }, { transaction }, ); if (!plan_features) { return plan_features; } const output = plan_features.get({plain: true}); output.pricing_plan = await plan_features.getPricing_plan({ 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.pricing_plans, as: 'pricing_plan', where: filter.pricing_plan ? { [Op.or]: [ { id: { [Op.in]: filter.pricing_plan.split('|').map(term => Utils.uuid(term)) } }, { plan_name: { [Op.or]: filter.pricing_plan.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.feature_text) { where = { ...where, [Op.and]: Utils.ilike( 'plan_features', 'feature_text', filter.feature_text, ), }; } if (filter.sort_orderRange) { const [start, end] = filter.sort_orderRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, sort_order: { ...where.sort_order, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, sort_order: { ...where.sort_order, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true' }; } if (filter.is_included) { where = { ...where, is_included: filter.is_included, }; } 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.plan_features.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( 'plan_features', 'feature_text', query, ), ], }; } const records = await db.plan_features.findAll({ attributes: [ 'id', 'feature_text' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['feature_text', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.feature_text, })); } };