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 Organization_membershipsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const organization_memberships = await db.organization_memberships.create( { id: data.id || undefined, is_active: data.is_active || false , joined_on: data.joined_on || null , last_access_at: data.last_access_at || null , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await organization_memberships.setOrganization(currentUser.organization.id || null, { transaction, }); await organization_memberships.setUser( data.user || null, { transaction, }); await organization_memberships.setRole( data.role || null, { transaction, }); return organization_memberships; } 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 organization_membershipsData = data.map((item, index) => ({ id: item.id || undefined, is_active: item.is_active || false , joined_on: item.joined_on || null , last_access_at: item.last_access_at || null , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const organization_memberships = await db.organization_memberships.bulkCreate(organization_membershipsData, { transaction }); // For each item created, replace relation files return organization_memberships; } 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 organization_memberships = await db.organization_memberships.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.is_active !== undefined) updatePayload.is_active = data.is_active; if (data.joined_on !== undefined) updatePayload.joined_on = data.joined_on; if (data.last_access_at !== undefined) updatePayload.last_access_at = data.last_access_at; updatePayload.updatedById = currentUser.id; await organization_memberships.update(updatePayload, {transaction}); if (data.organization !== undefined) { await organization_memberships.setOrganization( (globalAccess ? data.organization : currentUser.organization.id), { transaction } ); } if (data.user !== undefined) { await organization_memberships.setUser( data.user, { transaction } ); } if (data.role !== undefined) { await organization_memberships.setRole( data.role, { transaction } ); } return organization_memberships; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const organization_memberships = await db.organization_memberships.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of organization_memberships) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of organization_memberships) { await record.destroy({transaction}); } }); return organization_memberships; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const organization_memberships = await db.organization_memberships.findByPk(id, options); await organization_memberships.update({ deletedBy: currentUser.id }, { transaction, }); await organization_memberships.destroy({ transaction }); return organization_memberships; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const organization_memberships = await db.organization_memberships.findOne( { where }, { transaction }, ); if (!organization_memberships) { return organization_memberships; } const output = organization_memberships.get({plain: true}); output.organization = await organization_memberships.getOrganization({ transaction }); output.user = await organization_memberships.getUser({ transaction }); output.role = await organization_memberships.getRole({ 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.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.roles, as: 'role', where: filter.role ? { [Op.or]: [ { id: { [Op.in]: filter.role.split('|').map(term => Utils.uuid(term)) } }, { name: { [Op.or]: filter.role.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.joined_onRange) { const [start, end] = filter.joined_onRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, joined_on: { ...where.joined_on, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, joined_on: { ...where.joined_on, [Op.lte]: end, }, }; } } if (filter.last_access_atRange) { const [start, end] = filter.last_access_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, last_access_at: { ...where.last_access_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, last_access_at: { ...where.last_access_at, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true' }; } 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.organization_memberships.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( 'organization_memberships', 'joined_on', query, ), ], }; } const records = await db.organization_memberships.findAll({ attributes: [ 'id', 'joined_on' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['joined_on', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.joined_on, })); } };