37853-vm/backend/src/db/api/notifications.js
2026-01-26 23:05:15 +00:00

529 lines
13 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 NotificationsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const notifications = await db.notifications.create(
{
id: data.id || undefined,
label: data.label
||
null
,
scheduled_datetime: data.scheduled_datetime
||
null
,
delivered_datetime: data.delivered_datetime
||
null
,
is_delivered: data.is_delivered
||
false
,
is_ignored: data.is_ignored
||
false
,
batch_index: data.batch_index
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await notifications.setSession( data.session || null, {
transaction,
});
return notifications;
}
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 notificationsData = data.map((item, index) => ({
id: item.id || undefined,
label: item.label
||
null
,
scheduled_datetime: item.scheduled_datetime
||
null
,
delivered_datetime: item.delivered_datetime
||
null
,
is_delivered: item.is_delivered
||
false
,
is_ignored: item.is_ignored
||
false
,
batch_index: item.batch_index
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const notifications = await db.notifications.bulkCreate(notificationsData, { transaction });
// For each item created, replace relation files
return notifications;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const notifications = await db.notifications.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.label !== undefined) updatePayload.label = data.label;
if (data.scheduled_datetime !== undefined) updatePayload.scheduled_datetime = data.scheduled_datetime;
if (data.delivered_datetime !== undefined) updatePayload.delivered_datetime = data.delivered_datetime;
if (data.is_delivered !== undefined) updatePayload.is_delivered = data.is_delivered;
if (data.is_ignored !== undefined) updatePayload.is_ignored = data.is_ignored;
if (data.batch_index !== undefined) updatePayload.batch_index = data.batch_index;
updatePayload.updatedById = currentUser.id;
await notifications.update(updatePayload, {transaction});
if (data.session !== undefined) {
await notifications.setSession(
data.session,
{ transaction }
);
}
return notifications;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const notifications = await db.notifications.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of notifications) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of notifications) {
await record.destroy({transaction});
}
});
return notifications;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const notifications = await db.notifications.findByPk(id, options);
await notifications.update({
deletedBy: currentUser.id
}, {
transaction,
});
await notifications.destroy({
transaction
});
return notifications;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const notifications = await db.notifications.findOne(
{ where },
{ transaction },
);
if (!notifications) {
return notifications;
}
const output = notifications.get({plain: true});
output.session = await notifications.getSession({
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.study_sessions,
as: 'session',
where: filter.session ? {
[Op.or]: [
{ id: { [Op.in]: filter.session.split('|').map(term => Utils.uuid(term)) } },
{
title: {
[Op.or]: filter.session.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.label) {
where = {
...where,
[Op.and]: Utils.ilike(
'notifications',
'label',
filter.label,
),
};
}
if (filter.scheduled_datetimeRange) {
const [start, end] = filter.scheduled_datetimeRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
scheduled_datetime: {
...where.scheduled_datetime,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
scheduled_datetime: {
...where.scheduled_datetime,
[Op.lte]: end,
},
};
}
}
if (filter.delivered_datetimeRange) {
const [start, end] = filter.delivered_datetimeRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
delivered_datetime: {
...where.delivered_datetime,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
delivered_datetime: {
...where.delivered_datetime,
[Op.lte]: end,
},
};
}
}
if (filter.batch_indexRange) {
const [start, end] = filter.batch_indexRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
batch_index: {
...where.batch_index,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
batch_index: {
...where.batch_index,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.is_delivered) {
where = {
...where,
is_delivered: filter.is_delivered,
};
}
if (filter.is_ignored) {
where = {
...where,
is_ignored: filter.is_ignored,
};
}
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.notifications.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(
'notifications',
'label',
query,
),
],
};
}
const records = await db.notifications.findAll({
attributes: [ 'id', 'label' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['label', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.label,
}));
}
};