Search in sources :

Example 21 with ClassResourceLinks

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

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

the class RecitationResource method updateRecitationById.

@PUT
@Path("{recitationId}")
public Response updateRecitationById(@PathParam("recitationId") long id, Recitation newRecitation) {
    try {
        RecitationResourceLinks resourceLinks = new RecitationResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        Recitation recitation;
        if (termId > 0)
            recitation = recitationService.updateRecitationById(id, newRecitation, classId, termId);
        else
            recitation = recitationService.updateRecitationById(id, newRecitation, classId);
        recitation.addLink(resourceLinks.self(recitation.getId()));
        if (recitation.get_class() != null)
            recitation.get_class().addLink(classResourceLinks.self(recitation.get_class().getId()));
        return Response.status(Response.Status.OK).entity(recitation).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) Recitation(com.remswork.project.alice.model.Recitation) Message(com.remswork.project.alice.model.support.Message) RecitationResourceLinks(com.remswork.project.alice.resource.links.RecitationResourceLinks) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException)

Example 23 with ClassResourceLinks

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

the class RecitationResource method addRecitation.

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

Example 24 with ClassResourceLinks

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

the class ActivityResource method getActivityList.

@GET
public Response getActivityList() {
    try {
        List<Activity> activityList;
        ActivityResourceLinks resourceLinks = new ActivityResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        if (classId != 0 && termId != 0)
            activityList = activityService.getActivityListByClassId(classId, termId);
        else if (classId != 0)
            activityList = activityService.getActivityListByClassId(classId);
        else if (studentId != 0 && termId != 0)
            activityList = activityService.getActivityListByStudentId(studentId, termId);
        else if (studentId != 0)
            activityList = activityService.getActivityListByStudentId(studentId);
        else
            activityList = activityService.getActivityList();
        for (Activity activity : activityList) {
            activity.addLink(resourceLinks.self(activity.getId()));
            if (activity.get_class() != null)
                activity.get_class().addLink(classResourceLinks.self(activity.get_class().getId()));
        }
        GenericEntity<List<Activity>> entity = new GenericEntity<List<Activity>>(activityList) {
        };
        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) Message(com.remswork.project.alice.model.support.Message) ActivityResourceLinks(com.remswork.project.alice.resource.links.ActivityResourceLinks) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) Activity(com.remswork.project.alice.model.Activity) List(java.util.List)

Example 25 with ClassResourceLinks

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

the class ActivityResource method deleteActivityById.

@DELETE
@Path("{activityId}")
public Response deleteActivityById(@PathParam("activityId") long id) {
    try {
        ActivityResourceLinks resourceLinks = new ActivityResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        Activity activity = activityService.deleteActivityById(id);
        activity.addLink(resourceLinks.self(activity.getId()));
        if (activity.get_class() != null)
            activity.get_class().addLink(classResourceLinks.self(activity.get_class().getId()));
        return Response.status(Response.Status.OK).entity(activity).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) ActivityResourceLinks(com.remswork.project.alice.resource.links.ActivityResourceLinks) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) Activity(com.remswork.project.alice.model.Activity)

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