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 Random_eventsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const random_events = await db.random_events.create( { id: data.id || undefined, title: data.title || null , event_type: data.event_type || null , severity: data.severity || null , starts_at: data.starts_at || null , ends_at: data.ends_at || null , description: data.description || null , is_resolved: data.is_resolved || false , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await random_events.setRegion( data.region || null, { transaction, }); return random_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 random_eventsData = data.map((item, index) => ({ id: item.id || undefined, title: item.title || null , event_type: item.event_type || null , severity: item.severity || null , starts_at: item.starts_at || null , ends_at: item.ends_at || null , description: item.description || null , is_resolved: item.is_resolved || false , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const random_events = await db.random_events.bulkCreate(random_eventsData, { transaction }); // For each item created, replace relation files return random_events; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const random_events = await db.random_events.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.title !== undefined) updatePayload.title = data.title; if (data.event_type !== undefined) updatePayload.event_type = data.event_type; if (data.severity !== undefined) updatePayload.severity = data.severity; if (data.starts_at !== undefined) updatePayload.starts_at = data.starts_at; if (data.ends_at !== undefined) updatePayload.ends_at = data.ends_at; if (data.description !== undefined) updatePayload.description = data.description; if (data.is_resolved !== undefined) updatePayload.is_resolved = data.is_resolved; updatePayload.updatedById = currentUser.id; await random_events.update(updatePayload, {transaction}); if (data.region !== undefined) { await random_events.setRegion( data.region, { transaction } ); } return random_events; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const random_events = await db.random_events.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of random_events) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of random_events) { await record.destroy({transaction}); } }); return random_events; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const random_events = await db.random_events.findByPk(id, options); await random_events.update({ deletedBy: currentUser.id }, { transaction, }); await random_events.destroy({ transaction }); return random_events; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const random_events = await db.random_events.findOne( { where }, { transaction }, ); if (!random_events) { return random_events; } const output = random_events.get({plain: true}); output.region = await random_events.getRegion({ 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.world_regions, as: 'region', where: filter.region ? { [Op.or]: [ { id: { [Op.in]: filter.region.split('|').map(term => Utils.uuid(term)) } }, { name: { [Op.or]: filter.region.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.title) { where = { ...where, [Op.and]: Utils.ilike( 'random_events', 'title', filter.title, ), }; } if (filter.description) { where = { ...where, [Op.and]: Utils.ilike( 'random_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.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.event_type) { where = { ...where, event_type: filter.event_type, }; } if (filter.severity) { where = { ...where, severity: filter.severity, }; } if (filter.is_resolved) { where = { ...where, is_resolved: filter.is_resolved, }; } 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.random_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, ) { let where = {}; if (query) { where = { [Op.or]: [ { ['id']: Utils.uuid(query) }, Utils.ilike( 'random_events', 'title', query, ), ], }; } const records = await db.random_events.findAll({ attributes: [ 'id', 'title' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['title', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.title, })); } };