/* * Copyright (c) 2013, 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.DefaultValue; 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.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.opendaylight.neutron.spi.INeutronPortAware; import org.opendaylight.neutron.spi.INeutronPortCRUD; import org.opendaylight.neutron.spi.NeutronCRUDInterfaces; import org.opendaylight.neutron.spi.NeutronPort; /** * Neutron Northbound REST APIs.
* This class provides REST APIs for managing neutron port objects * *
*
* 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("/ports") public class NeutronPortsNorthbound extends AbstractNeutronNorthboundIAware { private static final String RESOURCE_NAME = "Port"; @Override protected String getResourceName() { return RESOURCE_NAME; } @Override protected NeutronPort extractFields(NeutronPort o, List fields) { return o.extractFields(fields); } private NeutronCRUDInterfaces getNeutronInterfaces(boolean needNetworks, boolean needSubnets) { NeutronCRUDInterfaces answer = new NeutronCRUDInterfaces().fetchINeutronPortCRUD(this); if (answer.getPortInterface() == null) { throw new ServiceUnavailableException(serviceUnavailable()); } if (needNetworks) { answer = answer.fetchINeutronNetworkCRUD( this); if (answer.getNetworkInterface() == null) { throw new ServiceUnavailableException("Network CRUD Interface " + RestMessages.SERVICEUNAVAILABLE.toString()); } } if (needSubnets) { answer = answer.fetchINeutronSubnetCRUD( this); if (answer.getSubnetInterface() == null) { throw new ServiceUnavailableException("Subnet CRUD Interface " + RestMessages.SERVICEUNAVAILABLE.toString()); } } return answer; } @Override protected INeutronPortCRUD getNeutronCRUD() { return getNeutronInterfaces(false, false).getPortInterface(); } @Override protected NeutronPortRequest newNeutronRequest(NeutronPort o) { return new NeutronPortRequest(o); } @Override protected Object[] getInstances() { return NeutronUtil.getInstances(INeutronPortAware.class, this); } @Override protected int canCreate(Object instance, NeutronPort singleton) { INeutronPortAware service = (INeutronPortAware) instance; return service.canCreatePort(singleton); } @Override protected void created(Object instance, NeutronPort singleton) { INeutronPortAware service = (INeutronPortAware) instance; service.neutronPortCreated(singleton); } @Override protected int canUpdate(Object instance, NeutronPort delta, NeutronPort original) { INeutronPortAware service = (INeutronPortAware) instance; return service.canUpdatePort(delta, original); } @Override protected void updated(Object instance, NeutronPort updated) { INeutronPortAware service = (INeutronPortAware) instance; service.neutronPortUpdated(updated); } @Override protected int canDelete(Object instance, NeutronPort singleton) { INeutronPortAware service = (INeutronPortAware) instance; return service.canDeletePort(singleton); } @Override protected void deleted(Object instance, NeutronPort singleton) { INeutronPortAware service = (INeutronPortAware) instance; service.neutronPortDeleted(singleton); } @Context UriInfo uriInfo; /** * Returns a list of all Ports */ @GET @Produces({ MediaType.APPLICATION_JSON }) //@TypeHint(OpenStackPorts.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 listPorts( // return fields @QueryParam("fields") List fields, // note: openstack isn't clear about filtering on lists, so we aren't handling them @QueryParam("id") String queryID, @QueryParam("network_id") String queryNetworkID, @QueryParam("name") String queryName, @QueryParam("admin_state_up") Boolean queryAdminStateUp, @QueryParam("status") String queryStatus, @QueryParam("mac_address") String queryMACAddress, @QueryParam("device_id") String queryDeviceID, @QueryParam("device_owner") String queryDeviceOwner, @QueryParam("tenant_id") String queryTenantID, @QueryParam("port_security_enabled") Boolean queryPortSecurityEnabled, // linkTitle @QueryParam("limit") Integer limit, @QueryParam("marker") String marker, @DefaultValue("false") @QueryParam("page_reverse") Boolean pageReverse // sorting not supported ) { INeutronPortCRUD portInterface = getNeutronInterfaces(false, false).getPortInterface(); List allPorts = portInterface.getAllPorts(); List ans = new ArrayList(); Iterator i = allPorts.iterator(); while (i.hasNext()) { NeutronPort oSS = i.next(); if ((queryID == null || queryID.equals(oSS.getID())) && (queryNetworkID == null || queryNetworkID.equals(oSS.getNetworkUUID())) && (queryName == null || queryName.equals(oSS.getName())) && (queryAdminStateUp == null || queryAdminStateUp.equals(oSS.getAdminStateUp())) && (queryStatus == null || queryStatus.equals(oSS.getStatus())) && (queryMACAddress == null || queryMACAddress.equals(oSS.getMacAddress())) && (queryDeviceID == null || queryDeviceID.equals(oSS.getDeviceID())) && (queryDeviceOwner == null || queryDeviceOwner.equals(oSS.getDeviceOwner())) && (queryTenantID == null || queryTenantID.equals(oSS.getTenantID())) && (queryPortSecurityEnabled == null || queryPortSecurityEnabled.equals(oSS.getPortSecurityEnabled()))) { if (fields.size() > 0) { ans.add(extractFields(oSS,fields)); } else { ans.add(oSS); } } } if (limit != null && ans.size() > 1) { // Return a paginated request NeutronPortRequest request = (NeutronPortRequest) PaginatedRequestFactory.createRequest(limit, marker, pageReverse, uriInfo, ans, NeutronPort.class); return Response.status(HttpURLConnection.HTTP_OK).entity(request).build(); } return Response.status(HttpURLConnection.HTTP_OK).entity( new NeutronPortRequest(ans)).build(); } /** * Returns a specific Port */ @Path("{portUUID}") @GET @Produces({ MediaType.APPLICATION_JSON }) //@TypeHint(OpenStackPorts.class) @StatusCodes({ @ResponseCode(code = HttpURLConnection.HTTP_OK, condition = "Operation successful"), @ResponseCode(code = HttpURLConnection.HTTP_UNAUTHORIZED, condition = "Unauthorized"), @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 showPort( @PathParam("portUUID") String portUUID, // return fields @QueryParam("fields") List fields ) { return show(portUUID, fields); } /** * Creates new Ports */ @POST @Produces({ MediaType.APPLICATION_JSON }) @Consumes({ MediaType.APPLICATION_JSON }) //@TypeHint(OpenStackPorts.class) @StatusCodes({ @ResponseCode(code = HttpURLConnection.HTTP_CREATED, condition = "Created"), @ResponseCode(code = HttpURLConnection.HTTP_UNAVAILABLE, condition = "No providers available") }) public Response createPorts(final NeutronPortRequest input) { getNeutronInterfaces(true, true); // Ensure that services for networks and subnets are loaded return create(input); } @Override protected void updateDelta(String uuid, NeutronPort delta, NeutronPort original) { /* * note: what we would like to get is the complete object as it * is known by neutron. Until then, patch what we *do* get * so that we don't lose already known information */ if (delta.getID() == null) { delta.setID(uuid); } if (delta.getTenantID() == null) { delta.setTenantID(original.getTenantID()); } if (delta.getNetworkUUID() == null) { delta.setNetworkUUID(original.getNetworkUUID()); } if (delta.getMacAddress() == null) { delta.setMacAddress(original.getMacAddress()); } if (delta.getFixedIPs() == null) { delta.setFixedIPs(original.getFixedIPs()); } } /** * Updates a Port */ @Path("{portUUID}") @PUT @Produces({ MediaType.APPLICATION_JSON }) @Consumes({ MediaType.APPLICATION_JSON }) //@TypeHint(OpenStackPorts.class) @StatusCodes({ @ResponseCode(code = HttpURLConnection.HTTP_OK, condition = "Operation successful"), @ResponseCode(code = HttpURLConnection.HTTP_NOT_FOUND, condition = "Not Found"), @ResponseCode(code = HttpURLConnection.HTTP_UNAVAILABLE, condition = "No providers available") }) public Response updatePort( @PathParam("portUUID") String portUUID, NeutronPortRequest input ) { // TODO: Support change of security groups // update the port and return the modified object return update(portUUID, input); } /** * Deletes a Port */ @Path("{portUUID}") @DELETE @StatusCodes({ @ResponseCode(code = HttpURLConnection.HTTP_NO_CONTENT, condition = "No Content"), @ResponseCode(code = HttpURLConnection.HTTP_NOT_FOUND, condition = "Not Found"), @ResponseCode(code = HttpURLConnection.HTTP_UNAVAILABLE, condition = "No providers available") }) public Response deletePort( @PathParam("portUUID") String portUUID) { return delete(portUUID); } }