use of com.remswork.project.alice.resource.links.ClassResourceLinks 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();
}
}
use of com.remswork.project.alice.resource.links.ClassResourceLinks 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();
}
}
use of com.remswork.project.alice.resource.links.ClassResourceLinks 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();
}
}
use of com.remswork.project.alice.resource.links.ClassResourceLinks in project classify-system by anverliedoit.
the class ExamResource method deleteExamById.
@DELETE
@Path("{examId}")
public Response deleteExamById(@PathParam("examId") long id) {
try {
ExamResourceLinks resourceLinks = new ExamResourceLinks(uriInfo);
ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
Exam exam = examService.deleteExamById(id);
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();
}
}
use of com.remswork.project.alice.resource.links.ClassResourceLinks in project classify-system by anverliedoit.
the class ExamResource method getExamList.
@GET
public Response getExamList() {
try {
List<Exam> examList;
ExamResourceLinks resourceLinks = new ExamResourceLinks(uriInfo);
ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
if (classId != 0 && termId != 0)
examList = examService.getExamListByClassId(classId, termId);
else if (classId != 0)
examList = examService.getExamListByClassId(classId);
else if (studentId != 0 && termId != 0)
examList = examService.getExamListByStudentId(studentId, termId);
else if (studentId != 0)
examList = examService.getExamListByStudentId(studentId);
else
examList = examService.getExamList();
for (Exam exam : examList) {
exam.addLink(resourceLinks.self(exam.getId()));
if (exam.get_class() != null)
exam.get_class().addLink(classResourceLinks.self(exam.get_class().getId()));
}
GenericEntity<List<Exam>> entity = new GenericEntity<List<Exam>>(examList) {
};
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();
}
}
Aggregations