39230-vm/backend/src/db/api/study_plan_items.js
2026-03-18 00:00:49 +00:00

691 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 Study_plan_itemsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const study_plan_items = await db.study_plan_items.create(
{
id: data.id || undefined,
title: data.title
||
null
,
item_type: data.item_type
||
null
,
scheduled_start_at: data.scheduled_start_at
||
null
,
scheduled_end_at: data.scheduled_end_at
||
null
,
status: data.status
||
null
,
estimated_minutes: data.estimated_minutes
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await study_plan_items.setStudy_plan( data.study_plan || null, {
transaction,
});
await study_plan_items.setSubject( data.subject || null, {
transaction,
});
await study_plan_items.setTopic( data.topic || null, {
transaction,
});
await study_plan_items.setOrganizations( data.organizations || null, {
transaction,
});
return study_plan_items;
}
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 study_plan_itemsData = data.map((item, index) => ({
id: item.id || undefined,
title: item.title
||
null
,
item_type: item.item_type
||
null
,
scheduled_start_at: item.scheduled_start_at
||
null
,
scheduled_end_at: item.scheduled_end_at
||
null
,
status: item.status
||
null
,
estimated_minutes: item.estimated_minutes
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const study_plan_items = await db.study_plan_items.bulkCreate(study_plan_itemsData, { transaction });
// For each item created, replace relation files
return study_plan_items;
}
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 study_plan_items = await db.study_plan_items.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.title !== undefined) updatePayload.title = data.title;
if (data.item_type !== undefined) updatePayload.item_type = data.item_type;
if (data.scheduled_start_at !== undefined) updatePayload.scheduled_start_at = data.scheduled_start_at;
if (data.scheduled_end_at !== undefined) updatePayload.scheduled_end_at = data.scheduled_end_at;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.estimated_minutes !== undefined) updatePayload.estimated_minutes = data.estimated_minutes;
updatePayload.updatedById = currentUser.id;
await study_plan_items.update(updatePayload, {transaction});
if (data.study_plan !== undefined) {
await study_plan_items.setStudy_plan(
data.study_plan,
{ transaction }
);
}
if (data.subject !== undefined) {
await study_plan_items.setSubject(
data.subject,
{ transaction }
);
}
if (data.topic !== undefined) {
await study_plan_items.setTopic(
data.topic,
{ transaction }
);
}
if (data.organizations !== undefined) {
await study_plan_items.setOrganizations(
data.organizations,
{ transaction }
);
}
return study_plan_items;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const study_plan_items = await db.study_plan_items.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of study_plan_items) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of study_plan_items) {
await record.destroy({transaction});
}
});
return study_plan_items;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const study_plan_items = await db.study_plan_items.findByPk(id, options);
await study_plan_items.update({
deletedBy: currentUser.id
}, {
transaction,
});
await study_plan_items.destroy({
transaction
});
return study_plan_items;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const study_plan_items = await db.study_plan_items.findOne(
{ where },
{ transaction },
);
if (!study_plan_items) {
return study_plan_items;
}
const output = study_plan_items.get({plain: true});
output.study_plan = await study_plan_items.getStudy_plan({
transaction
});
output.subject = await study_plan_items.getSubject({
transaction
});
output.topic = await study_plan_items.getTopic({
transaction
});
output.organizations = await study_plan_items.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.study_plans,
as: 'study_plan',
where: filter.study_plan ? {
[Op.or]: [
{ id: { [Op.in]: filter.study_plan.split('|').map(term => Utils.uuid(term)) } },
{
title: {
[Op.or]: filter.study_plan.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.subjects,
as: 'subject',
where: filter.subject ? {
[Op.or]: [
{ id: { [Op.in]: filter.subject.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.subject.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.topics,
as: 'topic',
where: filter.topic ? {
[Op.or]: [
{ id: { [Op.in]: filter.topic.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.topic.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(
'study_plan_items',
'title',
filter.title,
),
};
}
if (filter.calendarStart && filter.calendarEnd) {
where = {
...where,
[Op.or]: [
{
scheduled_start_at: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
{
scheduled_end_at: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
],
};
}
if (filter.scheduled_start_atRange) {
const [start, end] = filter.scheduled_start_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
scheduled_start_at: {
...where.scheduled_start_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
scheduled_start_at: {
...where.scheduled_start_at,
[Op.lte]: end,
},
};
}
}
if (filter.scheduled_end_atRange) {
const [start, end] = filter.scheduled_end_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
scheduled_end_at: {
...where.scheduled_end_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
scheduled_end_at: {
...where.scheduled_end_at,
[Op.lte]: end,
},
};
}
}
if (filter.estimated_minutesRange) {
const [start, end] = filter.estimated_minutesRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
estimated_minutes: {
...where.estimated_minutes,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
estimated_minutes: {
...where.estimated_minutes,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.item_type) {
where = {
...where,
item_type: filter.item_type,
};
}
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.study_plan_items.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(
'study_plan_items',
'title',
query,
),
],
};
}
const records = await db.study_plan_items.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,
}));
}
};