use of com.remswork.project.alice.resource.links.ClassResourceLinks in project classify-system by anverliedoit.
the class AttendanceResource method getAttendanceList.
@GET
public Response getAttendanceList() {
try {
List<Attendance> attendanceList;
AttendanceResourceLinks resourceLinks = new AttendanceResourceLinks(uriInfo);
ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
if (classId != 0 && termId != 0)
attendanceList = attendanceService.getAttendanceListByClassId(classId, termId);
else if (classId != 0)
attendanceList = attendanceService.getAttendanceListByClassId(classId);
else if (studentId != 0 && termId != 0)
attendanceList = attendanceService.getAttendanceListByStudentId(studentId, termId);
else if (studentId != 0)
attendanceList = attendanceService.getAttendanceListByStudentId(studentId);
else
attendanceList = attendanceService.getAttendanceList();
for (Attendance attendance : attendanceList) {
attendance.addLink(resourceLinks.self(attendance.getId()));
if (attendance.get_class() != null)
attendance.get_class().addLink(classResourceLinks.self(attendance.get_class().getId()));
}
GenericEntity<List<Attendance>> entity = new GenericEntity<List<Attendance>>(attendanceList) {
};
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();
}
}
use of com.remswork.project.alice.resource.links.ClassResourceLinks in project classify-system by anverliedoit.
the class AttendanceResource method addAttendance.
@POST
public Response addAttendance(Attendance attendance) {
try {
AttendanceResourceLinks resourceLinks = new AttendanceResourceLinks(uriInfo);
ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
if (termId > 0)
attendance = attendanceService.addAttendance(attendance, classId, termId);
else
attendance = attendanceService.addAttendance(attendance, classId);
attendance.addLink(resourceLinks.self(attendance.getId()));
if (attendance.get_class() != null)
attendance.get_class().addLink(classResourceLinks.self(attendance.get_class().getId()));
return Response.status(Response.Status.CREATED).entity(attendance).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 AttendanceResource method updateAttendanceById.
@PUT
@Path("{attendanceId}")
public Response updateAttendanceById(@PathParam("attendanceId") long id, Attendance newAttendance) {
try {
AttendanceResourceLinks resourceLinks = new AttendanceResourceLinks(uriInfo);
ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
Attendance attendance;
if (termId > 0)
attendance = attendanceService.updateAttendanceById(id, newAttendance, classId, termId);
else
attendance = attendanceService.updateAttendanceById(id, newAttendance, classId);
attendance.addLink(resourceLinks.self(attendance.getId()));
if (attendance.get_class() != null)
attendance.get_class().addLink(classResourceLinks.self(attendance.get_class().getId()));
return Response.status(Response.Status.OK).entity(attendance).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 AttendanceResource method deleteAttendanceById.
@DELETE
@Path("{attendanceId}")
public Response deleteAttendanceById(@PathParam("attendanceId") long id) {
try {
AttendanceResourceLinks resourceLinks = new AttendanceResourceLinks(uriInfo);
ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
Attendance attendance = attendanceService.deleteAttendanceById(id);
attendance.addLink(resourceLinks.self(attendance.getId()));
if (attendance.get_class() != null)
attendance.get_class().addLink(classResourceLinks.self(attendance.get_class().getId()));
return Response.status(Response.Status.OK).entity(attendance).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 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();
}
}
Aggregations