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 EvaluationsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const evaluations = await db.evaluations.create( { id: data.id || undefined, score: data.score || null, notes: data.notes || null, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await evaluations.setBid(data.bid || null, { transaction, }); await evaluations.setEvaluator(data.evaluator || null, { transaction, }); await evaluations.setMinistries(data.ministries || null, { transaction, }); return evaluations; } 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 evaluationsData = data.map((item, index) => ({ id: item.id || undefined, score: item.score || null, notes: item.notes || null, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const evaluations = await db.evaluations.bulkCreate(evaluationsData, { transaction, }); // For each item created, replace relation files return evaluations; } 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 evaluations = await db.evaluations.findByPk(id, {}, { transaction }); const updatePayload = {}; if (data.score !== undefined) updatePayload.score = data.score; if (data.notes !== undefined) updatePayload.notes = data.notes; updatePayload.updatedById = currentUser.id; await evaluations.update(updatePayload, { transaction }); if (data.bid !== undefined) { await evaluations.setBid( data.bid, { transaction }, ); } if (data.evaluator !== undefined) { await evaluations.setEvaluator( data.evaluator, { transaction }, ); } if (data.ministries !== undefined) { await evaluations.setMinistries( data.ministries, { transaction }, ); } return evaluations; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const evaluations = await db.evaluations.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of evaluations) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of evaluations) { await record.destroy({ transaction }); } }); return evaluations; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const evaluations = await db.evaluations.findByPk(id, options); await evaluations.update( { deletedBy: currentUser.id, }, { transaction, }, ); await evaluations.destroy({ transaction, }); return evaluations; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const evaluations = await db.evaluations.findOne( { where }, { transaction }, ); if (!evaluations) { return evaluations; } const output = evaluations.get({ plain: true }); output.bid = await evaluations.getBid({ transaction, }); output.evaluator = await evaluations.getEvaluator({ transaction, }); output.ministries = await evaluations.getMinistries({ 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 userMinistries = (user && user.ministries?.id) || null; if (userMinistries) { if (options?.currentUser?.ministriesId) { where.ministriesId = options.currentUser.ministriesId; } } offset = currentPage * limit; const orderBy = null; const transaction = (options && options.transaction) || undefined; let include = [ { model: db.bids, as: 'bid', where: filter.bid ? { [Op.or]: [ { id: { [Op.in]: filter.bid .split('|') .map((term) => Utils.uuid(term)), }, }, { bid_amount: { [Op.or]: filter.bid .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, { model: db.users, as: 'evaluator', where: filter.evaluator ? { [Op.or]: [ { id: { [Op.in]: filter.evaluator .split('|') .map((term) => Utils.uuid(term)), }, }, { firstName: { [Op.or]: filter.evaluator .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, { model: db.ministries, as: 'ministries', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.notes) { where = { ...where, [Op.and]: Utils.ilike('evaluations', 'notes', filter.notes), }; } if (filter.scoreRange) { const [start, end] = filter.scoreRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, score: { ...where.score, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, score: { ...where.score, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true', }; } if (filter.ministries) { const listItems = filter.ministries.split('|').map((item) => { return Utils.uuid(item); }); where = { ...where, ministriesId: { [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.ministriesId; } 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.evaluations.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('evaluations', 'score', query), ], }; } const records = await db.evaluations.findAll({ attributes: ['id', 'score'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['score', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.score, })); } };