/* * JBoss, Home of Professional Open Source * Copyright 2013, Red Hat, Inc. and/or its affiliates, and individual * contributors by the @authors tag. See the copyright.txt in the * distribution for a full listing of individual contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jboss.as.quickstarts.tasksrs.service; import java.net.URI; import java.security.Principal; import java.util.List; import javax.inject.Inject; import javax.ws.rs.DELETE; import javax.ws.rs.DefaultValue; import javax.ws.rs.GET; import javax.ws.rs.POST; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.Produces; import javax.ws.rs.WebApplicationException; import javax.ws.rs.core.Context; import javax.ws.rs.core.Response; import javax.ws.rs.core.SecurityContext; import javax.ws.rs.core.UriBuilder; import javax.ws.rs.core.UriInfo; import org.jboss.as.quickstarts.tasksrs.model.Task; import org.jboss.as.quickstarts.tasksrs.model.TaskDao; import org.jboss.as.quickstarts.tasksrs.model.User; import org.jboss.as.quickstarts.tasksrs.model.UserDao; /** * A JAX-RS resource for exposing REST endpoints for Task manipulation */ @Path("/") public class TaskResource { @Inject private UserDao userDao; @Inject private TaskDao taskDao; @POST @Path("tasks/{title}") public Response createTask(@Context UriInfo info, @Context SecurityContext context, @PathParam("title") @DefaultValue("task") String taskTitle) { User user = getUser(context); Task task = new Task(taskTitle); taskDao.createTask(user, task); // Construct the URI for the newly created resource and put in into the Location header of the response // (assumes that there is only one occurrence of the task title in the request) String rawPath = info.getAbsolutePath().getRawPath().replace(task.getTitle(), task.getId().toString()); UriBuilder uriBuilder = info.getAbsolutePathBuilder().replacePath(rawPath); URI uri = uriBuilder.build(); return Response.created(uri).build(); } @DELETE @Path("tasks/{id}") public void deleteTaskById(@Context SecurityContext context, @PathParam("id") Long id) { Task task = getTaskById(context, id); taskDao.deleteTask(task); } @GET @Path("tasks/{id}") // JSON: include "application/json" in the @Produces annotation to include json support //@Produces({ "application/xml", "application/json" }) @Produces({ "application/xml" }) public Task getTaskById(@Context SecurityContext context, @PathParam("id") Long id) { User user = getUser(context); return getTask(user, id); } @GET @Path("tasks/{title}") // JSON: include "application/json" in the @Produces annotation to include json support //@Produces({ "application/xml", "application/json" }) @Produces({ "application/xml" }) public List<Task> getTasksByTitle(@Context SecurityContext context, @PathParam("title") String title) { return getTasks(getUser(context), title); } @GET @Path("tasks") // JSON: include "application/json" in the @Produces annotation to include json support //@Produces({ "application/xml", "application/json" }) @Produces({ "application/xml" }) public List<Task> getTasks(@Context SecurityContext context) { return getTasks(getUser(context)); } // Utility Methods private List<Task> getTasks(User user, String title) { return taskDao.getForTitle(user, title); } private List<Task> getTasks(User user) { return taskDao.getAll(user); } private Task getTask(User user, Long id) { for (Task task : taskDao.getAll(user)) if (task.getId().equals(id)) return task; throw new WebApplicationException(Response.Status.NOT_FOUND); } private User getUser(SecurityContext context) { Principal principal = null; if (context != null) principal = context.getUserPrincipal(); if (principal == null) throw new WebApplicationException(Response.Status.UNAUTHORIZED); return getUser(principal.getName()); } private User getUser(String username) { try { User user = userDao.getForUsername(username); if (user == null) { user = new User(username); userDao.createUser(user); } return user; } catch (Exception e) { throw new WebApplicationException(e); } } }