39511-vm/backend/src/db/api/approval_requests.js
2026-04-07 04:10:22 +00:00

733 lines
18 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 Approval_requestsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const approval_requests = await db.approval_requests.create(
{
id: data.id || undefined,
object_type: data.object_type
||
null
,
object_ref: data.object_ref
||
null
,
status: data.status
||
null
,
requested_at: data.requested_at
||
null
,
resolved_at: data.resolved_at
||
null
,
reason: data.reason
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await approval_requests.setTenant( data.tenant || null, {
transaction,
});
await approval_requests.setWorkflow( data.workflow || null, {
transaction,
});
await approval_requests.setRequested_by( data.requested_by || null, {
transaction,
});
await approval_requests.setOrganizations( data.organizations || null, {
transaction,
});
await approval_requests.setDecisions(data.decisions || [], {
transaction,
});
return approval_requests;
}
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 approval_requestsData = data.map((item, index) => ({
id: item.id || undefined,
object_type: item.object_type
||
null
,
object_ref: item.object_ref
||
null
,
status: item.status
||
null
,
requested_at: item.requested_at
||
null
,
resolved_at: item.resolved_at
||
null
,
reason: item.reason
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const approval_requests = await db.approval_requests.bulkCreate(approval_requestsData, { transaction });
// For each item created, replace relation files
return approval_requests;
}
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 approval_requests = await db.approval_requests.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.object_type !== undefined) updatePayload.object_type = data.object_type;
if (data.object_ref !== undefined) updatePayload.object_ref = data.object_ref;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.requested_at !== undefined) updatePayload.requested_at = data.requested_at;
if (data.resolved_at !== undefined) updatePayload.resolved_at = data.resolved_at;
if (data.reason !== undefined) updatePayload.reason = data.reason;
updatePayload.updatedById = currentUser.id;
await approval_requests.update(updatePayload, {transaction});
if (data.tenant !== undefined) {
await approval_requests.setTenant(
data.tenant,
{ transaction }
);
}
if (data.workflow !== undefined) {
await approval_requests.setWorkflow(
data.workflow,
{ transaction }
);
}
if (data.requested_by !== undefined) {
await approval_requests.setRequested_by(
data.requested_by,
{ transaction }
);
}
if (data.organizations !== undefined) {
await approval_requests.setOrganizations(
data.organizations,
{ transaction }
);
}
if (data.decisions !== undefined) {
await approval_requests.setDecisions(data.decisions, { transaction });
}
return approval_requests;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const approval_requests = await db.approval_requests.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of approval_requests) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of approval_requests) {
await record.destroy({transaction});
}
});
return approval_requests;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const approval_requests = await db.approval_requests.findByPk(id, options);
await approval_requests.update({
deletedBy: currentUser.id
}, {
transaction,
});
await approval_requests.destroy({
transaction
});
return approval_requests;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const approval_requests = await db.approval_requests.findOne(
{ where },
{ transaction },
);
if (!approval_requests) {
return approval_requests;
}
const output = approval_requests.get({plain: true});
output.approval_decisions_request = await approval_requests.getApproval_decisions_request({
transaction
});
output.tenant = await approval_requests.getTenant({
transaction
});
output.workflow = await approval_requests.getWorkflow({
transaction
});
output.requested_by = await approval_requests.getRequested_by({
transaction
});
output.decisions = await approval_requests.getDecisions({
transaction
});
output.organizations = await approval_requests.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.approval_workflows,
as: 'workflow',
where: filter.workflow ? {
[Op.or]: [
{ id: { [Op.in]: filter.workflow.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.workflow.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.users,
as: 'requested_by',
where: filter.requested_by ? {
[Op.or]: [
{ id: { [Op.in]: filter.requested_by.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.requested_by.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.organizations,
as: 'organizations',
},
{
model: db.approval_decisions,
as: 'decisions',
required: false,
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.object_type) {
where = {
...where,
[Op.and]: Utils.ilike(
'approval_requests',
'object_type',
filter.object_type,
),
};
}
if (filter.object_ref) {
where = {
...where,
[Op.and]: Utils.ilike(
'approval_requests',
'object_ref',
filter.object_ref,
),
};
}
if (filter.reason) {
where = {
...where,
[Op.and]: Utils.ilike(
'approval_requests',
'reason',
filter.reason,
),
};
}
if (filter.requested_atRange) {
const [start, end] = filter.requested_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
requested_at: {
...where.requested_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
requested_at: {
...where.requested_at,
[Op.lte]: end,
},
};
}
}
if (filter.resolved_atRange) {
const [start, end] = filter.resolved_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
resolved_at: {
...where.resolved_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
resolved_at: {
...where.resolved_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.decisions) {
const searchTerms = filter.decisions.split('|');
include = [
{
model: db.approval_decisions,
as: 'decisions_filter',
required: searchTerms.length > 0,
where: searchTerms.length > 0 ? {
[Op.or]: [
{ id: { [Op.in]: searchTerms.map(term => Utils.uuid(term)) } },
{
decision: {
[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,
},
};
}
}
}
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.approval_requests.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(
'approval_requests',
'object_ref',
query,
),
],
};
}
const records = await db.approval_requests.findAll({
attributes: [ 'id', 'object_ref' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['object_ref', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.object_ref,
}));
}
};