/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.apache.ambari.server.api.services; import java.util.HashMap; import java.util.Map; import javax.ws.rs.DELETE; import javax.ws.rs.GET; import javax.ws.rs.POST; import javax.ws.rs.PUT; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.Produces; import javax.ws.rs.core.Context; import javax.ws.rs.core.HttpHeaders; import javax.ws.rs.core.Response; import javax.ws.rs.core.UriInfo; import org.apache.ambari.server.api.resources.ResourceInstance; import org.apache.ambari.server.controller.spi.Resource; /** * Service responsible for services resource requests. */ public class ServiceService extends BaseService { /** * Parent cluster name. */ private String m_clusterName; /** * Constructor. * * @param clusterName cluster id */ public ServiceService(String clusterName) { m_clusterName = clusterName; } /** * Handles URL: /clusters/{clusterID}/services/{serviceID} * Get a specific service. * * @param headers http headers * @param ui uri info * @param serviceName service id * @return service resource representation */ @GET @Path("{serviceName}") @Produces("text/plain") public Response getService(String body, @Context HttpHeaders headers, @Context UriInfo ui, @PathParam("serviceName") String serviceName) { return handleRequest(headers, body, ui, Request.Type.GET, createServiceResource(m_clusterName, serviceName)); } /** * Handles URL: /clusters/{clusterId}/services * Get all services for a cluster. * * @param headers http headers * @param ui uri info * @return service collection resource representation */ @GET @Produces("text/plain") public Response getServices(String body, @Context HttpHeaders headers, @Context UriInfo ui) { return handleRequest(headers, body, ui, Request.Type.GET, createServiceResource(m_clusterName, null)); } /** * Handles: POST /clusters/{clusterId}/services/{serviceId} * Create a specific service. * * @param body http body * @param headers http headers * @param ui uri info * @param serviceName service id * @return information regarding the created service */ @POST @Path("{serviceName}") @Produces("text/plain") public Response createService(String body, @Context HttpHeaders headers, @Context UriInfo ui, @PathParam("serviceName") String serviceName) { return handleRequest(headers, body, ui, Request.Type.POST, createServiceResource(m_clusterName, serviceName)); } /** * Handles: POST /clusters/{clusterId}/services * Create multiple services. * * @param body http body * @param headers http headers * @param ui uri info * @return information regarding the created services */ @POST @Produces("text/plain") public Response createServices(String body, @Context HttpHeaders headers, @Context UriInfo ui) { return handleRequest(headers, body, ui, Request.Type.POST, createServiceResource(m_clusterName, null)); } /** * Handles: PUT /clusters/{clusterId}/services/{serviceId} * Update a specific service. * * @param body http body * @param headers http headers * @param ui uri info * @param serviceName service id * @return information regarding the updated service */ @PUT @Path("{serviceName}") @Produces("text/plain") public Response updateService(String body, @Context HttpHeaders headers, @Context UriInfo ui, @PathParam("serviceName") String serviceName) { return handleRequest(headers, body, ui, Request.Type.PUT, createServiceResource(m_clusterName, serviceName)); } /** * Handles: PUT /clusters/{clusterId}/services * Update multiple services. * * @param body http body * @param headers http headers * @param ui uri info * @return information regarding the updated service */ @PUT @Produces("text/plain") public Response updateServices(String body, @Context HttpHeaders headers, @Context UriInfo ui) { return handleRequest(headers, body, ui, Request.Type.PUT, createServiceResource(m_clusterName, null)); } /** * Handles: DELETE /clusters/{clusterId}/services/{serviceId} * Delete a specific service. * * @param headers http headers * @param ui uri info * @param serviceName service id * @return information regarding the deleted service */ @DELETE @Path("{serviceName}") @Produces("text/plain") public Response deleteService(@Context HttpHeaders headers, @Context UriInfo ui, @PathParam("serviceName") String serviceName) { return handleRequest(headers, null, ui, Request.Type.DELETE, createServiceResource(m_clusterName, serviceName)); } /** * Get the components sub-resource. * * @param serviceName service id * @return the components service */ @Path("{serviceName}/components") public ComponentService getComponentHandler(@PathParam("serviceName") String serviceName) { return new ComponentService(m_clusterName, serviceName); } /** * Gets the alerts sub-resource. */ @Path("{serviceName}/alerts") public AlertService getAlertHandler( @PathParam("serviceName") String serviceName) { return new AlertService(m_clusterName, serviceName, null); } /** * Handles: POST /clusters/{clusterId}/services/{serviceId}/artifacts/{artifactName} * Create a service artifact instance. * * @param body http body * @param headers http headers * @param ui uri info * @param serviceName service name * @param artifactName artifact name * * @return information regarding the created artifact */ @POST @Path("{serviceName}/artifacts/{artifactName}") @Produces("text/plain") public Response createArtifact(String body, @Context HttpHeaders headers, @Context UriInfo ui, @PathParam("serviceName") String serviceName, @PathParam("artifactName") String artifactName) { return handleRequest(headers, body, ui, Request.Type.POST, createArtifactResource(m_clusterName, serviceName, artifactName)); } /** * Handles: GET /clusters/{clusterId}/services/{serviceId}/artifacts * Get all service artifacts. * * @param body http body * @param headers http headers * @param ui uri info * @param serviceName service name * * @return artifact collection resource representation */ @GET @Path("{serviceName}/artifacts") @Produces("text/plain") public Response getArtifacts(String body, @Context HttpHeaders headers, @Context UriInfo ui, @PathParam("serviceName") String serviceName) { return handleRequest(headers, body, ui, Request.Type.GET, createArtifactResource(m_clusterName, serviceName, null)); } /** * Handles: GET /clusters/{clusterId}/services/{serviceId}/artifacts/{artifactName} * Gat a service artifact instance. * * @param body http body * @param headers http headers * @param ui uri info * @param serviceName service name * @param artifactName artifact name * * @return artifact instance resource representation */ @GET @Path("{serviceName}/artifacts/{artifactName}") @Produces("text/plain") public Response getArtifact(String body, @Context HttpHeaders headers, @Context UriInfo ui, @PathParam("serviceName") String serviceName, @PathParam("artifactName") String artifactName) { return handleRequest(headers, body, ui, Request.Type.GET, createArtifactResource(m_clusterName, serviceName, artifactName)); } /** * Handles: PUT /clusters/{clusterID}/services/{serviceName}/artifacts * Update all artifacts matching the provided predicate. * * @param headers http headers * @param ui uri info * @param serviceName service name * * @return information regarding the updated artifacts */ @PUT @Path("{serviceName}/artifacts") @Produces("text/plain") public Response updateArtifacts(String body, @Context HttpHeaders headers, @Context UriInfo ui, @PathParam("serviceName") String serviceName) { return handleRequest(headers, body, ui, Request.Type.PUT, createArtifactResource(m_clusterName, serviceName, null)); } /** * Handles: PUT /clusters/{clusterID}/services/{serviceName}/artifacts/{artifactName} * Update a specific artifact. * * @param headers http headers * @param ui uri info * @param serviceName service name * @param artifactName artifact name * * @return information regarding the updated artifact */ @PUT @Path("{serviceName}/artifacts/{artifactName}") @Produces("text/plain") public Response updateArtifact(String body, @Context HttpHeaders headers, @Context UriInfo ui, @PathParam("serviceName") String serviceName, @PathParam("artifactName") String artifactName) { return handleRequest(headers, body, ui, Request.Type.PUT, createArtifactResource(m_clusterName, serviceName, artifactName)); } /** * Handles: DELETE /clusters/{clusterID}/services/{serviceName}/artifacts * Delete all artifacts matching the provided predicate. * * @param headers http headers * @param ui uri info * @param serviceName service name * * @return information regarding the deleted artifacts */ @DELETE @Path("{serviceName}/artifacts") @Produces("text/plain") public Response deleteArtifacts(String body, @Context HttpHeaders headers, @Context UriInfo ui, @PathParam("serviceName") String serviceName) { return handleRequest(headers, body, ui, Request.Type.DELETE, createArtifactResource(m_clusterName, serviceName, null)); } /** * Handles: DELETE /clusters/{clusterID}/services/{serviceName}/artifacts/{artifactName} * Delete a specific artifact. * * @param headers http headers * @param ui uri info * @param serviceName service name * @param artifactName artifact name * * @return information regarding the deleted artifact */ @DELETE @Path("{serviceName}/artifacts/{artifactName}") @Produces("text/plain") public Response deleteArtifact(String body, @Context HttpHeaders headers, @Context UriInfo ui, @PathParam("serviceName") String serviceName, @PathParam("artifactName") String artifactName) { return handleRequest(headers, body, ui, Request.Type.DELETE, createArtifactResource(m_clusterName, serviceName, artifactName)); } /** * Gets the alert history service * * @param request * the request * @param serviceName * the service name * * @return the alert history service */ @Path("{serviceName}/alert_history") public AlertHistoryService getAlertHistoryService( @Context javax.ws.rs.core.Request request, @PathParam("serviceName") String serviceName) { return new AlertHistoryService(m_clusterName, serviceName, null); } /** * Create a service resource instance. * * @param clusterName cluster name * @param serviceName service name * * @return a service resource instance */ ResourceInstance createServiceResource(String clusterName, String serviceName) { Map<Resource.Type,String> mapIds = new HashMap<>(); mapIds.put(Resource.Type.Cluster, clusterName); mapIds.put(Resource.Type.Service, serviceName); return createResource(Resource.Type.Service, mapIds); } /** * Create an artifact resource instance. * * @param clusterName cluster name * @param serviceName service name * @param artifactName artifact name * * @return an artifact resource instance */ ResourceInstance createArtifactResource(String clusterName, String serviceName, String artifactName) { Map<Resource.Type,String> mapIds = new HashMap<>(); mapIds.put(Resource.Type.Cluster, clusterName); mapIds.put(Resource.Type.Service, serviceName); mapIds.put(Resource.Type.Artifact, artifactName); return createResource(Resource.Type.Artifact, mapIds); } }