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 ExercisesDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const exercises = await db.exercises.create( { id: data.id || undefined, prompt: data.prompt || null , exercise_type: data.exercise_type || null , explanation: data.explanation || null , points: data.points || null , sort_order: data.sort_order || null , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await exercises.setLesson( data.lesson || null, { transaction, }); return exercises; } 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 exercisesData = data.map((item, index) => ({ id: item.id || undefined, prompt: item.prompt || null , exercise_type: item.exercise_type || null , explanation: item.explanation || null , points: item.points || null , sort_order: item.sort_order || null , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const exercises = await db.exercises.bulkCreate(exercisesData, { transaction }); // For each item created, replace relation files return exercises; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const exercises = await db.exercises.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.prompt !== undefined) updatePayload.prompt = data.prompt; if (data.exercise_type !== undefined) updatePayload.exercise_type = data.exercise_type; if (data.explanation !== undefined) updatePayload.explanation = data.explanation; if (data.points !== undefined) updatePayload.points = data.points; if (data.sort_order !== undefined) updatePayload.sort_order = data.sort_order; updatePayload.updatedById = currentUser.id; await exercises.update(updatePayload, {transaction}); if (data.lesson !== undefined) { await exercises.setLesson( data.lesson, { transaction } ); } return exercises; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const exercises = await db.exercises.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of exercises) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of exercises) { await record.destroy({transaction}); } }); return exercises; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const exercises = await db.exercises.findByPk(id, options); await exercises.update({ deletedBy: currentUser.id }, { transaction, }); await exercises.destroy({ transaction }); return exercises; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const exercises = await db.exercises.findOne( { where }, { transaction }, ); if (!exercises) { return exercises; } const output = exercises.get({plain: true}); output.exercise_choices_exercise = await exercises.getExercise_choices_exercise({ transaction }); output.exercise_submissions_exercise = await exercises.getExercise_submissions_exercise({ transaction }); output.lesson = await exercises.getLesson({ 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.lessons, as: 'lesson', where: filter.lesson ? { [Op.or]: [ { id: { [Op.in]: filter.lesson.split('|').map(term => Utils.uuid(term)) } }, { title: { [Op.or]: filter.lesson.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.prompt) { where = { ...where, [Op.and]: Utils.ilike( 'exercises', 'prompt', filter.prompt, ), }; } if (filter.explanation) { where = { ...where, [Op.and]: Utils.ilike( 'exercises', 'explanation', filter.explanation, ), }; } if (filter.pointsRange) { const [start, end] = filter.pointsRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, points: { ...where.points, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, points: { ...where.points, [Op.lte]: end, }, }; } } if (filter.sort_orderRange) { const [start, end] = filter.sort_orderRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, sort_order: { ...where.sort_order, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, sort_order: { ...where.sort_order, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true' }; } if (filter.exercise_type) { where = { ...where, exercise_type: filter.exercise_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.exercises.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( 'exercises', 'prompt', query, ), ], }; } const records = await db.exercises.findAll({ attributes: [ 'id', 'prompt' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['prompt', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.prompt, })); } };