Search in sources :

Example 6 with GradingFactorException

use of com.remswork.project.alice.exception.GradingFactorException in project classify-system by anverliedoit.

the class AssignmentResource method getAssignmentById.

@GET
@Path("{assignmentId}")
public Response getAssignmentById(@PathParam("assignmentId") long id) {
    try {
        AssignmentResourceLinks resourceLinks = new AssignmentResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        Assignment assignment = assignmentService.getAssignmentById(id);
        assignment.addLink(resourceLinks.self(id));
        if (assignment.get_class() != null)
            assignment.get_class().addLink(classResourceLinks.self(assignment.get_class().getId()));
        return Response.status(Response.Status.OK).entity(assignment).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 : Assignment(com.remswork.project.alice.model.Assignment) ClassResourceLinks(com.remswork.project.alice.resource.links.ClassResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) AssignmentResourceLinks(com.remswork.project.alice.resource.links.AssignmentResourceLinks)

Example 7 with GradingFactorException

use of com.remswork.project.alice.exception.GradingFactorException in project classify-system by anverliedoit.

the class AssignmentResultResource method addAssignmentResult.

@POST
public Response addAssignmentResult(@QueryParam("score") int score, @PathParam("assignmentId") long assignmentId) {
    try {
        AssignmentResultResourceLinks resultResourceLinks = new AssignmentResultResourceLinks(uriInfo);
        AssignmentResult result = assignmentService.addAssignmentResult(score, assignmentId, studentId);
        result.addLink(resultResourceLinks.self(result.getId()));
        return Response.status(Response.Status.OK).entity(result).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 : AssignmentResultResourceLinks(com.remswork.project.alice.resource.links.AssignmentResultResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) AssignmentResult(com.remswork.project.alice.model.AssignmentResult)

Example 8 with GradingFactorException

use of com.remswork.project.alice.exception.GradingFactorException in project classify-system by anverliedoit.

the class AssignmentResultResource method updateAssignmentResult.

@PUT
public Response updateAssignmentResult(@PathParam("assignmentId") long assignmentId, @QueryParam("score") int score) {
    try {
        AssignmentResultResourceLinks resultResourceLinks = new AssignmentResultResourceLinks(uriInfo);
        AssignmentResult result = assignmentService.updateAssignmentResultByAssignmentAndStudentId(score, assignmentId, studentId);
        result.addLink(resultResourceLinks.self(result.getId()));
        return Response.status(Response.Status.OK).entity(result).build();
    } catch (GradingFactorException e) {
        e.printStackTrace();
        Message message = new Message(400, "Bad Request", e.getMessage());
        return Response.status(Response.Status.NOT_FOUND).entity(message).build();
    }
}
Also used : AssignmentResultResourceLinks(com.remswork.project.alice.resource.links.AssignmentResultResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) AssignmentResult(com.remswork.project.alice.model.AssignmentResult)

Example 9 with GradingFactorException

use of com.remswork.project.alice.exception.GradingFactorException in project classify-system by anverliedoit.

the class AssignmentResultResource method deleteAssignmentResult.

@DELETE
public Response deleteAssignmentResult(@PathParam("assignmentId") long assignmentId) {
    try {
        AssignmentResultResourceLinks resultResourceLinks = new AssignmentResultResourceLinks(uriInfo);
        AssignmentResult result = assignmentService.deleteAssignmentResultByAssignmentAndStudentId(assignmentId, studentId);
        result.addLink(resultResourceLinks.self(result.getId()));
        return Response.status(Response.Status.OK).entity(result).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 : AssignmentResultResourceLinks(com.remswork.project.alice.resource.links.AssignmentResultResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) AssignmentResult(com.remswork.project.alice.model.AssignmentResult)

Example 10 with GradingFactorException

use of com.remswork.project.alice.exception.GradingFactorException 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();
    }
}
Also used : Attendance(com.remswork.project.alice.model.Attendance) AttendanceResourceLinks(com.remswork.project.alice.resource.links.AttendanceResourceLinks) ClassResourceLinks(com.remswork.project.alice.resource.links.ClassResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) List(java.util.List)

Aggregations

GradingFactorException (com.remswork.project.alice.exception.GradingFactorException)302 Message (com.remswork.project.alice.model.support.Message)178 GradingFactorDaoException (com.remswork.project.alice.dao.exception.GradingFactorDaoException)104 Session (org.hibernate.Session)104 AsyncTask (android.os.AsyncTask)102 Gson (com.google.gson.Gson)102 IOException (java.io.IOException)102 InputStream (java.io.InputStream)102 HttpURLConnection (java.net.HttpURLConnection)102 URL (java.net.URL)102 ExecutionException (java.util.concurrent.ExecutionException)102 ArrayList (java.util.ArrayList)71 Query (org.hibernate.Query)64 ClassResourceLinks (com.remswork.project.alice.resource.links.ClassResourceLinks)35 JSONArray (org.json.JSONArray)32 JSONException (org.json.JSONException)32 Grade (com.remswork.project.alice.model.Grade)25 BufferedWriter (java.io.BufferedWriter)21 OutputStream (java.io.OutputStream)21 OutputStreamWriter (java.io.OutputStreamWriter)21