39860-vm/backend/src/db/api/injuries.js
2026-05-01 14:21:59 +00:00

644 lines
14 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 InjuriesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const injuries = await db.injuries.create(
{
id: data.id || undefined,
injury_date: data.injury_date
||
null
,
mechanism: data.mechanism
||
null
,
diagnosis: data.diagnosis
||
null
,
affected_structure: data.affected_structure
||
null
,
severity: data.severity
||
null
,
recovery_stage: data.recovery_stage
||
null
,
initial_treatment: data.initial_treatment
||
null
,
notes: data.notes
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await injuries.setUser( data.user || null, {
transaction,
});
return injuries;
}
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 injuriesData = data.map((item, index) => ({
id: item.id || undefined,
injury_date: item.injury_date
||
null
,
mechanism: item.mechanism
||
null
,
diagnosis: item.diagnosis
||
null
,
affected_structure: item.affected_structure
||
null
,
severity: item.severity
||
null
,
recovery_stage: item.recovery_stage
||
null
,
initial_treatment: item.initial_treatment
||
null
,
notes: item.notes
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const injuries = await db.injuries.bulkCreate(injuriesData, { transaction });
// For each item created, replace relation files
return injuries;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const injuries = await db.injuries.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.injury_date !== undefined) updatePayload.injury_date = data.injury_date;
if (data.mechanism !== undefined) updatePayload.mechanism = data.mechanism;
if (data.diagnosis !== undefined) updatePayload.diagnosis = data.diagnosis;
if (data.affected_structure !== undefined) updatePayload.affected_structure = data.affected_structure;
if (data.severity !== undefined) updatePayload.severity = data.severity;
if (data.recovery_stage !== undefined) updatePayload.recovery_stage = data.recovery_stage;
if (data.initial_treatment !== undefined) updatePayload.initial_treatment = data.initial_treatment;
if (data.notes !== undefined) updatePayload.notes = data.notes;
updatePayload.updatedById = currentUser.id;
await injuries.update(updatePayload, {transaction});
if (data.user !== undefined) {
await injuries.setUser(
data.user,
{ transaction }
);
}
return injuries;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const injuries = await db.injuries.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of injuries) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of injuries) {
await record.destroy({transaction});
}
});
return injuries;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const injuries = await db.injuries.findByPk(id, options);
await injuries.update({
deletedBy: currentUser.id
}, {
transaction,
});
await injuries.destroy({
transaction
});
return injuries;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const injuries = await db.injuries.findOne(
{ where },
{ transaction },
);
if (!injuries) {
return injuries;
}
const output = injuries.get({plain: true});
output.physio_exercises_injury = await injuries.getPhysio_exercises_injury({
transaction
});
output.user = await injuries.getUser({
transaction
});
return output;
}
static async findAll(
filter,
options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.diagnosis) {
where = {
...where,
[Op.and]: Utils.ilike(
'injuries',
'diagnosis',
filter.diagnosis,
),
};
}
if (filter.initial_treatment) {
where = {
...where,
[Op.and]: Utils.ilike(
'injuries',
'initial_treatment',
filter.initial_treatment,
),
};
}
if (filter.notes) {
where = {
...where,
[Op.and]: Utils.ilike(
'injuries',
'notes',
filter.notes,
),
};
}
if (filter.injury_dateRange) {
const [start, end] = filter.injury_dateRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
injury_date: {
...where.injury_date,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
injury_date: {
...where.injury_date,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.mechanism) {
where = {
...where,
mechanism: filter.mechanism,
};
}
if (filter.affected_structure) {
where = {
...where,
affected_structure: filter.affected_structure,
};
}
if (filter.severity) {
where = {
...where,
severity: filter.severity,
};
}
if (filter.recovery_stage) {
where = {
...where,
recovery_stage: filter.recovery_stage,
};
}
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,
},
};
}
}
}
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.injuries.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, ) {
let where = {};
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'injuries',
'diagnosis',
query,
),
],
};
}
const records = await db.injuries.findAll({
attributes: [ 'id', 'diagnosis' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['diagnosis', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.diagnosis,
}));
}
};