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 User_vocabularyDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const user_vocabulary = await db.user_vocabulary.create( { id: data.id || undefined, learning_state: data.learning_state || null , ease_factor: data.ease_factor || null , next_review_at: data.next_review_at || null , last_reviewed_at: data.last_reviewed_at || null , correct_streak: data.correct_streak || null , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await user_vocabulary.setUser( data.user || null, { transaction, }); await user_vocabulary.setVocabulary_item( data.vocabulary_item || null, { transaction, }); return user_vocabulary; } 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 user_vocabularyData = data.map((item, index) => ({ id: item.id || undefined, learning_state: item.learning_state || null , ease_factor: item.ease_factor || null , next_review_at: item.next_review_at || null , last_reviewed_at: item.last_reviewed_at || null , correct_streak: item.correct_streak || null , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const user_vocabulary = await db.user_vocabulary.bulkCreate(user_vocabularyData, { transaction }); // For each item created, replace relation files return user_vocabulary; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const user_vocabulary = await db.user_vocabulary.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.learning_state !== undefined) updatePayload.learning_state = data.learning_state; if (data.ease_factor !== undefined) updatePayload.ease_factor = data.ease_factor; if (data.next_review_at !== undefined) updatePayload.next_review_at = data.next_review_at; if (data.last_reviewed_at !== undefined) updatePayload.last_reviewed_at = data.last_reviewed_at; if (data.correct_streak !== undefined) updatePayload.correct_streak = data.correct_streak; updatePayload.updatedById = currentUser.id; await user_vocabulary.update(updatePayload, {transaction}); if (data.user !== undefined) { await user_vocabulary.setUser( data.user, { transaction } ); } if (data.vocabulary_item !== undefined) { await user_vocabulary.setVocabulary_item( data.vocabulary_item, { transaction } ); } return user_vocabulary; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const user_vocabulary = await db.user_vocabulary.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of user_vocabulary) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of user_vocabulary) { await record.destroy({transaction}); } }); return user_vocabulary; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const user_vocabulary = await db.user_vocabulary.findByPk(id, options); await user_vocabulary.update({ deletedBy: currentUser.id }, { transaction, }); await user_vocabulary.destroy({ transaction }); return user_vocabulary; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const user_vocabulary = await db.user_vocabulary.findOne( { where }, { transaction }, ); if (!user_vocabulary) { return user_vocabulary; } const output = user_vocabulary.get({plain: true}); output.user = await user_vocabulary.getUser({ transaction }); output.vocabulary_item = await user_vocabulary.getVocabulary_item({ 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.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.vocabulary_items, as: 'vocabulary_item', where: filter.vocabulary_item ? { [Op.or]: [ { id: { [Op.in]: filter.vocabulary_item.split('|').map(term => Utils.uuid(term)) } }, { term: { [Op.or]: filter.vocabulary_item.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.ease_factorRange) { const [start, end] = filter.ease_factorRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, ease_factor: { ...where.ease_factor, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, ease_factor: { ...where.ease_factor, [Op.lte]: end, }, }; } } if (filter.next_review_atRange) { const [start, end] = filter.next_review_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, next_review_at: { ...where.next_review_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, next_review_at: { ...where.next_review_at, [Op.lte]: end, }, }; } } if (filter.last_reviewed_atRange) { const [start, end] = filter.last_reviewed_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, last_reviewed_at: { ...where.last_reviewed_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, last_reviewed_at: { ...where.last_reviewed_at, [Op.lte]: end, }, }; } } if (filter.correct_streakRange) { const [start, end] = filter.correct_streakRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, correct_streak: { ...where.correct_streak, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, correct_streak: { ...where.correct_streak, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true' }; } if (filter.learning_state) { where = { ...where, learning_state: filter.learning_state, }; } 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.user_vocabulary.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( 'user_vocabulary', 'learning_state', query, ), ], }; } const records = await db.user_vocabulary.findAll({ attributes: [ 'id', 'learning_state' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['learning_state', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.learning_state, })); } };