const db = require('../models'); const crypto = require('crypto'); const Utils = require('../utils'); const Sequelize = db.Sequelize; const Op = Sequelize.Op; module.exports = class ProgramsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const programs = await db.programs.create( { id: data.id || undefined, program_name: data.program_name || null , country: data.country || null , industry: data.industry || null , salary: data.salary || null , conditions: data.conditions || null , departure_time: data.departure_time || null , urgent_recruitment: data.urgent_recruitment || false , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); return programs; } 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 programsData = data.map((item, index) => ({ id: item.id || undefined, program_name: item.program_name || null , country: item.country || null , industry: item.industry || null , salary: item.salary || null , conditions: item.conditions || null , departure_time: item.departure_time || null , urgent_recruitment: item.urgent_recruitment || false , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const programs = await db.programs.bulkCreate(programsData, { transaction }); return programs; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const programs = await db.programs.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.program_name !== undefined) updatePayload.program_name = data.program_name; if (data.country !== undefined) updatePayload.country = data.country; if (data.industry !== undefined) updatePayload.industry = data.industry; if (data.salary !== undefined) updatePayload.salary = data.salary; if (data.conditions !== undefined) updatePayload.conditions = data.conditions; if (data.departure_time !== undefined) updatePayload.departure_time = data.departure_time; if (data.urgent_recruitment !== undefined) updatePayload.urgent_recruitment = data.urgent_recruitment; updatePayload.updatedById = currentUser.id; await programs.update(updatePayload, {transaction}); return programs; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const programs = await db.programs.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of programs) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of programs) { await record.destroy({transaction}); } }); return programs; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const programs = await db.programs.findByPk(id, options); await programs.update({ deletedBy: currentUser.id }, { transaction, }); await programs.destroy({ transaction }); return programs; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const programs = await db.programs.findOne( { where }, { transaction }, ); if (!programs) { return programs; } const output = programs.get({plain: true}); return output; } static async findAll(filter, options) { const limit = filter.limit || 0; let offset = 0; let where = {}; const currentPage = +filter.page; const user = (options && options.currentUser) || null; offset = currentPage * limit; const orderBy = null; const transaction = (options && options.transaction) || undefined; let include = []; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.program_name) { where = { ...where, [Op.and]: Utils.ilike( 'programs', 'program_name', filter.program_name, ), }; } if (filter.industry) { where = { ...where, [Op.and]: Utils.ilike( 'programs', 'industry', filter.industry, ), }; } if (filter.conditions) { where = { ...where, [Op.and]: Utils.ilike( 'programs', 'conditions', filter.conditions, ), }; } if (filter.salaryRange) { const [start, end] = filter.salaryRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, salary: { ...where.salary, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, salary: { ...where.salary, [Op.lte]: end, }, }; } } if (filter.departure_timeRange) { const [start, end] = filter.departure_timeRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, departure_time: { ...where.departure_time, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, departure_time: { ...where.departure_time, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true' }; } if (filter.country) { where = { ...where, country: filter.country, }; } if (filter.urgent_recruitment) { where = { ...where, urgent_recruitment: filter.urgent_recruitment, }; } 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.programs.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( 'programs', 'program_name', query, ), ], }; } const records = await db.programs.findAll({ attributes: [ 'id', 'program_name' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['program_name', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.program_name, })); } };