694 lines
17 KiB
JavaScript
694 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 Solution_proposalsDBApi {
|
|
|
|
|
|
|
|
static async create(data, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const solution_proposals = await db.solution_proposals.create(
|
|
{
|
|
id: data.id || undefined,
|
|
|
|
title: data.title
|
|
||
|
|
null
|
|
,
|
|
|
|
summary: data.summary
|
|
||
|
|
null
|
|
,
|
|
|
|
proposal: data.proposal
|
|
||
|
|
null
|
|
,
|
|
|
|
impact_level: data.impact_level
|
|
||
|
|
null
|
|
,
|
|
|
|
cost_level: data.cost_level
|
|
||
|
|
null
|
|
,
|
|
|
|
time_horizon: data.time_horizon
|
|
||
|
|
null
|
|
,
|
|
|
|
status: data.status
|
|
||
|
|
null
|
|
,
|
|
|
|
submitted_at: data.submitted_at
|
|
||
|
|
null
|
|
,
|
|
|
|
published_at: data.published_at
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
|
|
await solution_proposals.setProblem_report( data.problem_report || null, {
|
|
transaction,
|
|
});
|
|
|
|
await solution_proposals.setAuthor( data.author || null, {
|
|
transaction,
|
|
});
|
|
|
|
await solution_proposals.setOrganizations( data.organizations || null, {
|
|
transaction,
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return solution_proposals;
|
|
}
|
|
|
|
|
|
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 solution_proposalsData = data.map((item, index) => ({
|
|
id: item.id || undefined,
|
|
|
|
title: item.title
|
|
||
|
|
null
|
|
,
|
|
|
|
summary: item.summary
|
|
||
|
|
null
|
|
,
|
|
|
|
proposal: item.proposal
|
|
||
|
|
null
|
|
,
|
|
|
|
impact_level: item.impact_level
|
|
||
|
|
null
|
|
,
|
|
|
|
cost_level: item.cost_level
|
|
||
|
|
null
|
|
,
|
|
|
|
time_horizon: item.time_horizon
|
|
||
|
|
null
|
|
,
|
|
|
|
status: item.status
|
|
||
|
|
null
|
|
,
|
|
|
|
submitted_at: item.submitted_at
|
|
||
|
|
null
|
|
,
|
|
|
|
published_at: item.published_at
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: item.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
createdAt: new Date(Date.now() + index * 1000),
|
|
}));
|
|
|
|
// Bulk create items
|
|
const solution_proposals = await db.solution_proposals.bulkCreate(solution_proposalsData, { transaction });
|
|
|
|
// For each item created, replace relation files
|
|
|
|
|
|
return solution_proposals;
|
|
}
|
|
|
|
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 solution_proposals = await db.solution_proposals.findByPk(id, {}, {transaction});
|
|
|
|
|
|
|
|
|
|
const updatePayload = {};
|
|
|
|
if (data.title !== undefined) updatePayload.title = data.title;
|
|
|
|
|
|
if (data.summary !== undefined) updatePayload.summary = data.summary;
|
|
|
|
|
|
if (data.proposal !== undefined) updatePayload.proposal = data.proposal;
|
|
|
|
|
|
if (data.impact_level !== undefined) updatePayload.impact_level = data.impact_level;
|
|
|
|
|
|
if (data.cost_level !== undefined) updatePayload.cost_level = data.cost_level;
|
|
|
|
|
|
if (data.time_horizon !== undefined) updatePayload.time_horizon = data.time_horizon;
|
|
|
|
|
|
if (data.status !== undefined) updatePayload.status = data.status;
|
|
|
|
|
|
if (data.submitted_at !== undefined) updatePayload.submitted_at = data.submitted_at;
|
|
|
|
|
|
if (data.published_at !== undefined) updatePayload.published_at = data.published_at;
|
|
|
|
|
|
updatePayload.updatedById = currentUser.id;
|
|
|
|
await solution_proposals.update(updatePayload, {transaction});
|
|
|
|
|
|
|
|
if (data.problem_report !== undefined) {
|
|
await solution_proposals.setProblem_report(
|
|
|
|
data.problem_report,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.author !== undefined) {
|
|
await solution_proposals.setAuthor(
|
|
|
|
data.author,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.organizations !== undefined) {
|
|
await solution_proposals.setOrganizations(
|
|
|
|
data.organizations,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return solution_proposals;
|
|
}
|
|
|
|
static async deleteByIds(ids, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const solution_proposals = await db.solution_proposals.findAll({
|
|
where: {
|
|
id: {
|
|
[Op.in]: ids,
|
|
},
|
|
},
|
|
transaction,
|
|
});
|
|
|
|
await db.sequelize.transaction(async (transaction) => {
|
|
for (const record of solution_proposals) {
|
|
await record.update(
|
|
{deletedBy: currentUser.id},
|
|
{transaction}
|
|
);
|
|
}
|
|
for (const record of solution_proposals) {
|
|
await record.destroy({transaction});
|
|
}
|
|
});
|
|
|
|
|
|
return solution_proposals;
|
|
}
|
|
|
|
static async remove(id, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const solution_proposals = await db.solution_proposals.findByPk(id, options);
|
|
|
|
await solution_proposals.update({
|
|
deletedBy: currentUser.id
|
|
}, {
|
|
transaction,
|
|
});
|
|
|
|
await solution_proposals.destroy({
|
|
transaction
|
|
});
|
|
|
|
return solution_proposals;
|
|
}
|
|
|
|
static async findBy(where, options) {
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const solution_proposals = await db.solution_proposals.findOne(
|
|
{ where },
|
|
{ transaction },
|
|
);
|
|
|
|
if (!solution_proposals) {
|
|
return solution_proposals;
|
|
}
|
|
|
|
const output = solution_proposals.get({plain: true});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.votes_solution_proposal = await solution_proposals.getVotes_solution_proposal({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.comments_solution_proposal = await solution_proposals.getComments_solution_proposal({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.problem_report = await solution_proposals.getProblem_report({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.author = await solution_proposals.getAuthor({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.organizations = await solution_proposals.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.problem_reports,
|
|
as: 'problem_report',
|
|
|
|
where: filter.problem_report ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.problem_report.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
title: {
|
|
[Op.or]: filter.problem_report.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.users,
|
|
as: 'author',
|
|
|
|
where: filter.author ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.author.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
firstName: {
|
|
[Op.or]: filter.author.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.title) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'solution_proposals',
|
|
'title',
|
|
filter.title,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.summary) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'solution_proposals',
|
|
'summary',
|
|
filter.summary,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.proposal) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'solution_proposals',
|
|
'proposal',
|
|
filter.proposal,
|
|
),
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (filter.submitted_atRange) {
|
|
const [start, end] = filter.submitted_atRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
submitted_at: {
|
|
...where.submitted_at,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
submitted_at: {
|
|
...where.submitted_at,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.published_atRange) {
|
|
const [start, end] = filter.published_atRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
published_at: {
|
|
...where.published_at,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
published_at: {
|
|
...where.published_at,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
if (filter.active !== undefined) {
|
|
where = {
|
|
...where,
|
|
active: filter.active === true || filter.active === 'true'
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.impact_level) {
|
|
where = {
|
|
...where,
|
|
impact_level: filter.impact_level,
|
|
};
|
|
}
|
|
|
|
if (filter.cost_level) {
|
|
where = {
|
|
...where,
|
|
cost_level: filter.cost_level,
|
|
};
|
|
}
|
|
|
|
if (filter.time_horizon) {
|
|
where = {
|
|
...where,
|
|
time_horizon: filter.time_horizon,
|
|
};
|
|
}
|
|
|
|
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.solution_proposals.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(
|
|
'solution_proposals',
|
|
'title',
|
|
query,
|
|
),
|
|
],
|
|
};
|
|
}
|
|
|
|
const records = await db.solution_proposals.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,
|
|
}));
|
|
}
|
|
|
|
|
|
};
|
|
|