31767/backend/src/db/api/questions.js
2025-05-24 22:58:06 +00:00

313 lines
7.5 KiB
JavaScript

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