blob: 73f88b2b62487b349fcd69260c7d3b7006f01c9b [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
Jian Li7b8c3682019-05-12 13:57:15 +090018import org.apache.commons.io.IOUtils;
19import org.onosproject.openstacknetworking.api.OpenstackHaService;
sangho6a9ff0d2017-03-27 11:23:37 +090020import org.onosproject.openstacknetworking.api.OpenstackSecurityGroupAdminService;
21import org.onosproject.rest.AbstractWebResource;
sangho6a9ff0d2017-03-27 11:23:37 +090022import org.openstack4j.openstack.networking.domain.NeutronSecurityGroupRule;
23import org.slf4j.Logger;
24import org.slf4j.LoggerFactory;
25
26import javax.ws.rs.Consumes;
27import javax.ws.rs.DELETE;
28import javax.ws.rs.POST;
29import javax.ws.rs.Path;
30import javax.ws.rs.PathParam;
31import javax.ws.rs.Produces;
32import javax.ws.rs.core.Context;
33import javax.ws.rs.core.MediaType;
34import javax.ws.rs.core.Response;
35import javax.ws.rs.core.UriBuilder;
36import javax.ws.rs.core.UriInfo;
Jian Li7b8c3682019-05-12 13:57:15 +090037import java.io.IOException;
sangho6a9ff0d2017-03-27 11:23:37 +090038import java.io.InputStream;
39
sangho6a9ff0d2017-03-27 11:23:37 +090040import static javax.ws.rs.core.Response.created;
41import static javax.ws.rs.core.Response.noContent;
Daniel Parkc717c0f2019-09-15 16:38:06 +090042import static org.onosproject.openstacknetworking.api.Constants.DEFAULT_ACTIVE_IP_ADDRESS;
Jian Li7b8c3682019-05-12 13:57:15 +090043import static org.onosproject.openstacknetworking.api.Constants.REST_UTF8;
Jian Lidea0fdb2018-04-02 19:02:48 +090044import static org.onosproject.openstacknetworking.util.OpenstackNetworkingUtil.jsonToModelEntity;
Jian Li7b8c3682019-05-12 13:57:15 +090045import static org.onosproject.openstacknetworking.util.OpenstackNetworkingUtil.syncDelete;
46import static org.onosproject.openstacknetworking.util.OpenstackNetworkingUtil.syncPost;
sangho6a9ff0d2017-03-27 11:23:37 +090047
48/**
49 * Handles Security Group Rule Rest API call from Neutron ML2 plugin.
50 */
51@Path("security-group-rules")
52public class OpenstackSecurityGroupRuleWebResource extends AbstractWebResource {
53 protected final Logger log = LoggerFactory.getLogger(getClass());
54
55 private static final String MESSAGE = "Received security group rules %s request";
56 private static final String SECURITY_GROUP_RULES = "security-group-rules";
57
58 private final OpenstackSecurityGroupAdminService adminService =
Jian Li40e63612018-02-21 13:26:20 +090059 get(OpenstackSecurityGroupAdminService.class);
Jian Li7b8c3682019-05-12 13:57:15 +090060 private final OpenstackHaService haService = get(OpenstackHaService.class);
sangho6a9ff0d2017-03-27 11:23:37 +090061
62 @Context
63 private UriInfo uriInfo;
64
65 /**
66 * Creates a security group from the JSON input stream.
67 *
68 * @param input security group JSON input stream
69 * @return 201 CREATED if the JSON is correct, 400 BAD_REQUEST if the JSON
Jian Li8d8a0c52018-02-21 14:29:32 +090070 * is invalid or duplicated security group rule ID already exists
Jian Li7b8c3682019-05-12 13:57:15 +090071 * @throws IOException exception
Jian Lid3472bf2018-02-12 15:22:04 +090072 * @onos.rsModel NeutronSecurityGroupRule
sangho6a9ff0d2017-03-27 11:23:37 +090073 */
74 @POST
75 @Consumes(MediaType.APPLICATION_JSON)
76 @Produces(MediaType.APPLICATION_JSON)
Jian Li7b8c3682019-05-12 13:57:15 +090077 public Response createSecurityGroupRules(InputStream input) throws IOException {
sangho6a9ff0d2017-03-27 11:23:37 +090078 log.trace(String.format(MESSAGE, "CREATE"));
79
Jian Li7b8c3682019-05-12 13:57:15 +090080 String inputStr = IOUtils.toString(input, REST_UTF8);
81
Daniel Parkc717c0f2019-09-15 16:38:06 +090082 if (!haService.isActive()
83 && !DEFAULT_ACTIVE_IP_ADDRESS.equals(haService.getActiveIp())) {
Jian Li7b8c3682019-05-12 13:57:15 +090084 return syncPost(haService, SECURITY_GROUP_RULES, inputStr);
85 }
86
Jian Li091d8d22018-02-20 10:42:06 +090087 final NeutronSecurityGroupRule sgRule = (NeutronSecurityGroupRule)
Jian Li7b8c3682019-05-12 13:57:15 +090088 jsonToModelEntity(inputStr, NeutronSecurityGroupRule.class);
Jian Li091d8d22018-02-20 10:42:06 +090089
sangho6a9ff0d2017-03-27 11:23:37 +090090 adminService.createSecurityGroupRule(sgRule);
91 UriBuilder locationBuilder = uriInfo.getBaseUriBuilder()
92 .path(SECURITY_GROUP_RULES)
93 .path(sgRule.getId());
94
95 return created(locationBuilder.build()).build();
96 }
97
98 /**
99 * Removes the security group rule.
100 *
101 * @param id security group rule ID
102 * @return 204 NO_CONTENT
103 */
104 @DELETE
105 @Path("{id}")
106 @Consumes(MediaType.APPLICATION_JSON)
107 @Produces(MediaType.APPLICATION_JSON)
Jian Li40e63612018-02-21 13:26:20 +0900108 public Response deleteSecurityGroupRule(@PathParam("id") String id) {
sangho6a9ff0d2017-03-27 11:23:37 +0900109 log.trace(String.format(MESSAGE, "REMOVE " + id));
110
Daniel Parkc717c0f2019-09-15 16:38:06 +0900111 if (!haService.isActive()
112 && !DEFAULT_ACTIVE_IP_ADDRESS.equals(haService.getActiveIp())) {
Jian Li7b8c3682019-05-12 13:57:15 +0900113 return syncDelete(haService, SECURITY_GROUP_RULES, id);
114 }
115
sangho6a9ff0d2017-03-27 11:23:37 +0900116 adminService.removeSecurityGroupRule(id);
117 return noContent().build();
118 }
sangho6a9ff0d2017-03-27 11:23:37 +0900119}