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 Onboarding_templatesDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const onboarding_templates = await db.onboarding_templates.create( { id: data.id || undefined, name: data.name || null, description: data.description || null, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await onboarding_templates.setCompany(data.company || null, { transaction, }); await onboarding_templates.setCompanies(data.companies || null, { transaction, }); await onboarding_templates.setModules(data.modules || [], { transaction, }); return onboarding_templates; } 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 onboarding_templatesData = data.map((item, index) => ({ id: item.id || undefined, name: item.name || null, description: item.description || null, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const onboarding_templates = await db.onboarding_templates.bulkCreate( onboarding_templatesData, { transaction }, ); // For each item created, replace relation files return onboarding_templates; } 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 onboarding_templates = await db.onboarding_templates.findByPk( id, {}, { transaction }, ); const updatePayload = {}; if (data.name !== undefined) updatePayload.name = data.name; if (data.description !== undefined) updatePayload.description = data.description; updatePayload.updatedById = currentUser.id; await onboarding_templates.update(updatePayload, { transaction }); if (data.company !== undefined) { await onboarding_templates.setCompany( data.company, { transaction }, ); } if (data.companies !== undefined) { await onboarding_templates.setCompanies( data.companies, { transaction }, ); } if (data.modules !== undefined) { await onboarding_templates.setModules(data.modules, { transaction }); } return onboarding_templates; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const onboarding_templates = await db.onboarding_templates.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of onboarding_templates) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of onboarding_templates) { await record.destroy({ transaction }); } }); return onboarding_templates; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const onboarding_templates = await db.onboarding_templates.findByPk( id, options, ); await onboarding_templates.update( { deletedBy: currentUser.id, }, { transaction, }, ); await onboarding_templates.destroy({ transaction, }); return onboarding_templates; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const onboarding_templates = await db.onboarding_templates.findOne( { where }, { transaction }, ); if (!onboarding_templates) { return onboarding_templates; } const output = onboarding_templates.get({ plain: true }); output.candidates_onboarding_template = await onboarding_templates.getCandidates_onboarding_template({ transaction, }); output.modules_onboarding_template = await onboarding_templates.getModules_onboarding_template({ transaction, }); output.modules = await onboarding_templates.getModules({ transaction, }); output.company = await onboarding_templates.getCompany({ transaction, }); output.companies = await onboarding_templates.getCompanies({ 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 userCompanies = (user && user.companies?.id) || null; if (userCompanies) { if (options?.currentUser?.companiesId) { where.companiesId = options.currentUser.companiesId; } } offset = currentPage * limit; const orderBy = null; const transaction = (options && options.transaction) || undefined; let include = [ { model: db.companies, as: 'company', }, { model: db.companies, as: 'companies', }, { model: db.modules, as: 'modules', required: false, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.name) { where = { ...where, [Op.and]: Utils.ilike('onboarding_templates', 'name', filter.name), }; } if (filter.description) { where = { ...where, [Op.and]: Utils.ilike( 'onboarding_templates', 'description', filter.description, ), }; } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true', }; } if (filter.company) { const listItems = filter.company.split('|').map((item) => { return Utils.uuid(item); }); where = { ...where, companyId: { [Op.or]: listItems }, }; } if (filter.companies) { const listItems = filter.companies.split('|').map((item) => { return Utils.uuid(item); }); where = { ...where, companiesId: { [Op.or]: listItems }, }; } if (filter.modules) { const searchTerms = filter.modules.split('|'); include = [ { model: db.modules, as: 'modules_filter', required: searchTerms.length > 0, where: searchTerms.length > 0 ? { [Op.or]: [ { id: { [Op.in]: searchTerms.map((term) => Utils.uuid(term)), }, }, { title: { [Op.or]: searchTerms.map((term) => ({ [Op.iLike]: `%${term}%`, })), }, }, ], } : undefined, }, ...include, ]; } 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.companiesId; } 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.onboarding_templates.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('onboarding_templates', 'name', query), ], }; } const records = await db.onboarding_templates.findAll({ attributes: ['id', 'name'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['name', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.name, })); } };