Search in sources :

Example 26 with GradingFactorException

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

the class ProjectResultResource method addProjectResult.

@POST
public Response addProjectResult(@QueryParam("score") int score, @PathParam("projectId") long projectId) {
    try {
        ProjectResultResourceLinks resultResourceLinks = new ProjectResultResourceLinks(uriInfo);
        ProjectResult result = projectService.addProjectResult(score, projectId, 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) ProjectResultResourceLinks(com.remswork.project.alice.resource.links.ProjectResultResourceLinks) ProjectResult(com.remswork.project.alice.model.ProjectResult)

Example 27 with GradingFactorException

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

the class ProjectResultResource method updateProjectResult.

@PUT
public Response updateProjectResult(@PathParam("projectId") long projectId, @QueryParam("score") int score) {
    try {
        ProjectResultResourceLinks resultResourceLinks = new ProjectResultResourceLinks(uriInfo);
        ProjectResult result = projectService.updateProjectResultByProjectAndStudentId(score, projectId, 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) ProjectResultResourceLinks(com.remswork.project.alice.resource.links.ProjectResultResourceLinks) ProjectResult(com.remswork.project.alice.model.ProjectResult)

Example 28 with GradingFactorException

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

the class QuizResource method getQuizById.

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

Example 29 with GradingFactorException

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

the class QuizResource method deleteQuizById.

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

Example 30 with GradingFactorException

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

the class QuizResource method addQuiz.

@POST
public Response addQuiz(Quiz quiz) {
    try {
        QuizResourceLinks resourceLinks = new QuizResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        if (termId > 0)
            quiz = quizService.addQuiz(quiz, classId, termId);
        else
            quiz = quizService.addQuiz(quiz, classId);
        quiz.addLink(resourceLinks.self(quiz.getId()));
        if (quiz.get_class() != null)
            quiz.get_class().addLink(classResourceLinks.self(quiz.get_class().getId()));
        return Response.status(Response.Status.CREATED).entity(quiz).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) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) QuizResourceLinks(com.remswork.project.alice.resource.links.QuizResourceLinks)

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