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 Coffee_beansDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const coffee_beans = await db.coffee_beans.create( { id: data.id || undefined, name: data.name || null, description: data.description || null, roast_type: data.roast_type || null, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await coffee_beans.setBrand(data.brand || null, { transaction, }); return coffee_beans; } 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 coffee_beansData = data.map((item, index) => ({ id: item.id || undefined, name: item.name || null, description: item.description || null, roast_type: item.roast_type || null, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const coffee_beans = await db.coffee_beans.bulkCreate(coffee_beansData, { transaction, }); // For each item created, replace relation files return coffee_beans; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const coffee_beans = await db.coffee_beans.findByPk( id, {}, { transaction }, ); const updatePayload = {}; if (data.name !== undefined) updatePayload.name = data.name; if (data.description !== undefined) updatePayload.description = data.description; if (data.roast_type !== undefined) updatePayload.roast_type = data.roast_type; updatePayload.updatedById = currentUser.id; await coffee_beans.update(updatePayload, { transaction }); if (data.brand !== undefined) { await coffee_beans.setBrand( data.brand, { transaction }, ); } return coffee_beans; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const coffee_beans = await db.coffee_beans.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of coffee_beans) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of coffee_beans) { await record.destroy({ transaction }); } }); return coffee_beans; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const coffee_beans = await db.coffee_beans.findByPk(id, options); await coffee_beans.update( { deletedBy: currentUser.id, }, { transaction, }, ); await coffee_beans.destroy({ transaction, }); return coffee_beans; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const coffee_beans = await db.coffee_beans.findOne( { where }, { transaction }, ); if (!coffee_beans) { return coffee_beans; } const output = coffee_beans.get({ plain: true }); output.products_coffee_bean = await coffee_beans.getProducts_coffee_bean({ transaction, }); output.brand = await coffee_beans.getBrand({ 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.brands, as: 'brand', where: filter.brand ? { [Op.or]: [ { id: { [Op.in]: filter.brand .split('|') .map((term) => Utils.uuid(term)), }, }, { name: { [Op.or]: filter.brand .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.name) { where = { ...where, [Op.and]: Utils.ilike('coffee_beans', 'name', filter.name), }; } if (filter.description) { where = { ...where, [Op.and]: Utils.ilike( 'coffee_beans', 'description', filter.description, ), }; } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true', }; } if (filter.roast_type) { where = { ...where, roast_type: filter.roast_type, }; } 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.coffee_beans.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('coffee_beans', 'name', query), ], }; } const records = await db.coffee_beans.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, })); } };