blob: 6f0b4cfb603cb0a88f1c86de93e4b646234bee97 [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.NeutronNetwork;
sanghoshin94872a12015-10-16 18:04:34 +090024import org.slf4j.Logger;
25import org.slf4j.LoggerFactory;
26
27import javax.ws.rs.Consumes;
sanghoshinf25d2e02015-11-11 23:07:17 +090028import javax.ws.rs.DELETE;
sanghoshin94872a12015-10-16 18:04:34 +090029import javax.ws.rs.POST;
sanghoshinf25d2e02015-11-11 23:07:17 +090030import javax.ws.rs.PUT;
sanghoshin94872a12015-10-16 18:04:34 +090031import javax.ws.rs.Path;
Hyunsun Moon44aac662017-02-18 02:07:01 +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;
45
sanghoshinf25d2e02015-11-11 23:07:17 +090046/**
47 * Handles REST API call of Neutron ML2 plugin.
48 */
sanghoshin94872a12015-10-16 18:04:34 +090049@Path("networks")
50public class OpenstackNetworkWebResource extends AbstractWebResource {
Hyunsun Moon44aac662017-02-18 02:07:01 +090051 protected final Logger log = LoggerFactory.getLogger(getClass());
sanghoshin94872a12015-10-16 18:04:34 +090052
Hyunsun Moon44aac662017-02-18 02:07:01 +090053 private static final String MESSAGE = "Received networks %s request";
54 private static final String NETWORKS = "networks";
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 network from the JSON input stream.
64 *
65 * @param input network JSON input stream
66 * @return 201 CREATED if the JSON is correct, 400 BAD_REQUEST if the JSON
67 * is invalid or duplicated network already exists
Jian Li2077f662018-02-12 14:01:35 +090068 * @onos.rsModel NeutronNetwork
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 createNetwork(InputStream input) {
Hyunsun Moon44aac662017-02-18 02:07:01 +090074 log.trace(String.format(MESSAGE, "CREATE"));
75
76 final NeutronNetwork net = readNetwork(input);
77 adminService.createNetwork(net);
78
79 UriBuilder locationBuilder = uriInfo.getBaseUriBuilder()
80 .path(NETWORKS)
81 .path(net.getId());
82
83 return created(locationBuilder.build()).build();
sanghoshinf25d2e02015-11-11 23:07:17 +090084 }
sanghoshin94872a12015-10-16 18:04:34 +090085
Hyunsun Moon44aac662017-02-18 02:07:01 +090086 /**
87 * Updates the network with the specified identifier.
88 *
89 * @param id network identifier
90 * @param input network JSON input stream
91 * @return 200 OK with the updated network, 400 BAD_REQUEST if the requested
92 * network does not exist
Jian Li2077f662018-02-12 14:01:35 +090093 * @onos.rsModel NeutronNetwork
Hyunsun Moon44aac662017-02-18 02:07:01 +090094 */
sanghoshinf25d2e02015-11-11 23:07:17 +090095 @PUT
96 @Path("{id}")
97 @Consumes(MediaType.APPLICATION_JSON)
98 @Produces(MediaType.APPLICATION_JSON)
Hyunsun Moon44aac662017-02-18 02:07:01 +090099 public Response updateNetwork(@PathParam("id") String id, InputStream input) {
100 log.trace(String.format(MESSAGE, "UPDATE " + id));
101
102 final NeutronNetwork net = readNetwork(input);
103 adminService.updateNetwork(net);
104
105 return status(Response.Status.OK).build();
sanghoshinf25d2e02015-11-11 23:07:17 +0900106 }
sanghoshin94872a12015-10-16 18:04:34 +0900107
Hyunsun Moon44aac662017-02-18 02:07:01 +0900108 /**
109 * Removes the service network.
110 *
111 * @param id network identifier
112 * @return 204 NO_CONTENT, 400 BAD_REQUEST if the network does not exist
113 */
sanghoshinf25d2e02015-11-11 23:07:17 +0900114 @DELETE
115 @Path("{id}")
116 @Consumes(MediaType.APPLICATION_JSON)
Hyunsun Moon44aac662017-02-18 02:07:01 +0900117 @Produces(MediaType.APPLICATION_JSON)
118 public Response deleteNetwork(@PathParam("id") String id) {
119 log.trace(String.format(MESSAGE, "DELETE " + id));
120
121 adminService.removeNetwork(id);
122 return noContent().build();
123 }
124
125 private NeutronNetwork readNetwork(InputStream input) {
126 try {
127 JsonNode jsonTree = mapper().enable(INDENT_OUTPUT).readTree(input);
128 log.trace(mapper().writeValueAsString(jsonTree));
129 return ObjectMapperSingleton.getContext(NeutronNetwork.class)
130 .readerFor(NeutronNetwork.class)
131 .readValue(jsonTree);
132 } catch (Exception e) {
133 throw new IllegalArgumentException();
134 }
sanghoshin94872a12015-10-16 18:04:34 +0900135 }
136}