Search in sources :

Example 6 with Recitation

use of com.remswork.project.alice.model.Recitation in project classify-system by anverliedoit.

the class RecitationResource method deleteRecitationById.

@DELETE
@Path("{recitationId}")
public Response deleteRecitationById(@PathParam("recitationId") long id) {
    try {
        RecitationResourceLinks resourceLinks = new RecitationResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        Recitation recitation = recitationService.deleteRecitationById(id);
        recitation.addLink(resourceLinks.self(recitation.getId()));
        if (recitation.get_class() != null)
            recitation.get_class().addLink(classResourceLinks.self(recitation.get_class().getId()));
        return Response.status(Response.Status.OK).entity(recitation).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 : ClassResourceLinks(com.remswork.project.alice.resource.links.ClassResourceLinks) Recitation(com.remswork.project.alice.model.Recitation) Message(com.remswork.project.alice.model.support.Message) RecitationResourceLinks(com.remswork.project.alice.resource.links.RecitationResourceLinks) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException)

Example 7 with Recitation

use of com.remswork.project.alice.model.Recitation in project classify-system by anverliedoit.

the class RecitationResource method getRecitationList.

@GET
public Response getRecitationList() {
    try {
        List<Recitation> recitationList;
        RecitationResourceLinks resourceLinks = new RecitationResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        if (classId != 0 && termId != 0)
            recitationList = recitationService.getRecitationListByClassId(classId, termId);
        else if (classId != 0)
            recitationList = recitationService.getRecitationListByClassId(classId);
        else if (studentId != 0 && termId != 0)
            recitationList = recitationService.getRecitationListByStudentId(studentId, termId);
        else if (studentId != 0)
            recitationList = recitationService.getRecitationListByStudentId(studentId);
        else
            recitationList = recitationService.getRecitationList();
        for (Recitation recitation : recitationList) {
            recitation.addLink(resourceLinks.self(recitation.getId()));
            if (recitation.get_class() != null)
                recitation.get_class().addLink(classResourceLinks.self(recitation.get_class().getId()));
        }
        GenericEntity<List<Recitation>> entity = new GenericEntity<List<Recitation>>(recitationList) {
        };
        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 : Recitation(com.remswork.project.alice.model.Recitation) ClassResourceLinks(com.remswork.project.alice.resource.links.ClassResourceLinks) Message(com.remswork.project.alice.model.support.Message) RecitationResourceLinks(com.remswork.project.alice.resource.links.RecitationResourceLinks) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) List(java.util.List)

Example 8 with Recitation

use of com.remswork.project.alice.model.Recitation in project classify-system by anverliedoit.

the class RecitationResource method getRecitationById.

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

Aggregations

GradingFactorException (com.remswork.project.alice.exception.GradingFactorException)8 Recitation (com.remswork.project.alice.model.Recitation)8 Message (com.remswork.project.alice.model.support.Message)8 AsyncTask (android.os.AsyncTask)4 Gson (com.google.gson.Gson)4 ClassResourceLinks (com.remswork.project.alice.resource.links.ClassResourceLinks)4 RecitationResourceLinks (com.remswork.project.alice.resource.links.RecitationResourceLinks)4 IOException (java.io.IOException)4 InputStream (java.io.InputStream)4 HttpURLConnection (java.net.HttpURLConnection)4 URL (java.net.URL)4 ArrayList (java.util.ArrayList)4 ExecutionException (java.util.concurrent.ExecutionException)4 JSONArray (org.json.JSONArray)4 JSONException (org.json.JSONException)4 List (java.util.List)1