Search in sources :

Example 6 with Message

use of com.remswork.project.alice.model.support.Message 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 Message

use of com.remswork.project.alice.model.support.Message 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 Message

use of com.remswork.project.alice.model.support.Message 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 Message

use of com.remswork.project.alice.model.support.Message 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 Message

use of com.remswork.project.alice.model.support.Message 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

Message (com.remswork.project.alice.model.support.Message)336 GradingFactorException (com.remswork.project.alice.exception.GradingFactorException)178 Gson (com.google.gson.Gson)155 IOException (java.io.IOException)155 InputStream (java.io.InputStream)155 HttpURLConnection (java.net.HttpURLConnection)155 URL (java.net.URL)155 ExecutionException (java.util.concurrent.ExecutionException)155 AsyncTask (android.os.AsyncTask)153 Client (javax.ws.rs.client.Client)58 WebTarget (javax.ws.rs.client.WebTarget)58 Response (javax.ws.rs.core.Response)58 JSONArray (org.json.JSONArray)49 JSONException (org.json.JSONException)49 ClassException (com.remswork.project.alice.exception.ClassException)46 ArrayList (java.util.ArrayList)46 ClassResourceLinks (com.remswork.project.alice.resource.links.ClassResourceLinks)40 OutputStreamWriter (java.io.OutputStreamWriter)36 BufferedWriter (java.io.BufferedWriter)34 OutputStream (java.io.OutputStream)34