blob: 08663e45d2031b84ffb90bf6490466faa3db90fb [file] [log] [blame]
sangho27462c62015-05-14 00:39:53 -07001/*
Brian O'Connor0947d7e2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
sangho27462c62015-05-14 00:39:53 -07003 *
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.segmentrouting.web;
17
18import com.fasterxml.jackson.databind.ObjectMapper;
19import com.fasterxml.jackson.databind.node.ObjectNode;
20
21import org.onosproject.rest.AbstractWebResource;
22import org.onosproject.segmentrouting.Policy;
sangho27462c62015-05-14 00:39:53 -070023import org.onosproject.segmentrouting.SegmentRoutingService;
sangho27462c62015-05-14 00:39:53 -070024
25import javax.ws.rs.Consumes;
26import javax.ws.rs.DELETE;
27import javax.ws.rs.GET;
28import javax.ws.rs.POST;
sangho27462c62015-05-14 00:39:53 -070029import javax.ws.rs.Produces;
30import javax.ws.rs.core.MediaType;
31import javax.ws.rs.core.Response;
32import java.io.IOException;
33import java.io.InputStream;
34import java.util.List;
35
Ray Milkeyc59ff082018-04-02 15:33:07 -070036import static org.onlab.util.Tools.readTreeFromStream;
37
Ray Milkey9d9ff032015-08-20 14:25:51 -070038/**
39 * Query, create and remove segment routing plicies.
40 */
Andreas Pantelopouloscdbb22c2018-02-23 14:18:00 -080041// @Path("policy")
sangho27462c62015-05-14 00:39:53 -070042public class PolicyWebResource extends AbstractWebResource {
43
44 private static final PolicyCodec POLICY_CODEC = new PolicyCodec();
45
Ray Milkey9d9ff032015-08-20 14:25:51 -070046 /**
47 * Get all segment routing policies.
48 * Returns an array of segment routing policies.
49 *
50 * @return status of OK
51 */
sangho27462c62015-05-14 00:39:53 -070052 @GET
53 @Produces(MediaType.APPLICATION_JSON)
54 public Response getPolicy() {
55 SegmentRoutingService srService = get(SegmentRoutingService.class);
56 List<Policy> policies = srService.getPolicies();
57 ObjectNode result = new ObjectMapper().createObjectNode();
58 result.set("policy", new PolicyCodec().encode(policies, this));
59
60 return ok(result.toString()).build();
61 }
62
Ray Milkey9d9ff032015-08-20 14:25:51 -070063 /**
64 * Create a new segment routing policy.
65 *
66 * @param input JSON stream for policy to create
67 * @return status of the request - OK if the policy is created,
Ray Milkey3279e792015-09-09 15:24:54 -070068 * @throws IOException if JSON processing fails
Ray Milkey9d9ff032015-08-20 14:25:51 -070069 */
sangho27462c62015-05-14 00:39:53 -070070 @POST
71 @Consumes(MediaType.APPLICATION_JSON)
72 public Response createPolicy(InputStream input) throws IOException {
73 ObjectMapper mapper = new ObjectMapper();
Ray Milkeyc59ff082018-04-02 15:33:07 -070074 ObjectNode policyJson = readTreeFromStream(mapper, input);
sangho27462c62015-05-14 00:39:53 -070075 SegmentRoutingService srService = get(SegmentRoutingService.class);
76 Policy policyInfo = POLICY_CODEC.decode(policyJson, this);
sangho27462c62015-05-14 00:39:53 -070077
sangho4a5c42a2015-05-20 22:16:38 -070078 if (policyInfo.type() == Policy.Type.TUNNEL_FLOW) {
79 srService.createPolicy(policyInfo);
sangho27462c62015-05-14 00:39:53 -070080 return Response.ok().build();
81 } else {
82 return Response.serverError().build();
83 }
84 }
85
Ray Milkey9d9ff032015-08-20 14:25:51 -070086 /**
87 * Delete a segment routing policy.
88 *
89 * @param input JSON stream for policy to delete
Jian Li6b377d12016-05-10 11:48:19 -070090 * @return 204 NO CONTENT if the policy is removed
Ray Milkey9d9ff032015-08-20 14:25:51 -070091 * @throws IOException if JSON is invalid
92 */
sangho27462c62015-05-14 00:39:53 -070093 @DELETE
94 @Consumes(MediaType.APPLICATION_JSON)
95 public Response removePolicy(InputStream input) throws IOException {
96 ObjectMapper mapper = new ObjectMapper();
Ray Milkeyc59ff082018-04-02 15:33:07 -070097 ObjectNode policyJson = readTreeFromStream(mapper, input);
sangho27462c62015-05-14 00:39:53 -070098 SegmentRoutingService srService = get(SegmentRoutingService.class);
99 Policy policyInfo = POLICY_CODEC.decode(policyJson, this);
100 // TODO: Check the result
101 srService.removePolicy(policyInfo);
sangho4a5c42a2015-05-20 22:16:38 -0700102
Jian Li6b377d12016-05-10 11:48:19 -0700103 return Response.noContent().build();
sangho27462c62015-05-14 00:39:53 -0700104 }
105
106}