Search in sources :

Example 6 with ClassResourceLinks

use of com.remswork.project.alice.resource.links.ClassResourceLinks in project classify-system by anverliedoit.

the class AttendanceResource method getAttendanceList.

@GET
public Response getAttendanceList() {
    try {
        List<Attendance> attendanceList;
        AttendanceResourceLinks resourceLinks = new AttendanceResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        if (classId != 0 && termId != 0)
            attendanceList = attendanceService.getAttendanceListByClassId(classId, termId);
        else if (classId != 0)
            attendanceList = attendanceService.getAttendanceListByClassId(classId);
        else if (studentId != 0 && termId != 0)
            attendanceList = attendanceService.getAttendanceListByStudentId(studentId, termId);
        else if (studentId != 0)
            attendanceList = attendanceService.getAttendanceListByStudentId(studentId);
        else
            attendanceList = attendanceService.getAttendanceList();
        for (Attendance attendance : attendanceList) {
            attendance.addLink(resourceLinks.self(attendance.getId()));
            if (attendance.get_class() != null)
                attendance.get_class().addLink(classResourceLinks.self(attendance.get_class().getId()));
        }
        GenericEntity<List<Attendance>> entity = new GenericEntity<List<Attendance>>(attendanceList) {
        };
        return Response.status(Response.Status.OK).entity(entity).build();
    } catch (GradingFactorException e) {
        e.printStackTrace();
        Message message = new Message(404, "Not Found", e.getMessage());
        return Response.status(Response.Status.NOT_FOUND).entity(message).build();
    }
}
Also used : Attendance(com.remswork.project.alice.model.Attendance) AttendanceResourceLinks(com.remswork.project.alice.resource.links.AttendanceResourceLinks) ClassResourceLinks(com.remswork.project.alice.resource.links.ClassResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) List(java.util.List)

Example 7 with ClassResourceLinks

use of com.remswork.project.alice.resource.links.ClassResourceLinks in project classify-system by anverliedoit.

the class AttendanceResource method addAttendance.

@POST
public Response addAttendance(Attendance attendance) {
    try {
        AttendanceResourceLinks resourceLinks = new AttendanceResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        if (termId > 0)
            attendance = attendanceService.addAttendance(attendance, classId, termId);
        else
            attendance = attendanceService.addAttendance(attendance, classId);
        attendance.addLink(resourceLinks.self(attendance.getId()));
        if (attendance.get_class() != null)
            attendance.get_class().addLink(classResourceLinks.self(attendance.get_class().getId()));
        return Response.status(Response.Status.CREATED).entity(attendance).build();
    } catch (GradingFactorException e) {
        e.printStackTrace();
        Message message = new Message(400, "Bad Request", e.getMessage());
        return Response.status(Response.Status.BAD_REQUEST).entity(message).build();
    }
}
Also used : AttendanceResourceLinks(com.remswork.project.alice.resource.links.AttendanceResourceLinks) ClassResourceLinks(com.remswork.project.alice.resource.links.ClassResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException)

Example 8 with ClassResourceLinks

use of com.remswork.project.alice.resource.links.ClassResourceLinks in project classify-system by anverliedoit.

the class AttendanceResource method updateAttendanceById.

@PUT
@Path("{attendanceId}")
public Response updateAttendanceById(@PathParam("attendanceId") long id, Attendance newAttendance) {
    try {
        AttendanceResourceLinks resourceLinks = new AttendanceResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        Attendance attendance;
        if (termId > 0)
            attendance = attendanceService.updateAttendanceById(id, newAttendance, classId, termId);
        else
            attendance = attendanceService.updateAttendanceById(id, newAttendance, classId);
        attendance.addLink(resourceLinks.self(attendance.getId()));
        if (attendance.get_class() != null)
            attendance.get_class().addLink(classResourceLinks.self(attendance.get_class().getId()));
        return Response.status(Response.Status.OK).entity(attendance).build();
    } catch (GradingFactorException e) {
        e.printStackTrace();
        Message message = new Message(400, "Bad Request", e.getMessage());
        return Response.status(Response.Status.BAD_REQUEST).entity(message).build();
    }
}
Also used : AttendanceResourceLinks(com.remswork.project.alice.resource.links.AttendanceResourceLinks) Attendance(com.remswork.project.alice.model.Attendance) ClassResourceLinks(com.remswork.project.alice.resource.links.ClassResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException)

Example 9 with ClassResourceLinks

use of com.remswork.project.alice.resource.links.ClassResourceLinks in project classify-system by anverliedoit.

the class AttendanceResource method deleteAttendanceById.

@DELETE
@Path("{attendanceId}")
public Response deleteAttendanceById(@PathParam("attendanceId") long id) {
    try {
        AttendanceResourceLinks resourceLinks = new AttendanceResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        Attendance attendance = attendanceService.deleteAttendanceById(id);
        attendance.addLink(resourceLinks.self(attendance.getId()));
        if (attendance.get_class() != null)
            attendance.get_class().addLink(classResourceLinks.self(attendance.get_class().getId()));
        return Response.status(Response.Status.OK).entity(attendance).build();
    } catch (GradingFactorException e) {
        e.printStackTrace();
        Message message = new Message(400, "Bad Request", e.getMessage());
        return Response.status(Response.Status.BAD_REQUEST).entity(message).build();
    }
}
Also used : AttendanceResourceLinks(com.remswork.project.alice.resource.links.AttendanceResourceLinks) Attendance(com.remswork.project.alice.model.Attendance) ClassResourceLinks(com.remswork.project.alice.resource.links.ClassResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException)

Example 10 with ClassResourceLinks

use of com.remswork.project.alice.resource.links.ClassResourceLinks in project classify-system by anverliedoit.

the class ClassResource method getClassList.

@GET
public Response getClassList() {
    try {
        List<Class> classList;
        ClassResourceLinks resourceLinks = new ClassResourceLinks(uriInfo);
        TeacherResourceLinks teacherResourceLinks = new TeacherResourceLinks(uriInfo);
        SubjectResourceLinks subjectResourceLinks = new SubjectResourceLinks(uriInfo);
        SectionResourceLinks sectionResourceLinks = new SectionResourceLinks(uriInfo);
        if (teacherId != 0)
            classList = classService.getClassListByTeacherId(teacherId);
        else if (studentId != 0)
            classList = classService.getClassListByStudentId(studentId);
        else if (subjectId != 0)
            classList = classService.getClassListBySubjectId(subjectId);
        else
            classList = classService.getClassList();
        for (Class _class : classList) {
            _class.addLink(resourceLinks.self(_class.getId()));
            _class.addLink(resourceLinks.schedule(_class.getId()));
            _class.addLink(resourceLinks.student(_class.getId()));
            if (_class.getTeacher() != null)
                _class.getTeacher().addLink(teacherResourceLinks.self(_class.getTeacher().getId()));
            if (_class.getSubject() != null)
                _class.getSubject().addLink(subjectResourceLinks.self(_class.getSubject().getId()));
            if (_class.getSection() != null)
                _class.getSection().addLink(sectionResourceLinks.self(_class.getSection().getId()));
        }
        GenericEntity<List<Class>> entity = new GenericEntity<List<Class>>(classList) {
        };
        return Response.status(Response.Status.OK).entity(entity).build();
    } catch (ClassException e) {
        e.printStackTrace();
        Message message = new Message(404, "Not Found", e.getMessage());
        return Response.status(Response.Status.NOT_FOUND).entity(message).build();
    }
}
Also used : ClassResourceLinks(com.remswork.project.alice.resource.links.ClassResourceLinks) SubjectResourceLinks(com.remswork.project.alice.resource.links.SubjectResourceLinks) Message(com.remswork.project.alice.model.support.Message) ClassException(com.remswork.project.alice.exception.ClassException) Class(com.remswork.project.alice.model.Class) TeacherResourceLinks(com.remswork.project.alice.resource.links.TeacherResourceLinks) List(java.util.List) SectionResourceLinks(com.remswork.project.alice.resource.links.SectionResourceLinks)

Aggregations

Message (com.remswork.project.alice.model.support.Message)40 ClassResourceLinks (com.remswork.project.alice.resource.links.ClassResourceLinks)40 GradingFactorException (com.remswork.project.alice.exception.GradingFactorException)35 List (java.util.List)8 ClassException (com.remswork.project.alice.exception.ClassException)5 ActivityResourceLinks (com.remswork.project.alice.resource.links.ActivityResourceLinks)5 AssignmentResourceLinks (com.remswork.project.alice.resource.links.AssignmentResourceLinks)5 AttendanceResourceLinks (com.remswork.project.alice.resource.links.AttendanceResourceLinks)5 ExamResourceLinks (com.remswork.project.alice.resource.links.ExamResourceLinks)5 ProjectResourceLinks (com.remswork.project.alice.resource.links.ProjectResourceLinks)5 QuizResourceLinks (com.remswork.project.alice.resource.links.QuizResourceLinks)5 RecitationResourceLinks (com.remswork.project.alice.resource.links.RecitationResourceLinks)5 SectionResourceLinks (com.remswork.project.alice.resource.links.SectionResourceLinks)5 SubjectResourceLinks (com.remswork.project.alice.resource.links.SubjectResourceLinks)5 TeacherResourceLinks (com.remswork.project.alice.resource.links.TeacherResourceLinks)5 Activity (com.remswork.project.alice.model.Activity)4 Assignment (com.remswork.project.alice.model.Assignment)4 Attendance (com.remswork.project.alice.model.Attendance)4 Class (com.remswork.project.alice.model.Class)4 Exam (com.remswork.project.alice.model.Exam)4