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