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 Progress_recordsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const progress_records = await db.progress_records.create( { id: data.id || undefined, progress: data.progress || null, completed_at: data.completed_at || null, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await progress_records.setUser(data.user || null, { transaction, }); await progress_records.setLesson(data.lesson || null, { transaction, }); await progress_records.setSchools(data.schools || null, { transaction, }); return progress_records; } 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 progress_recordsData = data.map((item, index) => ({ id: item.id || undefined, progress: item.progress || null, completed_at: item.completed_at || null, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const progress_records = await db.progress_records.bulkCreate( progress_recordsData, { transaction }, ); // For each item created, replace relation files return progress_records; } 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 progress_records = await db.progress_records.findByPk( id, {}, { transaction }, ); const updatePayload = {}; if (data.progress !== undefined) updatePayload.progress = data.progress; if (data.completed_at !== undefined) updatePayload.completed_at = data.completed_at; updatePayload.updatedById = currentUser.id; await progress_records.update(updatePayload, { transaction }); if (data.user !== undefined) { await progress_records.setUser( data.user, { transaction }, ); } if (data.lesson !== undefined) { await progress_records.setLesson( data.lesson, { transaction }, ); } if (data.schools !== undefined) { await progress_records.setSchools( data.schools, { transaction }, ); } return progress_records; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const progress_records = await db.progress_records.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of progress_records) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of progress_records) { await record.destroy({ transaction }); } }); return progress_records; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const progress_records = await db.progress_records.findByPk(id, options); await progress_records.update( { deletedBy: currentUser.id, }, { transaction, }, ); await progress_records.destroy({ transaction, }); return progress_records; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const progress_records = await db.progress_records.findOne( { where }, { transaction }, ); if (!progress_records) { return progress_records; } const output = progress_records.get({ plain: true }); output.user = await progress_records.getUser({ transaction, }); output.lesson = await progress_records.getLesson({ transaction, }); output.schools = await progress_records.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.users, as: 'user', where: filter.user ? { [Op.or]: [ { id: { [Op.in]: filter.user .split('|') .map((term) => Utils.uuid(term)), }, }, { firstName: { [Op.or]: filter.user .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, { 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}%` })), }, }, ], } : {}, }, { model: db.schools, as: 'schools', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.progressRange) { const [start, end] = filter.progressRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, progress: { ...where.progress, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, progress: { ...where.progress, [Op.lte]: end, }, }; } } if (filter.completed_atRange) { const [start, end] = filter.completed_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, completed_at: { ...where.completed_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, completed_at: { ...where.completed_at, [Op.lte]: end, }, }; } } 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.progress_records.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('progress_records', 'progress', query), ], }; } const records = await db.progress_records.findAll({ attributes: ['id', 'progress'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['progress', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.progress, })); } };