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 Legal_documentsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const legal_documents = await db.legal_documents.create( { id: data.id || undefined, document_type: data.document_type || null , title: data.title || null , content: data.content || null , status: data.status || null , effective_at: data.effective_at || null , version_label: data.version_label || null , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await legal_documents.setOrganization(currentUser.organization.id || null, { transaction, }); return legal_documents; } 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 legal_documentsData = data.map((item, index) => ({ id: item.id || undefined, document_type: item.document_type || null , title: item.title || null , content: item.content || null , status: item.status || null , effective_at: item.effective_at || null , version_label: item.version_label || null , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const legal_documents = await db.legal_documents.bulkCreate(legal_documentsData, { transaction }); // For each item created, replace relation files return legal_documents; } 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 legal_documents = await db.legal_documents.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.document_type !== undefined) updatePayload.document_type = data.document_type; if (data.title !== undefined) updatePayload.title = data.title; if (data.content !== undefined) updatePayload.content = data.content; if (data.status !== undefined) updatePayload.status = data.status; if (data.effective_at !== undefined) updatePayload.effective_at = data.effective_at; if (data.version_label !== undefined) updatePayload.version_label = data.version_label; updatePayload.updatedById = currentUser.id; await legal_documents.update(updatePayload, {transaction}); if (data.organization !== undefined) { await legal_documents.setOrganization( (globalAccess ? data.organization : currentUser.organization.id), { transaction } ); } return legal_documents; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const legal_documents = await db.legal_documents.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of legal_documents) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of legal_documents) { await record.destroy({transaction}); } }); return legal_documents; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const legal_documents = await db.legal_documents.findByPk(id, options); await legal_documents.update({ deletedBy: currentUser.id }, { transaction, }); await legal_documents.destroy({ transaction }); return legal_documents; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const legal_documents = await db.legal_documents.findOne( { where }, { transaction }, ); if (!legal_documents) { return legal_documents; } const output = legal_documents.get({plain: true}); output.organization = await legal_documents.getOrganization({ 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 userOrganizations = (user && user.organizations?.id) || null; if (userOrganizations) { if (options?.currentUser?.organizationsId) { where.organizationsId = options.currentUser.organizationsId; } } offset = currentPage * limit; const orderBy = null; const transaction = (options && options.transaction) || undefined; let include = [ { model: db.organizations, as: 'organization', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.title) { where = { ...where, [Op.and]: Utils.ilike( 'legal_documents', 'title', filter.title, ), }; } if (filter.content) { where = { ...where, [Op.and]: Utils.ilike( 'legal_documents', 'content', filter.content, ), }; } if (filter.version_label) { where = { ...where, [Op.and]: Utils.ilike( 'legal_documents', 'version_label', filter.version_label, ), }; } if (filter.effective_atRange) { const [start, end] = filter.effective_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, effective_at: { ...where.effective_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, effective_at: { ...where.effective_at, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true' }; } if (filter.document_type) { where = { ...where, document_type: filter.document_type, }; } if (filter.status) { where = { ...where, status: filter.status, }; } if (filter.organization) { const listItems = filter.organization.split('|').map(item => { return Utils.uuid(item) }); where = { ...where, organizationId: {[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.organizationsId; } 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.legal_documents.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( 'legal_documents', 'title', query, ), ], }; } const records = await db.legal_documents.findAll({ attributes: [ 'id', 'title' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['title', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.title, })); } };