32788/backend/src/db/api/treatment_plans.js
2025-07-13 16:53:01 +00:00

373 lines
9.1 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 Treatment_plansDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const treatment_plans = await db.treatment_plans.create(
{
id: data.id || undefined,
medication: data.medication || null,
dosage: data.dosage || null,
start_date: data.start_date || null,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await treatment_plans.setRehabilitationfacility(
data.rehabilitationfacility || null,
{
transaction,
},
);
return treatment_plans;
}
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 treatment_plansData = data.map((item, index) => ({
id: item.id || undefined,
medication: item.medication || null,
dosage: item.dosage || null,
start_date: item.start_date || null,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const treatment_plans = await db.treatment_plans.bulkCreate(
treatment_plansData,
{ transaction },
);
// For each item created, replace relation files
return treatment_plans;
}
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 treatment_plans = await db.treatment_plans.findByPk(
id,
{},
{ transaction },
);
const updatePayload = {};
if (data.medication !== undefined)
updatePayload.medication = data.medication;
if (data.dosage !== undefined) updatePayload.dosage = data.dosage;
if (data.start_date !== undefined)
updatePayload.start_date = data.start_date;
updatePayload.updatedById = currentUser.id;
await treatment_plans.update(updatePayload, { transaction });
if (data.rehabilitationfacility !== undefined) {
await treatment_plans.setRehabilitationfacility(
data.rehabilitationfacility,
{ transaction },
);
}
return treatment_plans;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const treatment_plans = await db.treatment_plans.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of treatment_plans) {
await record.update({ deletedBy: currentUser.id }, { transaction });
}
for (const record of treatment_plans) {
await record.destroy({ transaction });
}
});
return treatment_plans;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const treatment_plans = await db.treatment_plans.findByPk(id, options);
await treatment_plans.update(
{
deletedBy: currentUser.id,
},
{
transaction,
},
);
await treatment_plans.destroy({
transaction,
});
return treatment_plans;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const treatment_plans = await db.treatment_plans.findOne(
{ where },
{ transaction },
);
if (!treatment_plans) {
return treatment_plans;
}
const output = treatment_plans.get({ plain: true });
output.medication_reminders_treatment_plan =
await treatment_plans.getMedication_reminders_treatment_plan({
transaction,
});
output.rehabilitationfacility =
await treatment_plans.getRehabilitationfacility({
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 userRehabilitationfacility =
(user && user.rehabilitationfacility?.id) || null;
if (userRehabilitationfacility) {
if (options?.currentUser?.rehabilitationfacilityId) {
where.rehabilitationfacilityId =
options.currentUser.rehabilitationfacilityId;
}
}
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.rehabilitationfacility,
as: 'rehabilitationfacility',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.medication) {
where = {
...where,
[Op.and]: Utils.ilike(
'treatment_plans',
'medication',
filter.medication,
),
};
}
if (filter.dosage) {
where = {
...where,
[Op.and]: Utils.ilike('treatment_plans', 'dosage', filter.dosage),
};
}
if (filter.start_dateRange) {
const [start, end] = filter.start_dateRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
start_date: {
...where.start_date,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
start_date: {
...where.start_date,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true',
};
}
if (filter.rehabilitationfacility) {
const listItems = filter.rehabilitationfacility
.split('|')
.map((item) => {
return Utils.uuid(item);
});
where = {
...where,
rehabilitationfacilityId: { [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.rehabilitationfacilityId;
}
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.treatment_plans.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('treatment_plans', 'medication', query),
],
};
}
const records = await db.treatment_plans.findAll({
attributes: ['id', 'medication'],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['medication', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.medication,
}));
}
};