39508-vm/backend/src/db/api/email_notifications.js
2026-04-07 01:39:29 +00:00

685 lines
17 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 Email_notificationsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const email_notifications = await db.email_notifications.create(
{
id: data.id || undefined,
to_address: data.to_address
||
null
,
subject: data.subject
||
null
,
body_preview: data.body_preview
||
null
,
status: data.status
||
null
,
queued_at: data.queued_at
||
null
,
sent_at: data.sent_at
||
null
,
failure_reason: data.failure_reason
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await email_notifications.setTenant( data.tenant || null, {
transaction,
});
await email_notifications.setRecipient( data.recipient || null, {
transaction,
});
await email_notifications.setTemplate( data.template || null, {
transaction,
});
await email_notifications.setOrganizations( data.organizations || null, {
transaction,
});
return email_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 email_notificationsData = data.map((item, index) => ({
id: item.id || undefined,
to_address: item.to_address
||
null
,
subject: item.subject
||
null
,
body_preview: item.body_preview
||
null
,
status: item.status
||
null
,
queued_at: item.queued_at
||
null
,
sent_at: item.sent_at
||
null
,
failure_reason: item.failure_reason
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const email_notifications = await db.email_notifications.bulkCreate(email_notificationsData, { transaction });
// For each item created, replace relation files
return email_notifications;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const globalAccess = currentUser.app_role?.globalAccess;
const email_notifications = await db.email_notifications.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.to_address !== undefined) updatePayload.to_address = data.to_address;
if (data.subject !== undefined) updatePayload.subject = data.subject;
if (data.body_preview !== undefined) updatePayload.body_preview = data.body_preview;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.queued_at !== undefined) updatePayload.queued_at = data.queued_at;
if (data.sent_at !== undefined) updatePayload.sent_at = data.sent_at;
if (data.failure_reason !== undefined) updatePayload.failure_reason = data.failure_reason;
updatePayload.updatedById = currentUser.id;
await email_notifications.update(updatePayload, {transaction});
if (data.tenant !== undefined) {
await email_notifications.setTenant(
data.tenant,
{ transaction }
);
}
if (data.recipient !== undefined) {
await email_notifications.setRecipient(
data.recipient,
{ transaction }
);
}
if (data.template !== undefined) {
await email_notifications.setTemplate(
data.template,
{ transaction }
);
}
if (data.organizations !== undefined) {
await email_notifications.setOrganizations(
data.organizations,
{ transaction }
);
}
return email_notifications;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const email_notifications = await db.email_notifications.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of email_notifications) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of email_notifications) {
await record.destroy({transaction});
}
});
return email_notifications;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const email_notifications = await db.email_notifications.findByPk(id, options);
await email_notifications.update({
deletedBy: currentUser.id
}, {
transaction,
});
await email_notifications.destroy({
transaction
});
return email_notifications;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const email_notifications = await db.email_notifications.findOne(
{ where },
{ transaction },
);
if (!email_notifications) {
return email_notifications;
}
const output = email_notifications.get({plain: true});
output.tenant = await email_notifications.getTenant({
transaction
});
output.recipient = await email_notifications.getRecipient({
transaction
});
output.template = await email_notifications.getTemplate({
transaction
});
output.organizations = await email_notifications.getOrganizations({
transaction
});
return output;
}
static async findAll(
filter,
globalAccess, options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
const user = (options && options.currentUser) || null;
const userOrganizations = (user && user.organizations?.id) || null;
if (userOrganizations) {
if (options?.currentUser?.organizationsId) {
where.organizationsId = options.currentUser.organizationsId;
}
}
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.tenants,
as: 'tenant',
where: filter.tenant ? {
[Op.or]: [
{ id: { [Op.in]: filter.tenant.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.tenant.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.users,
as: 'recipient',
where: filter.recipient ? {
[Op.or]: [
{ id: { [Op.in]: filter.recipient.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.recipient.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.email_templates,
as: 'template',
where: filter.template ? {
[Op.or]: [
{ id: { [Op.in]: filter.template.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.template.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.organizations,
as: 'organizations',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.to_address) {
where = {
...where,
[Op.and]: Utils.ilike(
'email_notifications',
'to_address',
filter.to_address,
),
};
}
if (filter.subject) {
where = {
...where,
[Op.and]: Utils.ilike(
'email_notifications',
'subject',
filter.subject,
),
};
}
if (filter.body_preview) {
where = {
...where,
[Op.and]: Utils.ilike(
'email_notifications',
'body_preview',
filter.body_preview,
),
};
}
if (filter.failure_reason) {
where = {
...where,
[Op.and]: Utils.ilike(
'email_notifications',
'failure_reason',
filter.failure_reason,
),
};
}
if (filter.queued_atRange) {
const [start, end] = filter.queued_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
queued_at: {
...where.queued_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
queued_at: {
...where.queued_at,
[Op.lte]: end,
},
};
}
}
if (filter.sent_atRange) {
const [start, end] = filter.sent_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
sent_at: {
...where.sent_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
sent_at: {
...where.sent_at,
[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.organizations) {
const listItems = filter.organizations.split('|').map(item => {
return Utils.uuid(item)
});
where = {
...where,
organizationsId: {[Op.or]: listItems}
};
}
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,
},
};
}
}
}
if (globalAccess) {
delete where.organizationsId;
}
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.email_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, globalAccess, organizationId,) {
let where = {};
if (!globalAccess && organizationId) {
where.organizationId = organizationId;
}
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'email_notifications',
'subject',
query,
),
],
};
}
const records = await db.email_notifications.findAll({
attributes: [ 'id', 'subject' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['subject', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.subject,
}));
}
};