blob: 79d6ddd4fd20dbe086d2f6226c30feeba690dfe3 [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 org.onlab.osgi.DefaultServiceDirectory;
19import org.onosproject.openstacknetworking.api.OpenstackNetworkAdminService;
sanghoshin94872a12015-10-16 18:04:34 +090020import org.onosproject.rest.AbstractWebResource;
Hyunsun Moon44aac662017-02-18 02:07:01 +090021import org.openstack4j.openstack.networking.domain.NeutronPort;
sanghoc853a722016-07-04 21:10:42 +090022import org.slf4j.Logger;
23import org.slf4j.LoggerFactory;
sanghoshin94872a12015-10-16 18:04:34 +090024
25import javax.ws.rs.Consumes;
26import javax.ws.rs.DELETE;
27import javax.ws.rs.POST;
28import javax.ws.rs.PUT;
29import javax.ws.rs.Path;
sanghoshin65723ae2015-11-17 22:07:21 +090030import javax.ws.rs.PathParam;
sanghoshin94872a12015-10-16 18:04:34 +090031import javax.ws.rs.Produces;
Hyunsun Moon44aac662017-02-18 02:07:01 +090032import javax.ws.rs.core.Context;
sanghoshin94872a12015-10-16 18:04:34 +090033import javax.ws.rs.core.MediaType;
34import javax.ws.rs.core.Response;
Hyunsun Moon44aac662017-02-18 02:07:01 +090035import javax.ws.rs.core.UriBuilder;
36import javax.ws.rs.core.UriInfo;
sanghoshin94872a12015-10-16 18:04:34 +090037import java.io.InputStream;
38
Hyunsun Moon44aac662017-02-18 02:07:01 +090039import static javax.ws.rs.core.Response.created;
40import static javax.ws.rs.core.Response.noContent;
41import static javax.ws.rs.core.Response.status;
Jian Li091d8d22018-02-20 10:42:06 +090042import static org.onosproject.openstacknetworking.util.OpenstackUtil.jsonToModelEntity;
sanghoc853a722016-07-04 21:10:42 +090043
sanghoshinf25d2e02015-11-11 23:07:17 +090044/**
45 * Handles Rest API call from Neutron ML2 plugin.
46 */
sanghoshin94872a12015-10-16 18:04:34 +090047@Path("ports")
48public class OpenstackPortWebResource extends AbstractWebResource {
Hyunsun Moon44aac662017-02-18 02:07:01 +090049 protected final Logger log = LoggerFactory.getLogger(getClass());
sanghoc853a722016-07-04 21:10:42 +090050
Hyunsun Moon44aac662017-02-18 02:07:01 +090051 private static final String MESSAGE = "Received ports %s request";
52 private static final String PORTS = "ports";
sanghoshin94872a12015-10-16 18:04:34 +090053
Hyunsun Moon44aac662017-02-18 02:07:01 +090054 private final OpenstackNetworkAdminService adminService =
55 DefaultServiceDirectory.getService(OpenstackNetworkAdminService.class);
56
57 @Context
58 private UriInfo uriInfo;
59
60 /**
61 * Creates a port from the JSON input stream.
62 *
63 * @param input port JSON input stream
64 * @return 201 CREATED if the JSON is correct, 400 BAD_REQUEST if the JSON
65 * is invalid or duplicated port already exists
Jian Li2077f662018-02-12 14:01:35 +090066 * @onos.rsModel NeutronPort
Hyunsun Moon44aac662017-02-18 02:07:01 +090067 */
sanghoshin94872a12015-10-16 18:04:34 +090068 @POST
69 @Consumes(MediaType.APPLICATION_JSON)
70 @Produces(MediaType.APPLICATION_JSON)
71 public Response createPorts(InputStream input) {
Hyunsun Moon44aac662017-02-18 02:07:01 +090072 log.trace(String.format(MESSAGE, "CREATE"));
73
Jian Li091d8d22018-02-20 10:42:06 +090074 final NeutronPort port = (NeutronPort)
75 jsonToModelEntity(input, NeutronPort.class);
76
Hyunsun Moon44aac662017-02-18 02:07:01 +090077 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
Jian Li091d8d22018-02-20 10:42:06 +0900101 final NeutronPort port = (NeutronPort)
102 jsonToModelEntity(input, NeutronPort.class);
103
Hyunsun Moon44aac662017-02-18 02:07:01 +0900104 adminService.updatePort(port);
105
106 return status(Response.Status.OK).build();
107 }
108
109 /**
110 * Removes the port with the given id.
111 *
112 * @param id port identifier
113 * @return 204 NO_CONTENT, 400 BAD_REQUEST if the port does not exist
114 */
115 @DELETE
116 @Path("{id}")
117 @Consumes(MediaType.APPLICATION_JSON)
118 @Produces(MediaType.APPLICATION_JSON)
119 public Response deletePorts(@PathParam("id") String id) {
120 log.trace(String.format(MESSAGE, "DELETE " + id));
121
122 adminService.removePort(id);
123 return noContent().build();
124 }
sanghoshin94872a12015-10-16 18:04:34 +0900125}