39622-vm/backend/src/db/api/attendance_sessions.js
2026-04-13 14:54:24 +00:00

545 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 Attendance_sessionsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const attendance_sessions = await db.attendance_sessions.create(
{
id: data.id || undefined,
session_start: data.session_start
||
null
,
session_end: data.session_end
||
null
,
status: data.status
||
null
,
notes: data.notes
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await attendance_sessions.setCourse_section( data.course_section || null, {
transaction,
});
await attendance_sessions.setTeacher( data.teacher || null, {
transaction,
});
return attendance_sessions;
}
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 attendance_sessionsData = data.map((item, index) => ({
id: item.id || undefined,
session_start: item.session_start
||
null
,
session_end: item.session_end
||
null
,
status: item.status
||
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 attendance_sessions = await db.attendance_sessions.bulkCreate(attendance_sessionsData, { transaction });
// For each item created, replace relation files
return attendance_sessions;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const attendance_sessions = await db.attendance_sessions.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.session_start !== undefined) updatePayload.session_start = data.session_start;
if (data.session_end !== undefined) updatePayload.session_end = data.session_end;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.notes !== undefined) updatePayload.notes = data.notes;
updatePayload.updatedById = currentUser.id;
await attendance_sessions.update(updatePayload, {transaction});
if (data.course_section !== undefined) {
await attendance_sessions.setCourse_section(
data.course_section,
{ transaction }
);
}
if (data.teacher !== undefined) {
await attendance_sessions.setTeacher(
data.teacher,
{ transaction }
);
}
return attendance_sessions;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const attendance_sessions = await db.attendance_sessions.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of attendance_sessions) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of attendance_sessions) {
await record.destroy({transaction});
}
});
return attendance_sessions;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const attendance_sessions = await db.attendance_sessions.findByPk(id, options);
await attendance_sessions.update({
deletedBy: currentUser.id
}, {
transaction,
});
await attendance_sessions.destroy({
transaction
});
return attendance_sessions;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const attendance_sessions = await db.attendance_sessions.findOne(
{ where },
{ transaction },
);
if (!attendance_sessions) {
return attendance_sessions;
}
const output = attendance_sessions.get({plain: true});
output.attendance_records_attendance_session = await attendance_sessions.getAttendance_records_attendance_session({
transaction
});
output.course_section = await attendance_sessions.getCourse_section({
transaction
});
output.teacher = await attendance_sessions.getTeacher({
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.course_sections,
as: 'course_section',
where: filter.course_section ? {
[Op.or]: [
{ id: { [Op.in]: filter.course_section.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.course_section.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.teachers,
as: 'teacher',
where: filter.teacher ? {
[Op.or]: [
{ id: { [Op.in]: filter.teacher.split('|').map(term => Utils.uuid(term)) } },
{
employee_number: {
[Op.or]: filter.teacher.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.notes) {
where = {
...where,
[Op.and]: Utils.ilike(
'attendance_sessions',
'notes',
filter.notes,
),
};
}
if (filter.calendarStart && filter.calendarEnd) {
where = {
...where,
[Op.or]: [
{
session_start: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
{
session_end: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
],
};
}
if (filter.session_startRange) {
const [start, end] = filter.session_startRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
session_start: {
...where.session_start,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
session_start: {
...where.session_start,
[Op.lte]: end,
},
};
}
}
if (filter.session_endRange) {
const [start, end] = filter.session_endRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
session_end: {
...where.session_end,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
session_end: {
...where.session_end,
[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.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.attendance_sessions.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(
'attendance_sessions',
'status',
query,
),
],
};
}
const records = await db.attendance_sessions.findAll({
attributes: [ 'id', 'status' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['status', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.status,
}));
}
};