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 LessonsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const lessons = await db.lessons.create( { id: data.id || undefined, title: data.title || null , summary: data.summary || null , content: data.content || null , content_type: data.content_type || null , video_url: data.video_url || null , external_url: data.external_url || null , sort_order: data.sort_order || null , duration_minutes: data.duration_minutes || null , status: data.status || null , published_at: data.published_at || null , archived_at: data.archived_at || null , is_preview: data.is_preview || false , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await lessons.setCourse( data.course || null, { transaction, }); await FileDBApi.replaceRelationFiles( { belongsTo: db.lessons.getTableName(), belongsToColumn: 'attachments', belongsToId: lessons.id, }, data.attachments, options, ); return lessons; } 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 lessonsData = data.map((item, index) => ({ id: item.id || undefined, title: item.title || null , summary: item.summary || null , content: item.content || null , content_type: item.content_type || null , video_url: item.video_url || null , external_url: item.external_url || null , sort_order: item.sort_order || null , duration_minutes: item.duration_minutes || null , status: item.status || null , published_at: item.published_at || null , archived_at: item.archived_at || null , is_preview: item.is_preview || false , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const lessons = await db.lessons.bulkCreate(lessonsData, { transaction }); // For each item created, replace relation files for (let i = 0; i < lessons.length; i++) { await FileDBApi.replaceRelationFiles( { belongsTo: db.lessons.getTableName(), belongsToColumn: 'attachments', belongsToId: lessons[i].id, }, data[i].attachments, options, ); } return lessons; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const lessons = await db.lessons.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.title !== undefined) updatePayload.title = data.title; if (data.summary !== undefined) updatePayload.summary = data.summary; if (data.content !== undefined) updatePayload.content = data.content; if (data.content_type !== undefined) updatePayload.content_type = data.content_type; if (data.video_url !== undefined) updatePayload.video_url = data.video_url; if (data.external_url !== undefined) updatePayload.external_url = data.external_url; if (data.sort_order !== undefined) updatePayload.sort_order = data.sort_order; if (data.duration_minutes !== undefined) updatePayload.duration_minutes = data.duration_minutes; if (data.status !== undefined) updatePayload.status = data.status; if (data.published_at !== undefined) updatePayload.published_at = data.published_at; if (data.archived_at !== undefined) updatePayload.archived_at = data.archived_at; if (data.is_preview !== undefined) updatePayload.is_preview = data.is_preview; updatePayload.updatedById = currentUser.id; await lessons.update(updatePayload, {transaction}); if (data.course !== undefined) { await lessons.setCourse( data.course, { transaction } ); } await FileDBApi.replaceRelationFiles( { belongsTo: db.lessons.getTableName(), belongsToColumn: 'attachments', belongsToId: lessons.id, }, data.attachments, options, ); return lessons; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const lessons = await db.lessons.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of lessons) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of lessons) { await record.destroy({transaction}); } }); return lessons; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const lessons = await db.lessons.findByPk(id, options); await lessons.update({ deletedBy: currentUser.id }, { transaction, }); await lessons.destroy({ transaction }); return lessons; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const lessons = await db.lessons.findOne( { where }, { transaction }, ); if (!lessons) { return lessons; } const output = lessons.get({plain: true}); output.lesson_progress_lesson = await lessons.getLesson_progress_lesson({ transaction }); output.course = await lessons.getCourse({ transaction }); output.attachments = await lessons.getAttachments({ 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.courses, as: 'course', where: filter.course ? { [Op.or]: [ { id: { [Op.in]: filter.course.split('|').map(term => Utils.uuid(term)) } }, { title: { [Op.or]: filter.course.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, { model: db.file, as: 'attachments', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.title) { where = { ...where, [Op.and]: Utils.ilike( 'lessons', 'title', filter.title, ), }; } if (filter.summary) { where = { ...where, [Op.and]: Utils.ilike( 'lessons', 'summary', filter.summary, ), }; } if (filter.content) { where = { ...where, [Op.and]: Utils.ilike( 'lessons', 'content', filter.content, ), }; } if (filter.video_url) { where = { ...where, [Op.and]: Utils.ilike( 'lessons', 'video_url', filter.video_url, ), }; } if (filter.external_url) { where = { ...where, [Op.and]: Utils.ilike( 'lessons', 'external_url', filter.external_url, ), }; } 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.duration_minutesRange) { const [start, end] = filter.duration_minutesRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, duration_minutes: { ...where.duration_minutes, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, duration_minutes: { ...where.duration_minutes, [Op.lte]: end, }, }; } } if (filter.published_atRange) { const [start, end] = filter.published_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, published_at: { ...where.published_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, published_at: { ...where.published_at, [Op.lte]: end, }, }; } } if (filter.archived_atRange) { const [start, end] = filter.archived_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, archived_at: { ...where.archived_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, archived_at: { ...where.archived_at, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true' }; } if (filter.content_type) { where = { ...where, content_type: filter.content_type, }; } if (filter.status) { where = { ...where, status: filter.status, }; } if (filter.is_preview) { where = { ...where, is_preview: filter.is_preview, }; } 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.lessons.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( 'lessons', 'title', query, ), ], }; } const records = await db.lessons.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, })); } };