149 lines
5.7 KiB
TypeScript
149 lines
5.7 KiB
TypeScript
import { getClassJoinRequestRepository, getClassRepository, getTeacherRepository } from '../data/repositories.js';
|
|
import { mapToClassDTO } from '../interfaces/class.js';
|
|
import { mapToTeacher, mapToTeacherDTO } from '../interfaces/teacher.js';
|
|
import { Teacher } from '../entities/users/teacher.entity.js';
|
|
import { fetchStudent } from './students.js';
|
|
import { ClassJoinRequest } from '../entities/classes/class-join-request.entity.js';
|
|
import { mapToStudentRequestDTO } from '../interfaces/student-request.js';
|
|
import { TeacherRepository } from '../data/users/teacher-repository.js';
|
|
import { ClassRepository } from '../data/classes/class-repository.js';
|
|
import { Class } from '../entities/classes/class.entity.js';
|
|
import { ClassJoinRequestRepository } from '../data/classes/class-join-request-repository.js';
|
|
import { Student } from '../entities/users/student.entity.js';
|
|
import { NotFoundException } from '../exceptions/not-found-exception.js';
|
|
import { addClassStudent, fetchClass, getClassStudentsDTO } from './classes.js';
|
|
import { TeacherDTO } from '@dwengo-1/common/interfaces/teacher';
|
|
import { ClassDTO } from '@dwengo-1/common/interfaces/class';
|
|
import { StudentDTO } from '@dwengo-1/common/interfaces/student';
|
|
import { ClassJoinRequestDTO } from '@dwengo-1/common/interfaces/class-join-request';
|
|
import { ClassStatus } from '@dwengo-1/common/util/class-join-request';
|
|
import { ConflictException } from '../exceptions/conflict-exception.js';
|
|
|
|
export async function getAllTeachers(full: boolean): Promise<TeacherDTO[] | string[]> {
|
|
const teacherRepository: TeacherRepository = getTeacherRepository();
|
|
const users: Teacher[] = await teacherRepository.findAll();
|
|
|
|
if (full) {
|
|
return users.map(mapToTeacherDTO);
|
|
}
|
|
return users.map((user) => user.username);
|
|
}
|
|
|
|
export async function fetchTeacher(username: string): Promise<Teacher> {
|
|
const teacherRepository: TeacherRepository = getTeacherRepository();
|
|
const user: Teacher | null = await teacherRepository.findByUsername(username);
|
|
|
|
if (!user) {
|
|
throw new NotFoundException('Teacher with username not found');
|
|
}
|
|
|
|
return user;
|
|
}
|
|
|
|
export async function getTeacher(username: string): Promise<TeacherDTO> {
|
|
const user: Teacher = await fetchTeacher(username);
|
|
return mapToTeacherDTO(user);
|
|
}
|
|
|
|
export async function createTeacher(userData: TeacherDTO): Promise<TeacherDTO> {
|
|
const teacherRepository: TeacherRepository = getTeacherRepository();
|
|
|
|
const newTeacher = mapToTeacher(userData);
|
|
await teacherRepository.save(newTeacher, { preventOverwrite: true });
|
|
|
|
return mapToTeacherDTO(newTeacher);
|
|
}
|
|
|
|
export async function createOrUpdateTeacher(userData: TeacherDTO): Promise<TeacherDTO> {
|
|
await getTeacherRepository().upsert({
|
|
username: userData.username,
|
|
firstName: userData.firstName,
|
|
lastName: userData.lastName,
|
|
});
|
|
return userData;
|
|
}
|
|
|
|
export async function deleteTeacher(username: string): Promise<TeacherDTO> {
|
|
const teacherRepository: TeacherRepository = getTeacherRepository();
|
|
|
|
const teacher = await fetchTeacher(username); // Throws error if it does not exist
|
|
|
|
await teacherRepository.deleteByUsername(username);
|
|
return mapToTeacherDTO(teacher);
|
|
}
|
|
|
|
async function fetchClassesByTeacher(username: string): Promise<ClassDTO[]> {
|
|
const teacher: Teacher = await fetchTeacher(username);
|
|
|
|
const classRepository: ClassRepository = getClassRepository();
|
|
const classes: Class[] = await classRepository.findByTeacher(teacher);
|
|
return classes.map(mapToClassDTO);
|
|
}
|
|
|
|
export async function getClassesByTeacher(username: string, full: boolean): Promise<ClassDTO[] | string[]> {
|
|
const classes: ClassDTO[] = await fetchClassesByTeacher(username);
|
|
|
|
if (full) {
|
|
return classes;
|
|
}
|
|
return classes.map((cls) => cls.id);
|
|
}
|
|
|
|
export async function getStudentsByTeacher(username: string, full: boolean): Promise<StudentDTO[] | string[]> {
|
|
const classes: ClassDTO[] = await fetchClassesByTeacher(username);
|
|
|
|
if (!classes || classes.length === 0) {
|
|
return [];
|
|
}
|
|
|
|
const classIds: string[] = classes.map((cls) => cls.id);
|
|
|
|
const students: StudentDTO[] = (await Promise.all(classIds.map(async (username) => await getClassStudentsDTO(username)))).flat();
|
|
|
|
if (full) {
|
|
return students;
|
|
}
|
|
|
|
return students.map((student) => student.username);
|
|
}
|
|
|
|
export async function getJoinRequestsByClass(classId: string): Promise<ClassJoinRequestDTO[]> {
|
|
const classRepository: ClassRepository = getClassRepository();
|
|
const cls: Class | null = await classRepository.findById(classId);
|
|
|
|
if (!cls) {
|
|
throw new NotFoundException('Class with id not found');
|
|
}
|
|
|
|
const requestRepo: ClassJoinRequestRepository = getClassJoinRequestRepository();
|
|
const requests: ClassJoinRequest[] = await requestRepo.findAllOpenRequestsTo(cls);
|
|
return requests.map(mapToStudentRequestDTO);
|
|
}
|
|
|
|
export async function updateClassJoinRequestStatus(studentUsername: string, classId: string, accepted = true): Promise<ClassJoinRequestDTO> {
|
|
const requestRepo: ClassJoinRequestRepository = getClassJoinRequestRepository();
|
|
|
|
const student: Student = await fetchStudent(studentUsername);
|
|
const cls = await fetchClass(classId);
|
|
|
|
if (cls.students.contains(student)) {
|
|
throw new ConflictException('Student already in this class');
|
|
}
|
|
|
|
const request: ClassJoinRequest | null = await requestRepo.findByStudentAndClass(student, cls);
|
|
|
|
if (!request) {
|
|
throw new NotFoundException('Join request not found');
|
|
}
|
|
|
|
request.status = ClassStatus.Declined;
|
|
|
|
if (accepted) {
|
|
request.status = ClassStatus.Accepted;
|
|
await addClassStudent(classId, studentUsername);
|
|
}
|
|
|
|
await requestRepo.save(request);
|
|
|
|
return mapToStudentRequestDTO(request);
|
|
}
|