Search in sources :

Example 16 with GradingFactorException

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

Example 17 with GradingFactorException

use of com.remswork.project.alice.exception.GradingFactorException 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();
    }
}
Also used : ExamResourceLinks(com.remswork.project.alice.resource.links.ExamResourceLinks) 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) Exam(com.remswork.project.alice.model.Exam)

Example 18 with GradingFactorException

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

the class ExamResultResource method getExamResult.

@GET
public Response getExamResult(@PathParam("examId") long examId) {
    try {
        ExamResultResourceLinks resultResourceLinks = new ExamResultResourceLinks(uriInfo);
        ExamResult result = examService.getExamResultByExamAndStudentId(examId, 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 : Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) ExamResultResourceLinks(com.remswork.project.alice.resource.links.ExamResultResourceLinks) ExamResult(com.remswork.project.alice.model.ExamResult)

Example 19 with GradingFactorException

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

the class ExamResultResource method updateExamResult.

@PUT
public Response updateExamResult(@PathParam("examId") long examId, @QueryParam("score") int score) {
    try {
        ExamResultResourceLinks resultResourceLinks = new ExamResultResourceLinks(uriInfo);
        ExamResult result = examService.updateExamResultByExamAndStudentId(score, examId, 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 : Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) ExamResultResourceLinks(com.remswork.project.alice.resource.links.ExamResultResourceLinks) ExamResult(com.remswork.project.alice.model.ExamResult)

Example 20 with GradingFactorException

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

the class ExamResultResource method addExamResult.

@POST
public Response addExamResult(@QueryParam("score") int score, @PathParam("examId") long examId) {
    try {
        ExamResultResourceLinks resultResourceLinks = new ExamResultResourceLinks(uriInfo);
        ExamResult result = examService.addExamResult(score, examId, 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 : Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) ExamResultResourceLinks(com.remswork.project.alice.resource.links.ExamResultResourceLinks) ExamResult(com.remswork.project.alice.model.ExamResult)

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