593 lines
14 KiB
JavaScript
593 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 Escalation_alertsDBApi {
|
|
|
|
|
|
|
|
static async create(data, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const escalation_alerts = await db.escalation_alerts.create(
|
|
{
|
|
id: data.id || undefined,
|
|
|
|
severity: data.severity
|
|
||
|
|
null
|
|
,
|
|
|
|
reason: data.reason
|
|
||
|
|
null
|
|
,
|
|
|
|
message: data.message
|
|
||
|
|
null
|
|
,
|
|
|
|
acknowledged: data.acknowledged
|
|
||
|
|
false
|
|
|
|
,
|
|
|
|
acknowledged_at: data.acknowledged_at
|
|
||
|
|
null
|
|
,
|
|
|
|
triggered_at: data.triggered_at
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
|
|
await escalation_alerts.setConversation( data.conversation || null, {
|
|
transaction,
|
|
});
|
|
|
|
await escalation_alerts.setTicket( data.ticket || null, {
|
|
transaction,
|
|
});
|
|
|
|
await escalation_alerts.setAcknowledged_by( data.acknowledged_by || null, {
|
|
transaction,
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return escalation_alerts;
|
|
}
|
|
|
|
|
|
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 escalation_alertsData = data.map((item, index) => ({
|
|
id: item.id || undefined,
|
|
|
|
severity: item.severity
|
|
||
|
|
null
|
|
,
|
|
|
|
reason: item.reason
|
|
||
|
|
null
|
|
,
|
|
|
|
message: item.message
|
|
||
|
|
null
|
|
,
|
|
|
|
acknowledged: item.acknowledged
|
|
||
|
|
false
|
|
|
|
,
|
|
|
|
acknowledged_at: item.acknowledged_at
|
|
||
|
|
null
|
|
,
|
|
|
|
triggered_at: item.triggered_at
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: item.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
createdAt: new Date(Date.now() + index * 1000),
|
|
}));
|
|
|
|
// Bulk create items
|
|
const escalation_alerts = await db.escalation_alerts.bulkCreate(escalation_alertsData, { transaction });
|
|
|
|
// For each item created, replace relation files
|
|
|
|
|
|
return escalation_alerts;
|
|
}
|
|
|
|
static async update(id, data, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
|
|
const escalation_alerts = await db.escalation_alerts.findByPk(id, {}, {transaction});
|
|
|
|
|
|
|
|
|
|
const updatePayload = {};
|
|
|
|
if (data.severity !== undefined) updatePayload.severity = data.severity;
|
|
|
|
|
|
if (data.reason !== undefined) updatePayload.reason = data.reason;
|
|
|
|
|
|
if (data.message !== undefined) updatePayload.message = data.message;
|
|
|
|
|
|
if (data.acknowledged !== undefined) updatePayload.acknowledged = data.acknowledged;
|
|
|
|
|
|
if (data.acknowledged_at !== undefined) updatePayload.acknowledged_at = data.acknowledged_at;
|
|
|
|
|
|
if (data.triggered_at !== undefined) updatePayload.triggered_at = data.triggered_at;
|
|
|
|
|
|
updatePayload.updatedById = currentUser.id;
|
|
|
|
await escalation_alerts.update(updatePayload, {transaction});
|
|
|
|
|
|
|
|
if (data.conversation !== undefined) {
|
|
await escalation_alerts.setConversation(
|
|
|
|
data.conversation,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.ticket !== undefined) {
|
|
await escalation_alerts.setTicket(
|
|
|
|
data.ticket,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.acknowledged_by !== undefined) {
|
|
await escalation_alerts.setAcknowledged_by(
|
|
|
|
data.acknowledged_by,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return escalation_alerts;
|
|
}
|
|
|
|
static async deleteByIds(ids, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const escalation_alerts = await db.escalation_alerts.findAll({
|
|
where: {
|
|
id: {
|
|
[Op.in]: ids,
|
|
},
|
|
},
|
|
transaction,
|
|
});
|
|
|
|
await db.sequelize.transaction(async (transaction) => {
|
|
for (const record of escalation_alerts) {
|
|
await record.update(
|
|
{deletedBy: currentUser.id},
|
|
{transaction}
|
|
);
|
|
}
|
|
for (const record of escalation_alerts) {
|
|
await record.destroy({transaction});
|
|
}
|
|
});
|
|
|
|
|
|
return escalation_alerts;
|
|
}
|
|
|
|
static async remove(id, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const escalation_alerts = await db.escalation_alerts.findByPk(id, options);
|
|
|
|
await escalation_alerts.update({
|
|
deletedBy: currentUser.id
|
|
}, {
|
|
transaction,
|
|
});
|
|
|
|
await escalation_alerts.destroy({
|
|
transaction
|
|
});
|
|
|
|
return escalation_alerts;
|
|
}
|
|
|
|
static async findBy(where, options) {
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const escalation_alerts = await db.escalation_alerts.findOne(
|
|
{ where },
|
|
{ transaction },
|
|
);
|
|
|
|
if (!escalation_alerts) {
|
|
return escalation_alerts;
|
|
}
|
|
|
|
const output = escalation_alerts.get({plain: true});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.conversation = await escalation_alerts.getConversation({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.ticket = await escalation_alerts.getTicket({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.acknowledged_by = await escalation_alerts.getAcknowledged_by({
|
|
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.conversations,
|
|
as: 'conversation',
|
|
|
|
where: filter.conversation ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.conversation.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
case_reference: {
|
|
[Op.or]: filter.conversation.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.tickets,
|
|
as: 'ticket',
|
|
|
|
where: filter.ticket ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.ticket.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
subject: {
|
|
[Op.or]: filter.ticket.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.users,
|
|
as: 'acknowledged_by',
|
|
|
|
where: filter.acknowledged_by ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.acknowledged_by.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
firstName: {
|
|
[Op.or]: filter.acknowledged_by.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
|
|
|
|
];
|
|
|
|
if (filter) {
|
|
if (filter.id) {
|
|
where = {
|
|
...where,
|
|
['id']: Utils.uuid(filter.id),
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.message) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'escalation_alerts',
|
|
'message',
|
|
filter.message,
|
|
),
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (filter.acknowledged_atRange) {
|
|
const [start, end] = filter.acknowledged_atRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
acknowledged_at: {
|
|
...where.acknowledged_at,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
acknowledged_at: {
|
|
...where.acknowledged_at,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.triggered_atRange) {
|
|
const [start, end] = filter.triggered_atRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
triggered_at: {
|
|
...where.triggered_at,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
triggered_at: {
|
|
...where.triggered_at,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
if (filter.active !== undefined) {
|
|
where = {
|
|
...where,
|
|
active: filter.active === true || filter.active === 'true'
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.severity) {
|
|
where = {
|
|
...where,
|
|
severity: filter.severity,
|
|
};
|
|
}
|
|
|
|
if (filter.reason) {
|
|
where = {
|
|
...where,
|
|
reason: filter.reason,
|
|
};
|
|
}
|
|
|
|
if (filter.acknowledged) {
|
|
where = {
|
|
...where,
|
|
acknowledged: filter.acknowledged,
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.escalation_alerts.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(
|
|
'escalation_alerts',
|
|
'message',
|
|
query,
|
|
),
|
|
],
|
|
};
|
|
}
|
|
|
|
const records = await db.escalation_alerts.findAll({
|
|
attributes: [ 'id', 'message' ],
|
|
where,
|
|
limit: limit ? Number(limit) : undefined,
|
|
offset: offset ? Number(offset) : undefined,
|
|
orderBy: [['message', 'ASC']],
|
|
});
|
|
|
|
return records.map((record) => ({
|
|
id: record.id,
|
|
label: record.message,
|
|
}));
|
|
}
|
|
|
|
|
|
};
|
|
|