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 Carbon_offsetsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const carbon_offsets = await db.carbon_offsets.create( { id: data.id || undefined, project_name: data.project_name || null, offset_amount: data.offset_amount || null, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await carbon_offsets.setSupplier(data.supplier || null, { transaction, }); await carbon_offsets.setOrganizations(data.organizations || null, { transaction, }); return carbon_offsets; } 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 carbon_offsetsData = data.map((item, index) => ({ id: item.id || undefined, project_name: item.project_name || null, offset_amount: item.offset_amount || null, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const carbon_offsets = await db.carbon_offsets.bulkCreate( carbon_offsetsData, { transaction }, ); // For each item created, replace relation files return carbon_offsets; } 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 carbon_offsets = await db.carbon_offsets.findByPk( id, {}, { transaction }, ); const updatePayload = {}; if (data.project_name !== undefined) updatePayload.project_name = data.project_name; if (data.offset_amount !== undefined) updatePayload.offset_amount = data.offset_amount; updatePayload.updatedById = currentUser.id; await carbon_offsets.update(updatePayload, { transaction }); if (data.supplier !== undefined) { await carbon_offsets.setSupplier( data.supplier, { transaction }, ); } if (data.organizations !== undefined) { await carbon_offsets.setOrganizations( data.organizations, { transaction }, ); } return carbon_offsets; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const carbon_offsets = await db.carbon_offsets.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of carbon_offsets) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of carbon_offsets) { await record.destroy({ transaction }); } }); return carbon_offsets; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const carbon_offsets = await db.carbon_offsets.findByPk(id, options); await carbon_offsets.update( { deletedBy: currentUser.id, }, { transaction, }, ); await carbon_offsets.destroy({ transaction, }); return carbon_offsets; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const carbon_offsets = await db.carbon_offsets.findOne( { where }, { transaction }, ); if (!carbon_offsets) { return carbon_offsets; } const output = carbon_offsets.get({ plain: true }); output.supplier = await carbon_offsets.getSupplier({ transaction, }); output.organizations = await carbon_offsets.getOrganizations({ 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.suppliers, as: 'supplier', where: filter.supplier ? { [Op.or]: [ { id: { [Op.in]: filter.supplier .split('|') .map((term) => Utils.uuid(term)), }, }, { name: { [Op.or]: filter.supplier .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, { model: db.organizations, as: 'organizations', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.project_name) { where = { ...where, [Op.and]: Utils.ilike( 'carbon_offsets', 'project_name', filter.project_name, ), }; } if (filter.offset_amountRange) { const [start, end] = filter.offset_amountRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, offset_amount: { ...where.offset_amount, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, offset_amount: { ...where.offset_amount, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true', }; } if (filter.organizations) { const listItems = filter.organizations.split('|').map((item) => { return Utils.uuid(item); }); where = { ...where, organizationsId: { [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.carbon_offsets.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('carbon_offsets', 'project_name', query), ], }; } const records = await db.carbon_offsets.findAll({ attributes: ['id', 'project_name'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['project_name', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.project_name, })); } };