Search in sources :

Example 1 with TeacherResourceLinks

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

Example 2 with TeacherResourceLinks

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

the class ClassResource method updateClassById.

@PUT
@Path("{classId}")
public Response updateClassById(@PathParam("classId") long id, Class newClass) {
    try {
        ClassResourceLinks resourceLinks = new ClassResourceLinks(uriInfo);
        TeacherResourceLinks teacherResourceLinks = new TeacherResourceLinks(uriInfo);
        SubjectResourceLinks subjectResourceLinks = new SubjectResourceLinks(uriInfo);
        SectionResourceLinks sectionResourceLinks = new SectionResourceLinks(uriInfo);
        Class _class = classService.updateClassById(id, newClass, teacherId, subjectId, sectionId);
        _class.addLink(resourceLinks.self(id));
        _class.addLink(resourceLinks.schedule(id));
        _class.addLink(resourceLinks.student(id));
        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()));
        return Response.status(Response.Status.OK).entity(_class).build();
    } catch (ClassException 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) SubjectResourceLinks(com.remswork.project.alice.resource.links.SubjectResourceLinks) Message(com.remswork.project.alice.model.support.Message) ClassException(com.remswork.project.alice.exception.ClassException) TeacherResourceLinks(com.remswork.project.alice.resource.links.TeacherResourceLinks) Class(com.remswork.project.alice.model.Class) SectionResourceLinks(com.remswork.project.alice.resource.links.SectionResourceLinks)

Example 3 with TeacherResourceLinks

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

the class ClassResource method addClass.

@POST
public Response addClass(Class _class) {
    try {
        ClassResourceLinks resourceLinks = new ClassResourceLinks(uriInfo);
        TeacherResourceLinks teacherResourceLinks = new TeacherResourceLinks(uriInfo);
        SubjectResourceLinks subjectResourceLinks = new SubjectResourceLinks(uriInfo);
        SectionResourceLinks sectionResourceLinks = new SectionResourceLinks(uriInfo);
        _class = classService.addClass(_class, teacherId, subjectId, sectionId);
        _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()));
        return Response.status(Response.Status.CREATED).entity(_class).build();
    } catch (ClassException 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) SubjectResourceLinks(com.remswork.project.alice.resource.links.SubjectResourceLinks) Message(com.remswork.project.alice.model.support.Message) ClassException(com.remswork.project.alice.exception.ClassException) TeacherResourceLinks(com.remswork.project.alice.resource.links.TeacherResourceLinks) SectionResourceLinks(com.remswork.project.alice.resource.links.SectionResourceLinks)

Example 4 with TeacherResourceLinks

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

the class ClassResource method getClassById.

@GET
@Path("{classId}")
public Response getClassById(@PathParam("classId") long id) {
    try {
        ClassResourceLinks resourceLinks = new ClassResourceLinks(uriInfo);
        TeacherResourceLinks teacherResourceLinks = new TeacherResourceLinks(uriInfo);
        SubjectResourceLinks subjectResourceLinks = new SubjectResourceLinks(uriInfo);
        SectionResourceLinks sectionResourceLinks = new SectionResourceLinks(uriInfo);
        Class _class = classService.getClassById(id);
        _class.addLink(resourceLinks.self(id));
        _class.addLink(resourceLinks.schedule(id));
        _class.addLink(resourceLinks.student(id));
        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()));
        return Response.status(Response.Status.OK).entity(_class).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) TeacherResourceLinks(com.remswork.project.alice.resource.links.TeacherResourceLinks) Class(com.remswork.project.alice.model.Class) SectionResourceLinks(com.remswork.project.alice.resource.links.SectionResourceLinks)

Example 5 with TeacherResourceLinks

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

the class FormulaResource method getFormulaById.

@GET
@Path("{formulaId}")
public Response getFormulaById(@PathParam("formulaId") long id) {
    try {
        FormulaResourceLinks resourceLinks = new FormulaResourceLinks(uriInfo);
        SubjectResourceLinks subjectResourceLinks = new SubjectResourceLinks(uriInfo);
        TeacherResourceLinks teacherResourceLinks = new TeacherResourceLinks(uriInfo);
        Formula formula = formulaService.getFormulaById(id);
        formula.addLink(resourceLinks.self(id));
        if (formula.getSubject() != null)
            formula.getSubject().addLink(subjectResourceLinks.self(formula.getSubject().getId()));
        if (formula.getTeacher() != null)
            formula.getTeacher().addLink(teacherResourceLinks.self(formula.getTeacher().getId()));
        return Response.status(Response.Status.OK).entity(formula).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 : Formula(com.remswork.project.alice.model.Formula) SubjectResourceLinks(com.remswork.project.alice.resource.links.SubjectResourceLinks) FormulaResourceLinks(com.remswork.project.alice.resource.links.FormulaResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) TeacherResourceLinks(com.remswork.project.alice.resource.links.TeacherResourceLinks)

Aggregations

Message (com.remswork.project.alice.model.support.Message)16 TeacherResourceLinks (com.remswork.project.alice.resource.links.TeacherResourceLinks)16 SubjectResourceLinks (com.remswork.project.alice.resource.links.SubjectResourceLinks)11 GradingFactorException (com.remswork.project.alice.exception.GradingFactorException)6 FormulaResourceLinks (com.remswork.project.alice.resource.links.FormulaResourceLinks)6 ClassException (com.remswork.project.alice.exception.ClassException)5 TeacherException (com.remswork.project.alice.exception.TeacherException)5 Formula (com.remswork.project.alice.model.Formula)5 ClassResourceLinks (com.remswork.project.alice.resource.links.ClassResourceLinks)5 DepartmentResourceLinks (com.remswork.project.alice.resource.links.DepartmentResourceLinks)5 SectionResourceLinks (com.remswork.project.alice.resource.links.SectionResourceLinks)5 Class (com.remswork.project.alice.model.Class)4 Teacher (com.remswork.project.alice.model.Teacher)4 List (java.util.List)3