Search in sources :

Example 1 with ProjectResourceLinks

use of com.remswork.project.alice.resource.links.ProjectResourceLinks 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 2 with ProjectResourceLinks

use of com.remswork.project.alice.resource.links.ProjectResourceLinks 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 3 with ProjectResourceLinks

use of com.remswork.project.alice.resource.links.ProjectResourceLinks in project classify-system by anverliedoit.

the class ProjectResource method addProject.

@POST
public Response addProject(Project project) {
    try {
        ProjectResourceLinks resourceLinks = new ProjectResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        if (termId > 0)
            project = projectService.addProject(project, classId, termId);
        else
            project = projectService.addProject(project, 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.CREATED).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 : 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 4 with ProjectResourceLinks

use of com.remswork.project.alice.resource.links.ProjectResourceLinks in project classify-system by anverliedoit.

the class ProjectResource method deleteProjectById.

@DELETE
@Path("{projectId}")
public Response deleteProjectById(@PathParam("projectId") long id) {
    try {
        ProjectResourceLinks resourceLinks = new ProjectResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        Project project = projectService.deleteProjectById(id);
        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 5 with ProjectResourceLinks

use of com.remswork.project.alice.resource.links.ProjectResourceLinks in project classify-system by anverliedoit.

the class ProjectResource method getProjectList.

@GET
public Response getProjectList() {
    try {
        List<Project> projectList;
        ProjectResourceLinks resourceLinks = new ProjectResourceLinks(uriInfo);
        ClassResourceLinks classResourceLinks = new ClassResourceLinks(uriInfo);
        if (classId != 0 && termId != 0)
            projectList = projectService.getProjectListByClassId(classId, termId);
        else if (classId != 0)
            projectList = projectService.getProjectListByClassId(classId);
        else if (studentId != 0 && termId != 0)
            projectList = projectService.getProjectListByStudentId(studentId, termId);
        else if (studentId != 0)
            projectList = projectService.getProjectListByStudentId(studentId);
        else
            projectList = projectService.getProjectList();
        for (Project project : projectList) {
            project.addLink(resourceLinks.self(project.getId()));
            if (project.get_class() != null)
                project.get_class().addLink(classResourceLinks.self(project.get_class().getId()));
        }
        GenericEntity<List<Project>> entity = new GenericEntity<List<Project>>(projectList) {
        };
        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 : 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) List(java.util.List)

Aggregations

GradingFactorException (com.remswork.project.alice.exception.GradingFactorException)5 Message (com.remswork.project.alice.model.support.Message)5 ClassResourceLinks (com.remswork.project.alice.resource.links.ClassResourceLinks)5 ProjectResourceLinks (com.remswork.project.alice.resource.links.ProjectResourceLinks)5 Project (com.remswork.project.alice.model.Project)4 List (java.util.List)1