39903-vm/backend/src/db/api/accreditation_programs.js
2026-05-05 09:38:04 +00:00

624 lines
16 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 Accreditation_programsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const accreditation_programs = await db.accreditation_programs.create(
{
id: data.id || undefined,
name: data.name
||
null
,
code: data.code
||
null
,
description: data.description
||
null
,
status: data.status
||
null
,
validity_months: data.validity_months
||
null
,
passing_score: data.passing_score
||
null
,
published_at: data.published_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await accreditation_programs.setOrganization(currentUser.organization.id || null, {
transaction,
});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.accreditation_programs.getTableName(),
belongsToColumn: 'templates',
belongsToId: accreditation_programs.id,
},
data.templates,
options,
);
return accreditation_programs;
}
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 accreditation_programsData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
code: item.code
||
null
,
description: item.description
||
null
,
status: item.status
||
null
,
validity_months: item.validity_months
||
null
,
passing_score: item.passing_score
||
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 accreditation_programs = await db.accreditation_programs.bulkCreate(accreditation_programsData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < accreditation_programs.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.accreditation_programs.getTableName(),
belongsToColumn: 'templates',
belongsToId: accreditation_programs[i].id,
},
data[i].templates,
options,
);
}
return accreditation_programs;
}
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 accreditation_programs = await db.accreditation_programs.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.code !== undefined) updatePayload.code = data.code;
if (data.description !== undefined) updatePayload.description = data.description;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.validity_months !== undefined) updatePayload.validity_months = data.validity_months;
if (data.passing_score !== undefined) updatePayload.passing_score = data.passing_score;
if (data.published_at !== undefined) updatePayload.published_at = data.published_at;
updatePayload.updatedById = currentUser.id;
await accreditation_programs.update(updatePayload, {transaction});
if (data.organization !== undefined) {
await accreditation_programs.setOrganization(
(globalAccess ? data.organization : currentUser.organization.id),
{ transaction }
);
}
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.accreditation_programs.getTableName(),
belongsToColumn: 'templates',
belongsToId: accreditation_programs.id,
},
data.templates,
options,
);
return accreditation_programs;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const accreditation_programs = await db.accreditation_programs.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of accreditation_programs) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of accreditation_programs) {
await record.destroy({transaction});
}
});
return accreditation_programs;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const accreditation_programs = await db.accreditation_programs.findByPk(id, options);
await accreditation_programs.update({
deletedBy: currentUser.id
}, {
transaction,
});
await accreditation_programs.destroy({
transaction
});
return accreditation_programs;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const accreditation_programs = await db.accreditation_programs.findOne(
{ where },
{ transaction },
);
if (!accreditation_programs) {
return accreditation_programs;
}
const output = accreditation_programs.get({plain: true});
output.accreditation_stages_program = await accreditation_programs.getAccreditation_stages_program({
transaction
});
output.accreditation_cases_program = await accreditation_programs.getAccreditation_cases_program({
transaction
});
output.organization = await accreditation_programs.getOrganization({
transaction
});
output.templates = await accreditation_programs.getTemplates({
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.organizations,
as: 'organization',
},
{
model: db.file,
as: 'templates',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'accreditation_programs',
'name',
filter.name,
),
};
}
if (filter.code) {
where = {
...where,
[Op.and]: Utils.ilike(
'accreditation_programs',
'code',
filter.code,
),
};
}
if (filter.description) {
where = {
...where,
[Op.and]: Utils.ilike(
'accreditation_programs',
'description',
filter.description,
),
};
}
if (filter.validity_monthsRange) {
const [start, end] = filter.validity_monthsRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
validity_months: {
...where.validity_months,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
validity_months: {
...where.validity_months,
[Op.lte]: end,
},
};
}
}
if (filter.passing_scoreRange) {
const [start, end] = filter.passing_scoreRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
passing_score: {
...where.passing_score,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
passing_score: {
...where.passing_score,
[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.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.organization) {
const listItems = filter.organization.split('|').map(item => {
return Utils.uuid(item)
});
where = {
...where,
organizationId: {[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.accreditation_programs.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(
'accreditation_programs',
'name',
query,
),
],
};
}
const records = await db.accreditation_programs.findAll({
attributes: [ 'id', 'name' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['name', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.name,
}));
}
};