Search in sources :

Example 21 with GradingFactorException

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

the class ExamResultResource method deleteExamResult.

@DELETE
public Response deleteExamResult(@PathParam("examId") long examId) {
    try {
        ExamResultResourceLinks resultResourceLinks = new ExamResultResourceLinks(uriInfo);
        ExamResult result = examService.deleteExamResultByExamAndStudentId(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.BAD_REQUEST).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 22 with GradingFactorException

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

the class FormulaResource method getFormulaById.

@GET
@Path("{formulaId}")
public Response getFormulaById(@PathParam("formulaId") long id) {
    try {
        FormulaResourceLinks resourceLinks = new FormulaResourceLinks(uriInfo);
        SubjectResourceLinks subjectResourceLinks = new SubjectResourceLinks(uriInfo);
        TeacherResourceLinks teacherResourceLinks = new TeacherResourceLinks(uriInfo);
        Formula formula = formulaService.getFormulaById(id);
        formula.addLink(resourceLinks.self(id));
        if (formula.getSubject() != null)
            formula.getSubject().addLink(subjectResourceLinks.self(formula.getSubject().getId()));
        if (formula.getTeacher() != null)
            formula.getTeacher().addLink(teacherResourceLinks.self(formula.getTeacher().getId()));
        return Response.status(Response.Status.OK).entity(formula).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 : Formula(com.remswork.project.alice.model.Formula) SubjectResourceLinks(com.remswork.project.alice.resource.links.SubjectResourceLinks) FormulaResourceLinks(com.remswork.project.alice.resource.links.FormulaResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException) TeacherResourceLinks(com.remswork.project.alice.resource.links.TeacherResourceLinks)

Example 23 with GradingFactorException

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

the class ProjectResource method updateProjectById.

@PUT
@Path("{projectId}")
public Response updateProjectById(@PathParam("projectId") long id, Project newProject) {
    try {
        ProjectResourceLinks resourceLinks = new ProjectResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        Project project;
        if (termId > 0)
            project = projectService.updateProjectById(id, newProject, classId, termId);
        else
            project = projectService.updateProjectById(id, newProject, classId);
        project.addLink(resourceLinks.self(project.getId()));
        if (project.get_class() != null)
            project.get_class().addLink(classResourceLinks.self(project.get_class().getId()));
        return Response.status(Response.Status.OK).entity(project).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 : Project(com.remswork.project.alice.model.Project) ClassResourceLinks(com.remswork.project.alice.resource.links.ClassResourceLinks) ProjectResourceLinks(com.remswork.project.alice.resource.links.ProjectResourceLinks) Message(com.remswork.project.alice.model.support.Message) GradingFactorException(com.remswork.project.alice.exception.GradingFactorException)

Example 24 with GradingFactorException

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

the class ProjectResource method getProjectById.

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

Example 25 with GradingFactorException

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

the class ProjectResultResource method deleteProjectResult.

@DELETE
public Response deleteProjectResult(@PathParam("projectId") long projectId) {
    try {
        ProjectResultResourceLinks resultResourceLinks = new ProjectResultResourceLinks(uriInfo);
        ProjectResult result = projectService.deleteProjectResultByProjectAndStudentId(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.BAD_REQUEST).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)

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