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 BadgesDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const badges = await db.badges.create( { id: data.id || undefined, badge_name: data.badge_name || null , badge_description: data.badge_description || null , award_rule_type: data.award_rule_type || null , threshold_value: data.threshold_value || null , is_active: data.is_active || false , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await badges.setOrganization(currentUser.organization.id || null, { transaction, }); await FileDBApi.replaceRelationFiles( { belongsTo: db.badges.getTableName(), belongsToColumn: 'badge_images', belongsToId: badges.id, }, data.badge_images, options, ); return badges; } 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 badgesData = data.map((item, index) => ({ id: item.id || undefined, badge_name: item.badge_name || null , badge_description: item.badge_description || null , award_rule_type: item.award_rule_type || null , threshold_value: item.threshold_value || null , is_active: item.is_active || false , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const badges = await db.badges.bulkCreate(badgesData, { transaction }); // For each item created, replace relation files for (let i = 0; i < badges.length; i++) { await FileDBApi.replaceRelationFiles( { belongsTo: db.badges.getTableName(), belongsToColumn: 'badge_images', belongsToId: badges[i].id, }, data[i].badge_images, options, ); } return badges; } 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 badges = await db.badges.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.badge_name !== undefined) updatePayload.badge_name = data.badge_name; if (data.badge_description !== undefined) updatePayload.badge_description = data.badge_description; if (data.award_rule_type !== undefined) updatePayload.award_rule_type = data.award_rule_type; if (data.threshold_value !== undefined) updatePayload.threshold_value = data.threshold_value; if (data.is_active !== undefined) updatePayload.is_active = data.is_active; updatePayload.updatedById = currentUser.id; await badges.update(updatePayload, {transaction}); if (data.organization !== undefined) { await badges.setOrganization( (globalAccess ? data.organization : currentUser.organization.id), { transaction } ); } await FileDBApi.replaceRelationFiles( { belongsTo: db.badges.getTableName(), belongsToColumn: 'badge_images', belongsToId: badges.id, }, data.badge_images, options, ); return badges; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const badges = await db.badges.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of badges) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of badges) { await record.destroy({transaction}); } }); return badges; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const badges = await db.badges.findByPk(id, options); await badges.update({ deletedBy: currentUser.id }, { transaction, }); await badges.destroy({ transaction }); return badges; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const badges = await db.badges.findOne( { where }, { transaction }, ); if (!badges) { return badges; } const output = badges.get({plain: true}); output.user_badges_badge = await badges.getUser_badges_badge({ transaction }); output.organization = await badges.getOrganization({ transaction }); output.badge_images = await badges.getBadge_images({ 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', }, { model: db.file, as: 'badge_images', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.badge_name) { where = { ...where, [Op.and]: Utils.ilike( 'badges', 'badge_name', filter.badge_name, ), }; } if (filter.badge_description) { where = { ...where, [Op.and]: Utils.ilike( 'badges', 'badge_description', filter.badge_description, ), }; } if (filter.threshold_valueRange) { const [start, end] = filter.threshold_valueRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, threshold_value: { ...where.threshold_value, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, threshold_value: { ...where.threshold_value, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true' }; } if (filter.award_rule_type) { where = { ...where, award_rule_type: filter.award_rule_type, }; } if (filter.is_active) { where = { ...where, is_active: filter.is_active, }; } 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.badges.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( 'badges', 'badge_name', query, ), ], }; } const records = await db.badges.findAll({ attributes: [ 'id', 'badge_name' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['badge_name', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.badge_name, })); } };