Search in sources :

Example 1 with ExamResourceLinks

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

the class ExamResource method deleteExamById.

@DELETE
@Path("{examId}")
public Response deleteExamById(@PathParam("examId") long id) {
    try {
        ExamResourceLinks resourceLinks = new ExamResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        Exam exam = examService.deleteExamById(id);
        exam.addLink(resourceLinks.self(exam.getId()));
        if (exam.get_class() != null)
            exam.get_class().addLink(classResourceLinks.self(exam.get_class().getId()));
        return Response.status(Response.Status.OK).entity(exam).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 : ExamResourceLinks(com.remswork.project.alice.resource.links.ExamResourceLinks) ClassResourceLinks(com.remswork.project.alice.resource.links.ClassResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) Exam(com.remswork.project.alice.model.Exam)

Example 2 with ExamResourceLinks

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

the class ExamResource method getExamList.

@GET
public Response getExamList() {
    try {
        List<Exam> examList;
        ExamResourceLinks resourceLinks = new ExamResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        if (classId != 0 && termId != 0)
            examList = examService.getExamListByClassId(classId, termId);
        else if (classId != 0)
            examList = examService.getExamListByClassId(classId);
        else if (studentId != 0 && termId != 0)
            examList = examService.getExamListByStudentId(studentId, termId);
        else if (studentId != 0)
            examList = examService.getExamListByStudentId(studentId);
        else
            examList = examService.getExamList();
        for (Exam exam : examList) {
            exam.addLink(resourceLinks.self(exam.getId()));
            if (exam.get_class() != null)
                exam.get_class().addLink(classResourceLinks.self(exam.get_class().getId()));
        }
        GenericEntity<List<Exam>> entity = new GenericEntity<List<Exam>>(examList) {
        };
        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 : ExamResourceLinks(com.remswork.project.alice.resource.links.ExamResourceLinks) 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) Exam(com.remswork.project.alice.model.Exam)

Example 3 with ExamResourceLinks

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

the class ExamResource method addExam.

@POST
public Response addExam(Exam exam) {
    try {
        ExamResourceLinks resourceLinks = new ExamResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        if (termId > 0)
            exam = examService.addExam(exam, classId, termId);
        else
            exam = examService.addExam(exam, classId);
        exam.addLink(resourceLinks.self(exam.getId()));
        if (exam.get_class() != null)
            exam.get_class().addLink(classResourceLinks.self(exam.get_class().getId()));
        return Response.status(Response.Status.CREATED).entity(exam).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 : ExamResourceLinks(com.remswork.project.alice.resource.links.ExamResourceLinks) ClassResourceLinks(com.remswork.project.alice.resource.links.ClassResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException)

Example 4 with ExamResourceLinks

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

the class ExamResource method getExamById.

@GET
@Path("{examId}")
public Response getExamById(@PathParam("examId") long id) {
    try {
        ExamResourceLinks resourceLinks = new ExamResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        Exam exam = examService.getExamById(id);
        exam.addLink(resourceLinks.self(id));
        if (exam.get_class() != null)
            exam.get_class().addLink(classResourceLinks.self(exam.get_class().getId()));
        return Response.status(Response.Status.OK).entity(exam).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 : ExamResourceLinks(com.remswork.project.alice.resource.links.ExamResourceLinks) ClassResourceLinks(com.remswork.project.alice.resource.links.ClassResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) Exam(com.remswork.project.alice.model.Exam)

Example 5 with ExamResourceLinks

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

the class ExamResource method updateExamById.

@PUT
@Path("{examId}")
public Response updateExamById(@PathParam("examId") long id, Exam newExam) {
    try {
        ExamResourceLinks resourceLinks = new ExamResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        Exam exam;
        if (termId > 0)
            exam = examService.updateExamById(id, newExam, classId, termId);
        else
            exam = examService.updateExamById(id, newExam, classId);
        exam.addLink(resourceLinks.self(exam.getId()));
        if (exam.get_class() != null)
            exam.get_class().addLink(classResourceLinks.self(exam.get_class().getId()));
        return Response.status(Response.Status.OK).entity(exam).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 : ExamResourceLinks(com.remswork.project.alice.resource.links.ExamResourceLinks) ClassResourceLinks(com.remswork.project.alice.resource.links.ClassResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) Exam(com.remswork.project.alice.model.Exam)

Aggregations

GradingFactorException (com.remswork.project.alice.exception.GradingFactorException)5 Message (com.remswork.project.alice.model.support.Message)5 ClassResourceLinks (com.remswork.project.alice.resource.links.ClassResourceLinks)5 ExamResourceLinks (com.remswork.project.alice.resource.links.ExamResourceLinks)5 Exam (com.remswork.project.alice.model.Exam)4 List (java.util.List)1