40001-vm/backend/src/db/api/clinical_scales.js
2026-05-14 12:30:20 +00:00

540 lines
13 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 Clinical_scalesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const clinical_scales = await db.clinical_scales.create(
{
id: data.id || undefined,
name: data.name
||
null
,
description: data.description
||
null
,
min_score: data.min_score
||
null
,
max_score: data.max_score
||
null
,
direction: data.direction
||
null
,
active: data.active
||
false
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await clinical_scales.setOrganizations( data.organizations || null, {
transaction,
});
return clinical_scales;
}
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 clinical_scalesData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
description: item.description
||
null
,
min_score: item.min_score
||
null
,
max_score: item.max_score
||
null
,
direction: item.direction
||
null
,
active: item.active
||
false
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const clinical_scales = await db.clinical_scales.bulkCreate(clinical_scalesData, { transaction });
// For each item created, replace relation files
return clinical_scales;
}
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 clinical_scales = await db.clinical_scales.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.description !== undefined) updatePayload.description = data.description;
if (data.min_score !== undefined) updatePayload.min_score = data.min_score;
if (data.max_score !== undefined) updatePayload.max_score = data.max_score;
if (data.direction !== undefined) updatePayload.direction = data.direction;
if (data.active !== undefined) updatePayload.active = data.active;
updatePayload.updatedById = currentUser.id;
await clinical_scales.update(updatePayload, {transaction});
if (data.organizations !== undefined) {
await clinical_scales.setOrganizations(
data.organizations,
{ transaction }
);
}
return clinical_scales;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const clinical_scales = await db.clinical_scales.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of clinical_scales) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of clinical_scales) {
await record.destroy({transaction});
}
});
return clinical_scales;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const clinical_scales = await db.clinical_scales.findByPk(id, options);
await clinical_scales.update({
deletedBy: currentUser.id
}, {
transaction,
});
await clinical_scales.destroy({
transaction
});
return clinical_scales;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const clinical_scales = await db.clinical_scales.findOne(
{ where },
{ transaction },
);
if (!clinical_scales) {
return clinical_scales;
}
const output = clinical_scales.get({plain: true});
output.scale_results_clinical_scale = await clinical_scales.getScale_results_clinical_scale({
transaction
});
output.organizations = await clinical_scales.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.organizations,
as: 'organizations',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'clinical_scales',
'name',
filter.name,
),
};
}
if (filter.description) {
where = {
...where,
[Op.and]: Utils.ilike(
'clinical_scales',
'description',
filter.description,
),
};
}
if (filter.min_scoreRange) {
const [start, end] = filter.min_scoreRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
min_score: {
...where.min_score,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
min_score: {
...where.min_score,
[Op.lte]: end,
},
};
}
}
if (filter.max_scoreRange) {
const [start, end] = filter.max_scoreRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
max_score: {
...where.max_score,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
max_score: {
...where.max_score,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.direction) {
where = {
...where,
direction: filter.direction,
};
}
if (filter.active) {
where = {
...where,
active: filter.active,
};
}
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.clinical_scales.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(
'clinical_scales',
'name',
query,
),
],
};
}
const records = await db.clinical_scales.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,
}));
}
};