39588-vm/backend/src/db/api/user_challenges.js
2026-04-12 11:09:01 +00:00

581 lines
14 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 User_challengesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const user_challenges = await db.user_challenges.create(
{
id: data.id || undefined,
status: data.status
||
null
,
progress_value: data.progress_value
||
null
,
joined_at: data.joined_at
||
null
,
completed_at: data.completed_at
||
null
,
coins_awarded: data.coins_awarded
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await user_challenges.setUser( data.user || null, {
transaction,
});
await user_challenges.setChallenge_definition( data.challenge_definition || null, {
transaction,
});
return user_challenges;
}
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_challengesData = data.map((item, index) => ({
id: item.id || undefined,
status: item.status
||
null
,
progress_value: item.progress_value
||
null
,
joined_at: item.joined_at
||
null
,
completed_at: item.completed_at
||
null
,
coins_awarded: item.coins_awarded
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const user_challenges = await db.user_challenges.bulkCreate(user_challengesData, { transaction });
// For each item created, replace relation files
return user_challenges;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const user_challenges = await db.user_challenges.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.status !== undefined) updatePayload.status = data.status;
if (data.progress_value !== undefined) updatePayload.progress_value = data.progress_value;
if (data.joined_at !== undefined) updatePayload.joined_at = data.joined_at;
if (data.completed_at !== undefined) updatePayload.completed_at = data.completed_at;
if (data.coins_awarded !== undefined) updatePayload.coins_awarded = data.coins_awarded;
updatePayload.updatedById = currentUser.id;
await user_challenges.update(updatePayload, {transaction});
if (data.user !== undefined) {
await user_challenges.setUser(
data.user,
{ transaction }
);
}
if (data.challenge_definition !== undefined) {
await user_challenges.setChallenge_definition(
data.challenge_definition,
{ transaction }
);
}
return user_challenges;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const user_challenges = await db.user_challenges.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of user_challenges) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of user_challenges) {
await record.destroy({transaction});
}
});
return user_challenges;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const user_challenges = await db.user_challenges.findByPk(id, options);
await user_challenges.update({
deletedBy: currentUser.id
}, {
transaction,
});
await user_challenges.destroy({
transaction
});
return user_challenges;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const user_challenges = await db.user_challenges.findOne(
{ where },
{ transaction },
);
if (!user_challenges) {
return user_challenges;
}
const output = user_challenges.get({plain: true});
output.user = await user_challenges.getUser({
transaction
});
output.challenge_definition = await user_challenges.getChallenge_definition({
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.challenge_definitions,
as: 'challenge_definition',
where: filter.challenge_definition ? {
[Op.or]: [
{ id: { [Op.in]: filter.challenge_definition.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.challenge_definition.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.progress_valueRange) {
const [start, end] = filter.progress_valueRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
progress_value: {
...where.progress_value,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
progress_value: {
...where.progress_value,
[Op.lte]: end,
},
};
}
}
if (filter.joined_atRange) {
const [start, end] = filter.joined_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
joined_at: {
...where.joined_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
joined_at: {
...where.joined_at,
[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.coins_awardedRange) {
const [start, end] = filter.coins_awardedRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
coins_awarded: {
...where.coins_awarded,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
coins_awarded: {
...where.coins_awarded,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
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_challenges.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_challenges',
'status',
query,
),
],
};
}
const records = await db.user_challenges.findAll({
attributes: [ 'id', 'status' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['status', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.status,
}));
}
};