Search in sources :

Example 1 with QuizResourceLinks

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

the class QuizResource method getQuizById.

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

Example 2 with QuizResourceLinks

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

the class QuizResource method deleteQuizById.

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

Example 3 with QuizResourceLinks

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

the class QuizResource method addQuiz.

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

Example 4 with QuizResourceLinks

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

the class QuizResource method updateQuizById.

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

Example 5 with QuizResourceLinks

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

the class QuizResource method getQuizList.

@GET
public Response getQuizList() {
    try {
        List<Quiz> quizList;
        QuizResourceLinks resourceLinks = new QuizResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        if (classId != 0 && termId != 0)
            quizList = quizService.getQuizListByClassId(classId, termId);
        else if (classId != 0)
            quizList = quizService.getQuizListByClassId(classId);
        else if (studentId != 0 && termId != 0)
            quizList = quizService.getQuizListByStudentId(studentId, termId);
        else if (studentId != 0)
            quizList = quizService.getQuizListByStudentId(studentId);
        else
            quizList = quizService.getQuizList();
        for (Quiz quiz : quizList) {
            quiz.addLink(resourceLinks.self(quiz.getId()));
            if (quiz.get_class() != null)
                quiz.get_class().addLink(classResourceLinks.self(quiz.get_class().getId()));
        }
        GenericEntity<List<Quiz>> entity = new GenericEntity<List<Quiz>>(quizList) {
        };
        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 : ClassResourceLinks(com.remswork.project.alice.resource.links.ClassResourceLinks) Quiz(com.remswork.project.alice.model.Quiz) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) QuizResourceLinks(com.remswork.project.alice.resource.links.QuizResourceLinks) List(java.util.List)

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 QuizResourceLinks (com.remswork.project.alice.resource.links.QuizResourceLinks)5 Quiz (com.remswork.project.alice.model.Quiz)4 List (java.util.List)1