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 Variant_featuresDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const variant_features = await db.variant_features.create( { id: data.id || undefined, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await variant_features.setVariant(data.variant || null, { transaction, }); await variant_features.setFeature(data.feature || null, { transaction, }); return variant_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 variant_featuresData = data.map((item, index) => ({ id: item.id || undefined, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const variant_features = await db.variant_features.bulkCreate( variant_featuresData, { transaction }, ); // For each item created, replace relation files return variant_features; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const variant_features = await db.variant_features.findByPk( id, {}, { transaction }, ); const updatePayload = {}; updatePayload.updatedById = currentUser.id; await variant_features.update(updatePayload, { transaction }); if (data.variant !== undefined) { await variant_features.setVariant( data.variant, { transaction }, ); } if (data.feature !== undefined) { await variant_features.setFeature( data.feature, { transaction }, ); } return variant_features; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const variant_features = await db.variant_features.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of variant_features) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of variant_features) { await record.destroy({ transaction }); } }); return variant_features; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const variant_features = await db.variant_features.findByPk(id, options); await variant_features.update( { deletedBy: currentUser.id, }, { transaction, }, ); await variant_features.destroy({ transaction, }); return variant_features; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const variant_features = await db.variant_features.findOne( { where }, { transaction }, ); if (!variant_features) { return variant_features; } const output = variant_features.get({ plain: true }); output.variant = await variant_features.getVariant({ transaction, }); output.feature = await variant_features.getFeature({ 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.variants, as: 'variant', where: filter.variant ? { [Op.or]: [ { id: { [Op.in]: filter.variant .split('|') .map((term) => Utils.uuid(term)), }, }, { name: { [Op.or]: filter.variant .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, { model: db.features, as: 'feature', where: filter.feature ? { [Op.or]: [ { id: { [Op.in]: filter.feature .split('|') .map((term) => Utils.uuid(term)), }, }, { name: { [Op.or]: filter.feature .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true', }; } 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.variant_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('variant_features', 'variant', query), ], }; } const records = await db.variant_features.findAll({ attributes: ['id', 'variant'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['variant', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.variant, })); } };