/** * 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.view.pig.services; import org.apache.ambari.view.ViewContext; import org.apache.ambari.view.ViewResourceHandler; import org.apache.ambari.view.pig.persistence.DataStoreStorage; import org.apache.ambari.view.pig.resources.files.FileService; import org.apache.ambari.view.pig.resources.jobs.JobResourceManager; import org.apache.ambari.view.pig.utils.ServiceCheck; import org.apache.ambari.view.pig.utils.ServiceFormattedException; import org.apache.ambari.view.utils.hdfs.HdfsApiException; import org.json.simple.JSONObject; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.core.*; import java.util.HashMap; /** * Help service */ public class HelpService extends BaseService { private final static Logger LOG = LoggerFactory.getLogger(HelpService.class); private ViewContext context; private ViewResourceHandler handler; /** * Constructor * @param context View Context instance * @param handler View Resource Handler instance */ public HelpService(ViewContext context, ViewResourceHandler handler) { super(); this.context = context; this.handler = handler; } /** * View configuration * @return configuration of HDFS */ @GET @Path("/config") @Produces(MediaType.APPLICATION_JSON) public Response config(){ JSONObject object = new JSONObject(); String fs = context.getProperties().get("webhdfs.url"); object.put("webhdfs.url", fs); return Response.ok(object).build(); } /** * Version * @return version */ @GET @Path("/version") @Produces(MediaType.TEXT_PLAIN) public Response version(){ return Response.ok("0.0.1-SNAPSHOT").build(); } // ================================================================================ // Smoke tests // ================================================================================ /** * HDFS Status * @return status */ @GET @Path("/hdfsStatus") @Produces(MediaType.APPLICATION_JSON) public Response hdfsStatus(){ FileService.hdfsSmokeTest(context); return getOKResponse(); } /** * HomeDirectory Status * @return status */ @GET @Path("/userhomeStatus") @Produces(MediaType.APPLICATION_JSON) public Response userhomeStatus (){ FileService.userhomeSmokeTest(context); return getOKResponse(); } /** * WebHCat Status * @return status */ @GET @Path("/webhcatStatus") @Produces(MediaType.APPLICATION_JSON) public Response webhcatStatus(){ JobResourceManager.webhcatSmokeTest(context); return getOKResponse(); } /** * Storage Status * @return status */ @GET @Path("/storageStatus") @Produces(MediaType.APPLICATION_JSON) public Response storageStatus(){ DataStoreStorage.storageSmokeTest(context); return getOKResponse(); } @GET @Path("/service-check-policy") public Response getServiceCheckList(){ ServiceCheck serviceCheck = new ServiceCheck(context); try { ServiceCheck.Policy policy = serviceCheck.getServiceCheckPolicy(); JSONObject policyJson = new JSONObject(); policyJson.put("serviceCheckPolicy", policy); return Response.ok(policyJson).build(); } catch (HdfsApiException e) { LOG.error("Error occurred while generating service check policy : ", e); throw new ServiceFormattedException(e); } } private Response getOKResponse() { JSONObject response = new JSONObject(); response.put("message", "OK"); response.put("trace", null); response.put("status", "200"); return Response.ok().entity(response).type(MediaType.APPLICATION_JSON).build(); } }