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 ContractsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const contracts = await db.contracts.create( { id: data.id || undefined, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await contracts.setClient(data.client || null, { transaction, }); await contracts.setProperty(data.property || null, { transaction, }); await FileDBApi.replaceRelationFiles( { belongsTo: db.contracts.getTableName(), belongsToColumn: 'document', belongsToId: contracts.id, }, data.document, options, ); return contracts; } 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 contractsData = data.map((item, index) => ({ id: item.id || undefined, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const contracts = await db.contracts.bulkCreate(contractsData, { transaction, }); // For each item created, replace relation files for (let i = 0; i < contracts.length; i++) { await FileDBApi.replaceRelationFiles( { belongsTo: db.contracts.getTableName(), belongsToColumn: 'document', belongsToId: contracts[i].id, }, data[i].document, options, ); } return contracts; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const contracts = await db.contracts.findByPk(id, {}, { transaction }); const updatePayload = {}; updatePayload.updatedById = currentUser.id; await contracts.update(updatePayload, { transaction }); if (data.client !== undefined) { await contracts.setClient( data.client, { transaction }, ); } if (data.property !== undefined) { await contracts.setProperty( data.property, { transaction }, ); } await FileDBApi.replaceRelationFiles( { belongsTo: db.contracts.getTableName(), belongsToColumn: 'document', belongsToId: contracts.id, }, data.document, options, ); return contracts; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const contracts = await db.contracts.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of contracts) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of contracts) { await record.destroy({ transaction }); } }); return contracts; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const contracts = await db.contracts.findByPk(id, options); await contracts.update( { deletedBy: currentUser.id, }, { transaction, }, ); await contracts.destroy({ transaction, }); return contracts; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const contracts = await db.contracts.findOne({ where }, { transaction }); if (!contracts) { return contracts; } const output = contracts.get({ plain: true }); output.documents_related_to = await contracts.getDocuments_related_to({ transaction, }); output.client = await contracts.getClient({ transaction, }); output.property = await contracts.getProperty({ transaction, }); output.document = await contracts.getDocument({ 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.clients, as: 'client', where: filter.client ? { [Op.or]: [ { id: { [Op.in]: filter.client .split('|') .map((term) => Utils.uuid(term)), }, }, { name: { [Op.or]: filter.client .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, { model: db.properties, as: 'property', where: filter.property ? { [Op.or]: [ { id: { [Op.in]: filter.property .split('|') .map((term) => Utils.uuid(term)), }, }, { address: { [Op.or]: filter.property .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, { model: db.file, as: 'document', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } 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.contracts.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('contracts', 'document', query), ], }; } const records = await db.contracts.findAll({ attributes: ['id', 'document'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['document', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.document, })); } };