Search in sources :

Example 1 with FormulaResourceLinks

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

Example 2 with FormulaResourceLinks

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

the class FormulaResource method updateFormulaById.

@PUT
@Path("{formulaId}")
public Response updateFormulaById(@PathParam("formulaId") long id, Formula newFormula) {
    try {
        FormulaResourceLinks resourceLinks = new FormulaResourceLinks(uriInfo);
        SubjectResourceLinks subjectResourceLinks = new SubjectResourceLinks(uriInfo);
        TeacherResourceLinks teacherResourceLinks = new TeacherResourceLinks(uriInfo);
        Formula formula = formulaService.updateFormulaById(id, newFormula, subjectId, teacherId, termId);
        formula.addLink(resourceLinks.self(formula.getId()));
        if (formula.getTeacher() != null)
            formula.getTeacher().addLink(teacherResourceLinks.self(formula.getTeacher().getId()));
        if (formula.getSubject() != null)
            formula.getSubject().addLink(subjectResourceLinks.self(formula.getSubject().getId()));
        return Response.status(Response.Status.OK).entity(formula).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 : 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)

Example 3 with FormulaResourceLinks

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

the class FormulaResource method addFormula.

@POST
public Response addFormula(Formula formula) {
    try {
        FormulaResourceLinks resourceLinks = new FormulaResourceLinks(uriInfo);
        SubjectResourceLinks subjectResourceLinks = new SubjectResourceLinks(uriInfo);
        TeacherResourceLinks teacherResourceLinks = new TeacherResourceLinks(uriInfo);
        if (termId > 0)
            formula = formulaService.addFormula(formula, subjectId, teacherId, termId);
        else
            formula = formulaService.addFormula(formula, subjectId, teacherId);
        formula.addLink(resourceLinks.self(formula.getId()));
        if (formula.getTeacher() != null)
            formula.getTeacher().addLink(teacherResourceLinks.self(formula.getTeacher().getId()));
        if (formula.getSubject() != null)
            formula.getSubject().addLink(subjectResourceLinks.self(formula.getSubject().getId()));
        return Response.status(Response.Status.CREATED).entity(formula).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 : 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)

Example 4 with FormulaResourceLinks

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

the class FormulaResource method deleteFormulaById.

@DELETE
@Path("{formulaId}")
public Response deleteFormulaById(@PathParam("formulaId") long id) {
    try {
        FormulaResourceLinks resourceLinks = new FormulaResourceLinks(uriInfo);
        SubjectResourceLinks subjectResourceLinks = new SubjectResourceLinks(uriInfo);
        TeacherResourceLinks teacherResourceLinks = new TeacherResourceLinks(uriInfo);
        Formula formula = formulaService.deleteFormulaById(id);
        formula.addLink(resourceLinks.self(formula.getId()));
        if (formula.getTeacher() != null)
            formula.getTeacher().addLink(teacherResourceLinks.self(formula.getTeacher().getId()));
        if (formula.getSubject() != null)
            formula.getSubject().addLink(subjectResourceLinks.self(formula.getSubject().getId()));
        return Response.status(Response.Status.OK).entity(formula).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 : 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)

Example 5 with FormulaResourceLinks

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

the class FormulaResource method getFormula.

@GET
@Path("0")
public Response getFormula() {
    try {
        FormulaResourceLinks resourceLinks = new FormulaResourceLinks(uriInfo);
        SubjectResourceLinks subjectResourceLinks = new SubjectResourceLinks(uriInfo);
        TeacherResourceLinks teacherResourceLinks = new TeacherResourceLinks(uriInfo);
        Formula formula = formulaService.getFormulaBySubjectAndTeacherId(subjectId, teacherId, termId);
        formula.addLink(resourceLinks.self(formula.getId()));
        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

GradingFactorException (com.remswork.project.alice.exception.GradingFactorException)6 Message (com.remswork.project.alice.model.support.Message)6 FormulaResourceLinks (com.remswork.project.alice.resource.links.FormulaResourceLinks)6 SubjectResourceLinks (com.remswork.project.alice.resource.links.SubjectResourceLinks)6 TeacherResourceLinks (com.remswork.project.alice.resource.links.TeacherResourceLinks)6 Formula (com.remswork.project.alice.model.Formula)5 List (java.util.List)1