40226-vm/backend/src/db/api/open_questions.js
2026-06-07 22:17:56 +00:00

510 lines
12 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 Open_questionsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const open_questions = await db.open_questions.create(
{
id: data.id || undefined,
question_text: data.question_text
||
null
,
question_type: data.question_type
||
null
,
stage_scope: data.stage_scope
||
null
,
order_index: data.order_index
||
null
,
is_required: data.is_required
||
false
,
help_text: data.help_text
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await open_questions.setTournament( data.tournament || null, {
transaction,
});
return open_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 open_questionsData = data.map((item, index) => ({
id: item.id || undefined,
question_text: item.question_text
||
null
,
question_type: item.question_type
||
null
,
stage_scope: item.stage_scope
||
null
,
order_index: item.order_index
||
null
,
is_required: item.is_required
||
false
,
help_text: item.help_text
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const open_questions = await db.open_questions.bulkCreate(open_questionsData, { transaction });
// For each item created, replace relation files
return open_questions;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const open_questions = await db.open_questions.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.question_text !== undefined) updatePayload.question_text = data.question_text;
if (data.question_type !== undefined) updatePayload.question_type = data.question_type;
if (data.stage_scope !== undefined) updatePayload.stage_scope = data.stage_scope;
if (data.order_index !== undefined) updatePayload.order_index = data.order_index;
if (data.is_required !== undefined) updatePayload.is_required = data.is_required;
if (data.help_text !== undefined) updatePayload.help_text = data.help_text;
updatePayload.updatedById = currentUser.id;
await open_questions.update(updatePayload, {transaction});
if (data.tournament !== undefined) {
await open_questions.setTournament(
data.tournament,
{ transaction }
);
}
return open_questions;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const open_questions = await db.open_questions.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of open_questions) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of open_questions) {
await record.destroy({transaction});
}
});
return open_questions;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const open_questions = await db.open_questions.findByPk(id, options);
await open_questions.update({
deletedBy: currentUser.id
}, {
transaction,
});
await open_questions.destroy({
transaction
});
return open_questions;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const open_questions = await db.open_questions.findOne(
{ where },
{ transaction },
);
if (!open_questions) {
return open_questions;
}
const output = open_questions.get({plain: true});
output.open_question_choices_open_question = await open_questions.getOpen_question_choices_open_question({
transaction
});
output.open_question_answers_open_question = await open_questions.getOpen_question_answers_open_question({
transaction
});
output.tournament = await open_questions.getTournament({
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.tournaments,
as: 'tournament',
where: filter.tournament ? {
[Op.or]: [
{ id: { [Op.in]: filter.tournament.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.tournament.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.question_text) {
where = {
...where,
[Op.and]: Utils.ilike(
'open_questions',
'question_text',
filter.question_text,
),
};
}
if (filter.help_text) {
where = {
...where,
[Op.and]: Utils.ilike(
'open_questions',
'help_text',
filter.help_text,
),
};
}
if (filter.order_indexRange) {
const [start, end] = filter.order_indexRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
order_index: {
...where.order_index,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
order_index: {
...where.order_index,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.question_type) {
where = {
...where,
question_type: filter.question_type,
};
}
if (filter.stage_scope) {
where = {
...where,
stage_scope: filter.stage_scope,
};
}
if (filter.is_required) {
where = {
...where,
is_required: filter.is_required,
};
}
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.open_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(
'open_questions',
'question_text',
query,
),
],
};
}
const records = await db.open_questions.findAll({
attributes: [ 'id', 'question_text' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['question_text', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.question_text,
}));
}
};