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 ResumesDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const resumes = await db.resumes.create( { id: data.id || undefined, template_id: data.template_id || null, personal_info: data.personal_info || null, education: data.education || null, experience: data.experience || null, projects: data.projects || null, skills: data.skills || null, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await resumes.setUser(data.user || null, { transaction, }); return resumes; } 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 resumesData = data.map((item, index) => ({ id: item.id || undefined, template_id: item.template_id || null, personal_info: item.personal_info || null, education: item.education || null, experience: item.experience || null, projects: item.projects || null, skills: item.skills || null, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const resumes = await db.resumes.bulkCreate(resumesData, { transaction }); // For each item created, replace relation files return resumes; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const resumes = await db.resumes.findByPk(id, {}, { transaction }); const updatePayload = {}; if (data.template_id !== undefined) updatePayload.template_id = data.template_id; if (data.personal_info !== undefined) updatePayload.personal_info = data.personal_info; if (data.education !== undefined) updatePayload.education = data.education; if (data.experience !== undefined) updatePayload.experience = data.experience; if (data.projects !== undefined) updatePayload.projects = data.projects; if (data.skills !== undefined) updatePayload.skills = data.skills; updatePayload.updatedById = currentUser.id; await resumes.update(updatePayload, { transaction }); if (data.user !== undefined) { await resumes.setUser( data.user, { transaction }, ); } return resumes; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const resumes = await db.resumes.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of resumes) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of resumes) { await record.destroy({ transaction }); } }); return resumes; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const resumes = await db.resumes.findByPk(id, options); await resumes.update( { deletedBy: currentUser.id, }, { transaction, }, ); await resumes.destroy({ transaction, }); return resumes; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const resumes = await db.resumes.findOne({ where }, { transaction }); if (!resumes) { return resumes; } const output = resumes.get({ plain: true }); output.user = await resumes.getUser({ 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.users, as: 'user', where: filter.user ? { [Op.or]: [ { id: { [Op.in]: filter.user .split('|') .map((term) => Utils.uuid(term)), }, }, { firstName: { [Op.or]: filter.user .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.personal_info) { where = { ...where, [Op.and]: Utils.ilike( 'resumes', 'personal_info', filter.personal_info, ), }; } if (filter.education) { where = { ...where, [Op.and]: Utils.ilike('resumes', 'education', filter.education), }; } if (filter.experience) { where = { ...where, [Op.and]: Utils.ilike('resumes', 'experience', filter.experience), }; } if (filter.projects) { where = { ...where, [Op.and]: Utils.ilike('resumes', 'projects', filter.projects), }; } if (filter.skills) { where = { ...where, [Op.and]: Utils.ilike('resumes', 'skills', filter.skills), }; } if (filter.template_idRange) { const [start, end] = filter.template_idRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, template_id: { ...where.template_id, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, template_id: { ...where.template_id, [Op.lte]: end, }, }; } } 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.resumes.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('resumes', 'personal_info', query), ], }; } const records = await db.resumes.findAll({ attributes: ['id', 'personal_info'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['personal_info', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.personal_info, })); } };