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 EventsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const events = await db.events.create( { id: data.id || undefined, name: data.name || null , description: data.description || null , price: data.price || null , starts_at: data.starts_at || null , ends_at: data.ends_at || null , status: data.status || null , featured: data.featured || false , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await events.setSchools( data.schools || null, { transaction, }); return events; } 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 eventsData = data.map((item, index) => ({ id: item.id || undefined, name: item.name || null , description: item.description || null , price: item.price || null , starts_at: item.starts_at || null , ends_at: item.ends_at || null , status: item.status || null , featured: item.featured || false , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const events = await db.events.bulkCreate(eventsData, { transaction }); // For each item created, replace relation files return events; } 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 events = await db.events.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.name !== undefined) updatePayload.name = data.name; if (data.description !== undefined) updatePayload.description = data.description; if (data.price !== undefined) updatePayload.price = data.price; if (data.starts_at !== undefined) updatePayload.starts_at = data.starts_at; if (data.ends_at !== undefined) updatePayload.ends_at = data.ends_at; if (data.status !== undefined) updatePayload.status = data.status; if (data.featured !== undefined) updatePayload.featured = data.featured; updatePayload.updatedById = currentUser.id; await events.update(updatePayload, {transaction}); if (data.schools !== undefined) { await events.setSchools( data.schools, { transaction } ); } return events; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const events = await db.events.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of events) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of events) { await record.destroy({transaction}); } }); return events; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const events = await db.events.findByPk(id, options); await events.update({ deletedBy: currentUser.id }, { transaction, }); await events.destroy({ transaction }); return events; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const events = await db.events.findOne( { where }, { transaction }, ); if (!events) { return events; } const output = events.get({plain: true}); output.schools = await events.getSchools({ 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 userSchools = (user && user.schools?.id) || null; if (userSchools) { if (options?.currentUser?.schoolsId) { where.schoolsId = options.currentUser.schoolsId; } } offset = currentPage * limit; const orderBy = null; const transaction = (options && options.transaction) || undefined; let include = [ { model: db.schools, as: 'schools', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.name) { where = { ...where, [Op.and]: Utils.ilike( 'events', 'name', filter.name, ), }; } if (filter.description) { where = { ...where, [Op.and]: Utils.ilike( 'events', 'description', filter.description, ), }; } if (filter.calendarStart && filter.calendarEnd) { where = { ...where, [Op.or]: [ { starts_at: { [Op.between]: [filter.calendarStart, filter.calendarEnd], }, }, { ends_at: { [Op.between]: [filter.calendarStart, filter.calendarEnd], }, }, ], }; } if (filter.priceRange) { const [start, end] = filter.priceRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, price: { ...where.price, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, price: { ...where.price, [Op.lte]: end, }, }; } } if (filter.starts_atRange) { const [start, end] = filter.starts_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, starts_at: { ...where.starts_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, starts_at: { ...where.starts_at, [Op.lte]: end, }, }; } } if (filter.ends_atRange) { const [start, end] = filter.ends_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, ends_at: { ...where.ends_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, ends_at: { ...where.ends_at, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true' }; } if (filter.status) { where = { ...where, status: filter.status, }; } if (filter.featured) { where = { ...where, featured: filter.featured, }; } if (filter.schools) { const listItems = filter.schools.split('|').map(item => { return Utils.uuid(item) }); where = { ...where, schoolsId: {[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.schoolsId; } 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.events.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( 'events', 'name', query, ), ], }; } const records = await db.events.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, })); } };