643 lines
16 KiB
JavaScript
643 lines
16 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_date: data.session_date
|
|
||
|
|
null
|
|
,
|
|
|
|
status: data.status
|
|
||
|
|
null
|
|
,
|
|
|
|
notes: data.notes
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
|
|
await attendance_sessions.setSchool( data.school || null, {
|
|
transaction,
|
|
});
|
|
|
|
await attendance_sessions.setAcademic_year( data.academic_year || null, {
|
|
transaction,
|
|
});
|
|
|
|
await attendance_sessions.setClass_section( data.class_section || null, {
|
|
transaction,
|
|
});
|
|
|
|
await attendance_sessions.setTeacher( data.teacher || null, {
|
|
transaction,
|
|
});
|
|
|
|
await attendance_sessions.setSubject( data.subject || null, {
|
|
transaction,
|
|
});
|
|
|
|
await attendance_sessions.setPeriod_slot( data.period_slot || 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_date: item.session_date
|
|
||
|
|
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 globalAccess = currentUser.app_role?.globalAccess;
|
|
|
|
const attendance_sessions = await db.attendance_sessions.findByPk(id, {}, {transaction});
|
|
|
|
|
|
|
|
|
|
const updatePayload = {};
|
|
|
|
if (data.session_date !== undefined) updatePayload.session_date = data.session_date;
|
|
|
|
|
|
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.school !== undefined) {
|
|
await attendance_sessions.setSchool(
|
|
|
|
data.school,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.academic_year !== undefined) {
|
|
await attendance_sessions.setAcademic_year(
|
|
|
|
data.academic_year,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.class_section !== undefined) {
|
|
await attendance_sessions.setClass_section(
|
|
|
|
data.class_section,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.teacher !== undefined) {
|
|
await attendance_sessions.setTeacher(
|
|
|
|
data.teacher,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.subject !== undefined) {
|
|
await attendance_sessions.setSubject(
|
|
|
|
data.subject,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.period_slot !== undefined) {
|
|
await attendance_sessions.setPeriod_slot(
|
|
|
|
data.period_slot,
|
|
|
|
{ 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.school = await attendance_sessions.getSchool({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.academic_year = await attendance_sessions.getAcademic_year({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.class_section = await attendance_sessions.getClass_section({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.teacher = await attendance_sessions.getTeacher({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.subject = await attendance_sessions.getSubject({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.period_slot = await attendance_sessions.getPeriod_slot({
|
|
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 userSchools = (user && user.schools?.id) || null;
|
|
|
|
|
|
|
|
if (userSchools) {
|
|
if (options?.currentUser?.schoolsId) {
|
|
where.schoolsId = options.currentUser.schoolsId;
|
|
}
|
|
}
|
|
|
|
|
|
offset = currentPage * limit;
|
|
|
|
const orderBy = null;
|
|
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
let include = [
|
|
|
|
{
|
|
model: db.schools,
|
|
as: 'school',
|
|
|
|
},
|
|
|
|
{
|
|
model: db.academic_years,
|
|
as: 'academic_year',
|
|
|
|
where: filter.academic_year ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.academic_year.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
label: {
|
|
[Op.or]: filter.academic_year.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.class_sections,
|
|
as: 'class_section',
|
|
|
|
where: filter.class_section ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.class_section.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
name: {
|
|
[Op.or]: filter.class_section.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.users,
|
|
as: 'teacher',
|
|
|
|
where: filter.teacher ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.teacher.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
firstName: {
|
|
[Op.or]: filter.teacher.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.period_slots,
|
|
as: 'period_slot',
|
|
|
|
where: filter.period_slot ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.period_slot.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
name: {
|
|
[Op.or]: filter.period_slot.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.session_dateRange) {
|
|
const [start, end] = filter.session_dateRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
session_date: {
|
|
...where.session_date,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
session_date: {
|
|
...where.session_date,
|
|
[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.school) {
|
|
const listItems = filter.school.split('|').map(item => {
|
|
return Utils.uuid(item)
|
|
});
|
|
|
|
where = {
|
|
...where,
|
|
schoolId: {[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.schoolsId;
|
|
}
|
|
|
|
|
|
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, globalAccess, organizationId,) {
|
|
let where = {};
|
|
|
|
|
|
if (!globalAccess && organizationId) {
|
|
where.organizationId = organizationId;
|
|
}
|
|
|
|
|
|
if (query) {
|
|
where = {
|
|
[Op.or]: [
|
|
{ ['id']: Utils.uuid(query) },
|
|
Utils.ilike(
|
|
'attendance_sessions',
|
|
'notes',
|
|
query,
|
|
),
|
|
],
|
|
};
|
|
}
|
|
|
|
const records = await db.attendance_sessions.findAll({
|
|
attributes: [ 'id', 'notes' ],
|
|
where,
|
|
limit: limit ? Number(limit) : undefined,
|
|
offset: offset ? Number(offset) : undefined,
|
|
orderBy: [['notes', 'ASC']],
|
|
});
|
|
|
|
return records.map((record) => ({
|
|
id: record.id,
|
|
label: record.notes,
|
|
}));
|
|
}
|
|
|
|
|
|
};
|
|
|