/* * Copyright (c) 2015 IBM Corporation and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.neutron.northbound.api; import java.net.HttpURLConnection; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import javax.ws.rs.Consumes; import javax.ws.rs.DELETE; 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.QueryParam; import javax.ws.rs.core.Context; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Response; import javax.ws.rs.core.UriInfo; import org.codehaus.enunciate.jaxrs.ResponseCode; import org.codehaus.enunciate.jaxrs.StatusCodes; import org.codehaus.enunciate.jaxrs.TypeHint; import org.opendaylight.neutron.spi.INeutronMeteringLabelRuleAware; import org.opendaylight.neutron.spi.INeutronMeteringLabelRuleCRUD; import org.opendaylight.neutron.spi.NeutronCRUDInterfaces; import org.opendaylight.neutron.spi.NeutronMeteringLabelRule; /** * Neutron Northbound REST APIs for Metering Lable Rules.
* This class provides REST APIs for managing neutron metering label rules * *
*
* Authentication scheme : HTTP Basic
* Authentication realm : opendaylight
* Transport : HTTP and HTTPS
*
* HTTPS Authentication is disabled by default. Administrator can enable it in * tomcat-server.xml after adding a proper keystore / SSL certificate from a * trusted authority.
* More info : * http://tomcat.apache.org/tomcat-7.0-doc/ssl-howto.html#Configuration * */ @Path("/metering/metering-label-rules") public class NeutronMeteringLabelRulesNorthbound { private static final int HTTP_OK_BOTTOM = 200; private static final int HTTP_OK_TOP = 299; private NeutronMeteringLabelRule extractFields(NeutronMeteringLabelRule o, List fields) { return o.extractFields(fields); } private NeutronCRUDInterfaces getNeutronInterfaces() { NeutronCRUDInterfaces answer = new NeutronCRUDInterfaces().fetchINeutronMeteringLabelRuleCRUD(this); if (answer.getMeteringLabelRuleInterface() == null) { throw new ServiceUnavailableException("NeutronMeteringLabelRule CRUD Interface " + RestMessages.SERVICEUNAVAILABLE.toString()); } return answer; } @Context UriInfo uriInfo; /** * Returns a list of all metering label rules */ @GET @Produces({ MediaType.APPLICATION_JSON }) //@TypeHint(OpenStackNetworks.class) @StatusCodes({ @ResponseCode(code = HttpURLConnection.HTTP_OK, condition = "Operation successful"), @ResponseCode(code = HttpURLConnection.HTTP_UNAUTHORIZED, condition = "Unauthorized"), @ResponseCode(code = HttpURLConnection.HTTP_NOT_IMPLEMENTED, condition = "Not Implemented"), @ResponseCode(code = HttpURLConnection.HTTP_UNAVAILABLE, condition = "No providers available") }) public Response listMeteringLabelRules( // return fields @QueryParam("fields") List fields, // filter fields @QueryParam("id") String queryID, @QueryParam("direction") String queryDirection, @QueryParam("remote_ip_prefix") String queryRemoteIPPrefix, @QueryParam("metering_label_id") String queryLabelID // pagination and sorting are TODO ) { INeutronMeteringLabelRuleCRUD ruleInterface = getNeutronInterfaces().getMeteringLabelRuleInterface(); List allNeutronMeteringLabelRules = ruleInterface.getAllNeutronMeteringLabelRules(); List ans = new ArrayList(); Iterator i = allNeutronMeteringLabelRules.iterator(); while (i.hasNext()) { NeutronMeteringLabelRule oSS = i.next(); if ((queryID == null || queryID.equals(oSS.getID())) && (queryDirection == null || queryDirection.equals(oSS.getMeteringLabelRuleDirection())) && (queryRemoteIPPrefix == null || queryRemoteIPPrefix.equals(oSS.getMeteringLabelRuleRemoteIPPrefix())) && (queryLabelID == null || queryLabelID.equals(oSS.getMeteringLabelRuleLabelID()))) { if (fields.size() > 0) { ans.add(extractFields(oSS,fields)); } else { ans.add(oSS); } } } //TODO: apply pagination to results return Response.status(HttpURLConnection.HTTP_OK).entity( new NeutronMeteringLabelRuleRequest(ans)).build(); } /** * Returns a specific metering label rule */ @Path("{ruleUUID}") @GET @Produces({ MediaType.APPLICATION_JSON }) @StatusCodes({ @ResponseCode(code = HttpURLConnection.HTTP_OK, condition = "Operation successful"), @ResponseCode(code = HttpURLConnection.HTTP_UNAUTHORIZED, condition = "Unauthorized"), @ResponseCode(code = HttpURLConnection.HTTP_FORBIDDEN, condition = "Forbidden"), @ResponseCode(code = HttpURLConnection.HTTP_NOT_FOUND, condition = "Not Found"), @ResponseCode(code = HttpURLConnection.HTTP_NOT_IMPLEMENTED, condition = "Not Implemented"), @ResponseCode(code = HttpURLConnection.HTTP_UNAVAILABLE, condition = "No providers available") }) public Response showMeteringLabelRule( @PathParam("ruleUUID") String ruleUUID, // return fields @QueryParam("fields") List fields) { INeutronMeteringLabelRuleCRUD ruleInterface = getNeutronInterfaces().getMeteringLabelRuleInterface(); if (!ruleInterface.neutronMeteringLabelRuleExists(ruleUUID)) { throw new ResourceNotFoundException("MeteringLabelRule UUID not found"); } if (fields.size() > 0) { NeutronMeteringLabelRule ans = ruleInterface.getNeutronMeteringLabelRule(ruleUUID); return Response.status(HttpURLConnection.HTTP_OK).entity( new NeutronMeteringLabelRuleRequest(extractFields(ans, fields))).build(); } else { return Response.status(HttpURLConnection.HTTP_OK).entity( new NeutronMeteringLabelRuleRequest(ruleInterface.getNeutronMeteringLabelRule(ruleUUID))).build(); } } /** * Creates new metering label rule */ @POST @Produces({ MediaType.APPLICATION_JSON }) @Consumes({ MediaType.APPLICATION_JSON }) //@TypeHint(NeutronNetwork.class) @StatusCodes({ @ResponseCode(code = HttpURLConnection.HTTP_CREATED, condition = "Created"), @ResponseCode(code = HttpURLConnection.HTTP_UNAVAILABLE, condition = "No providers available") }) public Response createMeteringLabelRule(final NeutronMeteringLabelRuleRequest input) { INeutronMeteringLabelRuleCRUD meteringLabelRuleInterface = getNeutronInterfaces().getMeteringLabelRuleInterface(); if (input.isSingleton()) { NeutronMeteringLabelRule singleton = input.getSingleton(); Object[] instances = NeutronUtil.getInstances(INeutronMeteringLabelRuleAware.class, this); if (instances != null) { if (instances.length > 0) { for (Object instance : instances) { INeutronMeteringLabelRuleAware service = (INeutronMeteringLabelRuleAware) instance; int status = service.canCreateMeteringLabelRule(singleton); if (status < HTTP_OK_BOTTOM || status > HTTP_OK_TOP) { return Response.status(status).build(); } } } else { throw new ServiceUnavailableException("No providers registered. Please try again later"); } } else { throw new ServiceUnavailableException("Couldn't get providers list. Please try again later"); } /* * add meteringLabelRule to the cache */ meteringLabelRuleInterface.addNeutronMeteringLabelRule(singleton); if (instances != null) { for (Object instance : instances) { INeutronMeteringLabelRuleAware service = (INeutronMeteringLabelRuleAware) instance; service.neutronMeteringLabelRuleCreated(singleton); } } } else { /* * only singleton meteringLabelRule creates supported */ throw new BadRequestException("Only singleton meteringLabelRule creates supported"); } return Response.status(HttpURLConnection.HTTP_CREATED).entity(input).build(); } /** * Deletes a Metering Label rule */ @Path("{ruleUUID}") @DELETE @StatusCodes({ @ResponseCode(code = HttpURLConnection.HTTP_NO_CONTENT, condition = "No Content"), @ResponseCode(code = HttpURLConnection.HTTP_UNAVAILABLE, condition = "No providers available") }) public Response deleteMeteringLabelRule( @PathParam("ruleUUID") String ruleUUID) { INeutronMeteringLabelRuleCRUD meteringLabelRuleInterface = getNeutronInterfaces().getMeteringLabelRuleInterface(); NeutronMeteringLabelRule singleton = meteringLabelRuleInterface.getNeutronMeteringLabelRule(ruleUUID); Object[] instances = NeutronUtil.getInstances(INeutronMeteringLabelRuleAware.class, this); if (instances != null) { if (instances.length > 0) { for (Object instance : instances) { INeutronMeteringLabelRuleAware service = (INeutronMeteringLabelRuleAware) instance; int status = service.canDeleteMeteringLabelRule(singleton); if (status < HTTP_OK_BOTTOM || status > HTTP_OK_TOP) { return Response.status(status).build(); } } } else { throw new ServiceUnavailableException("No providers registered. Please try again later"); } } else { throw new ServiceUnavailableException("Couldn't get providers list. Please try again later"); } meteringLabelRuleInterface.removeNeutronMeteringLabelRule(ruleUUID); if (instances != null) { for (Object instance : instances) { INeutronMeteringLabelRuleAware service = (INeutronMeteringLabelRuleAware) instance; service.neutronMeteringLabelRuleDeleted(singleton); } } return Response.status(HttpURLConnection.HTTP_NO_CONTENT).build(); } }