37895-vm/backend/src/db/api/broadcasts.js
2026-01-28 08:00:28 +00:00

612 lines
15 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 BroadcastsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const broadcasts = await db.broadcasts.create(
{
id: data.id || undefined,
title: data.title
||
null
,
scheduled_at: data.scheduled_at
||
null
,
sent_at: data.sent_at
||
null
,
variables: data.variables
||
null
,
status: data.status
||
null
,
preview: data.preview
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await broadcasts.setTemplate( data.template || null, {
transaction,
});
await broadcasts.setSender( data.sender || null, {
transaction,
});
await broadcasts.setAudience(data.audience || [], {
transaction,
});
return broadcasts;
}
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 broadcastsData = data.map((item, index) => ({
id: item.id || undefined,
title: item.title
||
null
,
scheduled_at: item.scheduled_at
||
null
,
sent_at: item.sent_at
||
null
,
variables: item.variables
||
null
,
status: item.status
||
null
,
preview: item.preview
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const broadcasts = await db.broadcasts.bulkCreate(broadcastsData, { transaction });
// For each item created, replace relation files
return broadcasts;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const broadcasts = await db.broadcasts.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.title !== undefined) updatePayload.title = data.title;
if (data.scheduled_at !== undefined) updatePayload.scheduled_at = data.scheduled_at;
if (data.sent_at !== undefined) updatePayload.sent_at = data.sent_at;
if (data.variables !== undefined) updatePayload.variables = data.variables;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.preview !== undefined) updatePayload.preview = data.preview;
updatePayload.updatedById = currentUser.id;
await broadcasts.update(updatePayload, {transaction});
if (data.template !== undefined) {
await broadcasts.setTemplate(
data.template,
{ transaction }
);
}
if (data.sender !== undefined) {
await broadcasts.setSender(
data.sender,
{ transaction }
);
}
if (data.audience !== undefined) {
await broadcasts.setAudience(data.audience, { transaction });
}
return broadcasts;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const broadcasts = await db.broadcasts.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of broadcasts) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of broadcasts) {
await record.destroy({transaction});
}
});
return broadcasts;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const broadcasts = await db.broadcasts.findByPk(id, options);
await broadcasts.update({
deletedBy: currentUser.id
}, {
transaction,
});
await broadcasts.destroy({
transaction
});
return broadcasts;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const broadcasts = await db.broadcasts.findOne(
{ where },
{ transaction },
);
if (!broadcasts) {
return broadcasts;
}
const output = broadcasts.get({plain: true});
output.template = await broadcasts.getTemplate({
transaction
});
output.sender = await broadcasts.getSender({
transaction
});
output.audience = await broadcasts.getAudience({
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.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.users,
as: 'sender',
where: filter.sender ? {
[Op.or]: [
{ id: { [Op.in]: filter.sender.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.sender.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.customers,
as: 'audience',
required: false,
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.title) {
where = {
...where,
[Op.and]: Utils.ilike(
'broadcasts',
'title',
filter.title,
),
};
}
if (filter.variables) {
where = {
...where,
[Op.and]: Utils.ilike(
'broadcasts',
'variables',
filter.variables,
),
};
}
if (filter.preview) {
where = {
...where,
[Op.and]: Utils.ilike(
'broadcasts',
'preview',
filter.preview,
),
};
}
if (filter.calendarStart && filter.calendarEnd) {
where = {
...where,
[Op.or]: [
{
scheduled_at: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
{
sent_at: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
],
};
}
if (filter.scheduled_atRange) {
const [start, end] = filter.scheduled_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
scheduled_at: {
...where.scheduled_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
scheduled_at: {
...where.scheduled_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.audience) {
const searchTerms = filter.audience.split('|');
include = [
{
model: db.customers,
as: 'audience_filter',
required: searchTerms.length > 0,
where: searchTerms.length > 0 ? {
[Op.or]: [
{ id: { [Op.in]: searchTerms.map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: searchTerms.map(term => ({ [Op.iLike]: `%${term}%` }))
}
}
]
} : undefined
},
...include,
]
}
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.broadcasts.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(
'broadcasts',
'title',
query,
),
],
};
}
const records = await db.broadcasts.findAll({
attributes: [ 'id', 'title' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['title', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.title,
}));
}
};