Search in sources :

Example 31 with ClassResourceLinks

use of com.remswork.project.alice.resource.links.ClassResourceLinks 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 32 with ClassResourceLinks

use of com.remswork.project.alice.resource.links.ClassResourceLinks 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 33 with ClassResourceLinks

use of com.remswork.project.alice.resource.links.ClassResourceLinks 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)

Example 34 with ClassResourceLinks

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

the class ProjectResource method addProject.

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

Example 35 with ClassResourceLinks

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

the class ProjectResource method deleteProjectById.

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

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