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 Generation_eventsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const generation_events = await db.generation_events.create( { id: data.id || undefined, event_type: data.event_type || null , occurred_at: data.occurred_at || null , progress_percent: data.progress_percent || null , message: data.message || null , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await generation_events.setGeneration( data.generation || null, { transaction, }); return generation_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 generation_eventsData = data.map((item, index) => ({ id: item.id || undefined, event_type: item.event_type || null , occurred_at: item.occurred_at || null , progress_percent: item.progress_percent || null , message: item.message || null , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const generation_events = await db.generation_events.bulkCreate(generation_eventsData, { transaction }); // For each item created, replace relation files return generation_events; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const generation_events = await db.generation_events.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.event_type !== undefined) updatePayload.event_type = data.event_type; if (data.occurred_at !== undefined) updatePayload.occurred_at = data.occurred_at; if (data.progress_percent !== undefined) updatePayload.progress_percent = data.progress_percent; if (data.message !== undefined) updatePayload.message = data.message; updatePayload.updatedById = currentUser.id; await generation_events.update(updatePayload, {transaction}); if (data.generation !== undefined) { await generation_events.setGeneration( data.generation, { transaction } ); } return generation_events; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const generation_events = await db.generation_events.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of generation_events) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of generation_events) { await record.destroy({transaction}); } }); return generation_events; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const generation_events = await db.generation_events.findByPk(id, options); await generation_events.update({ deletedBy: currentUser.id }, { transaction, }); await generation_events.destroy({ transaction }); return generation_events; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const generation_events = await db.generation_events.findOne( { where }, { transaction }, ); if (!generation_events) { return generation_events; } const output = generation_events.get({plain: true}); output.generation = await generation_events.getGeneration({ 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.video_generations, as: 'generation', where: filter.generation ? { [Op.or]: [ { id: { [Op.in]: filter.generation.split('|').map(term => Utils.uuid(term)) } }, { title: { [Op.or]: filter.generation.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.message) { where = { ...where, [Op.and]: Utils.ilike( 'generation_events', 'message', filter.message, ), }; } if (filter.calendarStart && filter.calendarEnd) { where = { ...where, [Op.or]: [ { occurred_at: { [Op.between]: [filter.calendarStart, filter.calendarEnd], }, }, { occurred_at: { [Op.between]: [filter.calendarStart, filter.calendarEnd], }, }, ], }; } if (filter.occurred_atRange) { const [start, end] = filter.occurred_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, occurred_at: { ...where.occurred_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, occurred_at: { ...where.occurred_at, [Op.lte]: end, }, }; } } if (filter.progress_percentRange) { const [start, end] = filter.progress_percentRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, progress_percent: { ...where.progress_percent, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, progress_percent: { ...where.progress_percent, [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.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.generation_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( 'generation_events', 'message', query, ), ], }; } const records = await db.generation_events.findAll({ attributes: [ 'id', 'message' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['message', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.message, })); } };