blob: dc12860950812a8fd0fe1946df6896e422cce173 [file] [log] [blame]
sangho6a9ff0d2017-03-27 11:23:37 +09001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2017-present Open Networking Foundation
sangho6a9ff0d2017-03-27 11:23:37 +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 */
16package org.onosproject.openstacknetworking.web;
17
sangho6a9ff0d2017-03-27 11:23:37 +090018import org.onosproject.openstacknetworking.api.OpenstackSecurityGroupAdminService;
19import org.onosproject.rest.AbstractWebResource;
sangho6a9ff0d2017-03-27 11:23:37 +090020import org.openstack4j.openstack.networking.domain.NeutronSecurityGroupRule;
21import org.slf4j.Logger;
22import org.slf4j.LoggerFactory;
23
24import javax.ws.rs.Consumes;
25import javax.ws.rs.DELETE;
26import javax.ws.rs.POST;
27import javax.ws.rs.Path;
28import javax.ws.rs.PathParam;
29import javax.ws.rs.Produces;
30import javax.ws.rs.core.Context;
31import javax.ws.rs.core.MediaType;
32import javax.ws.rs.core.Response;
33import javax.ws.rs.core.UriBuilder;
34import javax.ws.rs.core.UriInfo;
35import java.io.InputStream;
36
sangho6a9ff0d2017-03-27 11:23:37 +090037import static javax.ws.rs.core.Response.created;
38import static javax.ws.rs.core.Response.noContent;
Jian Li091d8d22018-02-20 10:42:06 +090039import static org.onosproject.openstacknetworking.util.OpenstackUtil.jsonToModelEntity;
sangho6a9ff0d2017-03-27 11:23:37 +090040
41/**
42 * Handles Security Group Rule Rest API call from Neutron ML2 plugin.
43 */
44@Path("security-group-rules")
45public class OpenstackSecurityGroupRuleWebResource extends AbstractWebResource {
46 protected final Logger log = LoggerFactory.getLogger(getClass());
47
48 private static final String MESSAGE = "Received security group rules %s request";
49 private static final String SECURITY_GROUP_RULES = "security-group-rules";
50
51 private final OpenstackSecurityGroupAdminService adminService =
Jian Li40e63612018-02-21 13:26:20 +090052 get(OpenstackSecurityGroupAdminService.class);
sangho6a9ff0d2017-03-27 11:23:37 +090053
54 @Context
55 private UriInfo uriInfo;
56
57 /**
58 * Creates a security group from the JSON input stream.
59 *
60 * @param input security group JSON input stream
61 * @return 201 CREATED if the JSON is correct, 400 BAD_REQUEST if the JSON
Jian Li8d8a0c52018-02-21 14:29:32 +090062 * is invalid or duplicated security group rule ID already exists
Jian Lid3472bf2018-02-12 15:22:04 +090063 * @onos.rsModel NeutronSecurityGroupRule
sangho6a9ff0d2017-03-27 11:23:37 +090064 */
65 @POST
66 @Consumes(MediaType.APPLICATION_JSON)
67 @Produces(MediaType.APPLICATION_JSON)
68 public Response createSecurityGroupRules(InputStream input) {
69 log.trace(String.format(MESSAGE, "CREATE"));
70
Jian Li091d8d22018-02-20 10:42:06 +090071 final NeutronSecurityGroupRule sgRule = (NeutronSecurityGroupRule)
72 jsonToModelEntity(input, NeutronSecurityGroupRule.class);
73
sangho6a9ff0d2017-03-27 11:23:37 +090074 adminService.createSecurityGroupRule(sgRule);
75 UriBuilder locationBuilder = uriInfo.getBaseUriBuilder()
76 .path(SECURITY_GROUP_RULES)
77 .path(sgRule.getId());
78
79 return created(locationBuilder.build()).build();
80 }
81
82 /**
83 * Removes the security group rule.
84 *
85 * @param id security group rule ID
86 * @return 204 NO_CONTENT
87 */
88 @DELETE
89 @Path("{id}")
90 @Consumes(MediaType.APPLICATION_JSON)
91 @Produces(MediaType.APPLICATION_JSON)
Jian Li40e63612018-02-21 13:26:20 +090092 public Response deleteSecurityGroupRule(@PathParam("id") String id) {
sangho6a9ff0d2017-03-27 11:23:37 +090093 log.trace(String.format(MESSAGE, "REMOVE " + id));
94
95 adminService.removeSecurityGroupRule(id);
96 return noContent().build();
97 }
sangho6a9ff0d2017-03-27 11:23:37 +090098}