blob: e657d4bcda31cb0f31ed770ccc626bd3a45bb60c [file] [log] [blame]
sanghoshin94872a12015-10-16 18:04:34 +09001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
sanghoshin94872a12015-10-16 18:04:34 +09003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
sangho0c2a3da2016-02-16 13:39:07 +090016package org.onosproject.openstacknetworking.web;
sanghoshin94872a12015-10-16 18:04:34 +090017
Hyunsun Moon44aac662017-02-18 02:07:01 +090018import com.fasterxml.jackson.databind.JsonNode;
19import org.onlab.osgi.DefaultServiceDirectory;
20import org.onosproject.openstacknetworking.api.OpenstackNetworkAdminService;
sanghoshin94872a12015-10-16 18:04:34 +090021import org.onosproject.rest.AbstractWebResource;
Hyunsun Moon44aac662017-02-18 02:07:01 +090022import org.openstack4j.core.transport.ObjectMapperSingleton;
23import org.openstack4j.openstack.networking.domain.NeutronPort;
sanghoc853a722016-07-04 21:10:42 +090024import org.slf4j.Logger;
25import org.slf4j.LoggerFactory;
sanghoshin94872a12015-10-16 18:04:34 +090026
27import javax.ws.rs.Consumes;
28import javax.ws.rs.DELETE;
29import javax.ws.rs.POST;
30import javax.ws.rs.PUT;
31import javax.ws.rs.Path;
sanghoshin65723ae2015-11-17 22:07:21 +090032import javax.ws.rs.PathParam;
sanghoshin94872a12015-10-16 18:04:34 +090033import javax.ws.rs.Produces;
Hyunsun Moon44aac662017-02-18 02:07:01 +090034import javax.ws.rs.core.Context;
sanghoshin94872a12015-10-16 18:04:34 +090035import javax.ws.rs.core.MediaType;
36import javax.ws.rs.core.Response;
Hyunsun Moon44aac662017-02-18 02:07:01 +090037import javax.ws.rs.core.UriBuilder;
38import javax.ws.rs.core.UriInfo;
sanghoshin94872a12015-10-16 18:04:34 +090039import java.io.InputStream;
40
Hyunsun Moon44aac662017-02-18 02:07:01 +090041import static com.fasterxml.jackson.databind.SerializationFeature.INDENT_OUTPUT;
42import static javax.ws.rs.core.Response.created;
43import static javax.ws.rs.core.Response.noContent;
44import static javax.ws.rs.core.Response.status;
sanghoc853a722016-07-04 21:10:42 +090045
sanghoshinf25d2e02015-11-11 23:07:17 +090046/**
47 * Handles Rest API call from Neutron ML2 plugin.
48 */
sanghoshin94872a12015-10-16 18:04:34 +090049@Path("ports")
50public class OpenstackPortWebResource extends AbstractWebResource {
Hyunsun Moon44aac662017-02-18 02:07:01 +090051 protected final Logger log = LoggerFactory.getLogger(getClass());
sanghoc853a722016-07-04 21:10:42 +090052
Hyunsun Moon44aac662017-02-18 02:07:01 +090053 private static final String MESSAGE = "Received ports %s request";
54 private static final String PORTS = "ports";
sanghoshin94872a12015-10-16 18:04:34 +090055
Hyunsun Moon44aac662017-02-18 02:07:01 +090056 private final OpenstackNetworkAdminService adminService =
57 DefaultServiceDirectory.getService(OpenstackNetworkAdminService.class);
58
59 @Context
60 private UriInfo uriInfo;
61
62 /**
63 * Creates a port from the JSON input stream.
64 *
65 * @param input port JSON input stream
66 * @return 201 CREATED if the JSON is correct, 400 BAD_REQUEST if the JSON
67 * is invalid or duplicated port already exists
Jian Li2077f662018-02-12 14:01:35 +090068 * @onos.rsModel NeutronPort
Hyunsun Moon44aac662017-02-18 02:07:01 +090069 */
sanghoshin94872a12015-10-16 18:04:34 +090070 @POST
71 @Consumes(MediaType.APPLICATION_JSON)
72 @Produces(MediaType.APPLICATION_JSON)
73 public Response createPorts(InputStream input) {
Hyunsun Moon44aac662017-02-18 02:07:01 +090074 log.trace(String.format(MESSAGE, "CREATE"));
75
76 final NeutronPort port = readPort(input);
77 adminService.createPort(port);
78 UriBuilder locationBuilder = uriInfo.getBaseUriBuilder()
79 .path(PORTS)
80 .path(port.getId());
81
82 return created(locationBuilder.build()).build();
sanghoshin94872a12015-10-16 18:04:34 +090083 }
84
Hyunsun Moon44aac662017-02-18 02:07:01 +090085 /**
86 * Updates the port with the specified identifier.
87 *
88 * @param id port identifier
89 * @param input port JSON input stream
90 * @return 200 OK with the updated port, 400 BAD_REQUEST if the requested
91 * port does not exist
Jian Li2077f662018-02-12 14:01:35 +090092 * @onos.rsModel NeutronPort
Hyunsun Moon44aac662017-02-18 02:07:01 +090093 */
sanghoshin94872a12015-10-16 18:04:34 +090094 @PUT
95 @Path("{id}")
96 @Consumes(MediaType.APPLICATION_JSON)
97 @Produces(MediaType.APPLICATION_JSON)
Hyunsun Moon44aac662017-02-18 02:07:01 +090098 public Response updatePort(@PathParam("id") String id, InputStream input) {
99 log.trace(String.format(MESSAGE, "UPDATE " + id));
sanghoc853a722016-07-04 21:10:42 +0900100
Hyunsun Moon44aac662017-02-18 02:07:01 +0900101 final NeutronPort port = readPort(input);
102 adminService.updatePort(port);
103
104 return status(Response.Status.OK).build();
105 }
106
107 /**
108 * Removes the port with the given id.
109 *
110 * @param id port identifier
111 * @return 204 NO_CONTENT, 400 BAD_REQUEST if the port does not exist
112 */
113 @DELETE
114 @Path("{id}")
115 @Consumes(MediaType.APPLICATION_JSON)
116 @Produces(MediaType.APPLICATION_JSON)
117 public Response deletePorts(@PathParam("id") String id) {
118 log.trace(String.format(MESSAGE, "DELETE " + id));
119
120 adminService.removePort(id);
121 return noContent().build();
122 }
123
124 private NeutronPort readPort(InputStream input) {
sanghoc853a722016-07-04 21:10:42 +0900125 try {
Hyunsun Moon44aac662017-02-18 02:07:01 +0900126 JsonNode jsonTree = mapper().enable(INDENT_OUTPUT).readTree(input);
127 log.trace(mapper().writeValueAsString(jsonTree));
128 return ObjectMapperSingleton.getContext(NeutronPort.class)
129 .readerFor(NeutronPort.class)
130 .readValue(jsonTree);
131 } catch (Exception e) {
132 throw new IllegalArgumentException();
sanghoc853a722016-07-04 21:10:42 +0900133 }
sanghoshin94872a12015-10-16 18:04:34 +0900134 }
135}