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 User_badgesDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const user_badges = await db.user_badges.create( { id: data.id || undefined, awarded_at: data.awarded_at || null , award_note: data.award_note || null , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await user_badges.setBadge( data.badge || null, { transaction, }); await user_badges.setUser( data.user || null, { transaction, }); await user_badges.setAwarded_by( data.awarded_by || null, { transaction, }); await user_badges.setOrganizations( data.organizations || null, { transaction, }); return user_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 user_badgesData = data.map((item, index) => ({ id: item.id || undefined, awarded_at: item.awarded_at || null , award_note: item.award_note || null , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const user_badges = await db.user_badges.bulkCreate(user_badgesData, { transaction }); // For each item created, replace relation files return user_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 user_badges = await db.user_badges.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.awarded_at !== undefined) updatePayload.awarded_at = data.awarded_at; if (data.award_note !== undefined) updatePayload.award_note = data.award_note; updatePayload.updatedById = currentUser.id; await user_badges.update(updatePayload, {transaction}); if (data.badge !== undefined) { await user_badges.setBadge( data.badge, { transaction } ); } if (data.user !== undefined) { await user_badges.setUser( data.user, { transaction } ); } if (data.awarded_by !== undefined) { await user_badges.setAwarded_by( data.awarded_by, { transaction } ); } if (data.organizations !== undefined) { await user_badges.setOrganizations( data.organizations, { transaction } ); } return user_badges; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const user_badges = await db.user_badges.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of user_badges) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of user_badges) { await record.destroy({transaction}); } }); return user_badges; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const user_badges = await db.user_badges.findByPk(id, options); await user_badges.update({ deletedBy: currentUser.id }, { transaction, }); await user_badges.destroy({ transaction }); return user_badges; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const user_badges = await db.user_badges.findOne( { where }, { transaction }, ); if (!user_badges) { return user_badges; } const output = user_badges.get({plain: true}); output.badge = await user_badges.getBadge({ transaction }); output.user = await user_badges.getUser({ transaction }); output.awarded_by = await user_badges.getAwarded_by({ transaction }); output.organizations = await user_badges.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.badges, as: 'badge', where: filter.badge ? { [Op.or]: [ { id: { [Op.in]: filter.badge.split('|').map(term => Utils.uuid(term)) } }, { badge_name: { [Op.or]: filter.badge.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, { model: db.users, as: 'user', where: filter.user ? { [Op.or]: [ { id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } }, { firstName: { [Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, { model: db.users, as: 'awarded_by', where: filter.awarded_by ? { [Op.or]: [ { id: { [Op.in]: filter.awarded_by.split('|').map(term => Utils.uuid(term)) } }, { firstName: { [Op.or]: filter.awarded_by.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.award_note) { where = { ...where, [Op.and]: Utils.ilike( 'user_badges', 'award_note', filter.award_note, ), }; } if (filter.awarded_atRange) { const [start, end] = filter.awarded_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, awarded_at: { ...where.awarded_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, awarded_at: { ...where.awarded_at, [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.user_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( 'user_badges', 'award_note', query, ), ], }; } const records = await db.user_badges.findAll({ attributes: [ 'id', 'award_note' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['award_note', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.award_note, })); } };