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 Game_sessionsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const game_sessions = await db.game_sessions.create( { id: data.id || undefined, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await game_sessions.setSchools(data.schools || null, { transaction, }); return game_sessions; } 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 game_sessionsData = data.map((item, index) => ({ id: item.id || undefined, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const game_sessions = await db.game_sessions.bulkCreate(game_sessionsData, { transaction, }); // For each item created, replace relation files return game_sessions; } 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 game_sessions = await db.game_sessions.findByPk( id, {}, { transaction }, ); const updatePayload = {}; updatePayload.updatedById = currentUser.id; await game_sessions.update(updatePayload, { transaction }); if (data.schools !== undefined) { await game_sessions.setSchools( data.schools, { transaction }, ); } return game_sessions; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const game_sessions = await db.game_sessions.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of game_sessions) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of game_sessions) { await record.destroy({ transaction }); } }); return game_sessions; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const game_sessions = await db.game_sessions.findByPk(id, options); await game_sessions.update( { deletedBy: currentUser.id, }, { transaction, }, ); await game_sessions.destroy({ transaction, }); return game_sessions; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const game_sessions = await db.game_sessions.findOne( { where }, { transaction }, ); if (!game_sessions) { return game_sessions; } const output = game_sessions.get({ plain: true }); output.schools = await game_sessions.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.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true', }; } 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.game_sessions.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('game_sessions', 'id', query), ], }; } const records = await db.game_sessions.findAll({ attributes: ['id', 'id'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['id', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.id, })); } };