blob: abfba3c2233169be03b7ab26c1ef507f18ce0c53 [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;
29import javax.ws.rs.Path;
30import javax.ws.rs.Produces;
31import javax.ws.rs.core.MediaType;
32import javax.ws.rs.core.Response;
33import java.io.IOException;
34import java.io.InputStream;
35import java.util.List;
36
Ray Milkey9d9ff032015-08-20 14:25:51 -070037/**
38 * Query, create and remove segment routing plicies.
39 */
sangho27462c62015-05-14 00:39:53 -070040@Path("policy")
41public class PolicyWebResource extends AbstractWebResource {
42
43 private static final PolicyCodec POLICY_CODEC = new PolicyCodec();
44
Ray Milkey9d9ff032015-08-20 14:25:51 -070045 /**
46 * Get all segment routing policies.
47 * Returns an array of segment routing policies.
48 *
49 * @return status of OK
50 */
sangho27462c62015-05-14 00:39:53 -070051 @GET
52 @Produces(MediaType.APPLICATION_JSON)
53 public Response getPolicy() {
54 SegmentRoutingService srService = get(SegmentRoutingService.class);
55 List<Policy> policies = srService.getPolicies();
56 ObjectNode result = new ObjectMapper().createObjectNode();
57 result.set("policy", new PolicyCodec().encode(policies, this));
58
59 return ok(result.toString()).build();
60 }
61
Ray Milkey9d9ff032015-08-20 14:25:51 -070062 /**
63 * Create a new segment routing policy.
64 *
65 * @param input JSON stream for policy to create
66 * @return status of the request - OK if the policy is created,
Ray Milkey3279e792015-09-09 15:24:54 -070067 * @throws IOException if JSON processing fails
Ray Milkey9d9ff032015-08-20 14:25:51 -070068 */
sangho27462c62015-05-14 00:39:53 -070069 @POST
70 @Consumes(MediaType.APPLICATION_JSON)
71 public Response createPolicy(InputStream input) throws IOException {
72 ObjectMapper mapper = new ObjectMapper();
73 ObjectNode policyJson = (ObjectNode) mapper.readTree(input);
74 SegmentRoutingService srService = get(SegmentRoutingService.class);
75 Policy policyInfo = POLICY_CODEC.decode(policyJson, this);
sangho27462c62015-05-14 00:39:53 -070076
sangho4a5c42a2015-05-20 22:16:38 -070077 if (policyInfo.type() == Policy.Type.TUNNEL_FLOW) {
78 srService.createPolicy(policyInfo);
sangho27462c62015-05-14 00:39:53 -070079 return Response.ok().build();
80 } else {
81 return Response.serverError().build();
82 }
83 }
84
Ray Milkey9d9ff032015-08-20 14:25:51 -070085 /**
86 * Delete a segment routing policy.
87 *
88 * @param input JSON stream for policy to delete
Jian Li6b377d12016-05-10 11:48:19 -070089 * @return 204 NO CONTENT if the policy is removed
Ray Milkey9d9ff032015-08-20 14:25:51 -070090 * @throws IOException if JSON is invalid
91 */
sangho27462c62015-05-14 00:39:53 -070092 @DELETE
93 @Consumes(MediaType.APPLICATION_JSON)
94 public Response removePolicy(InputStream input) throws IOException {
95 ObjectMapper mapper = new ObjectMapper();
96 ObjectNode policyJson = (ObjectNode) mapper.readTree(input);
97 SegmentRoutingService srService = get(SegmentRoutingService.class);
98 Policy policyInfo = POLICY_CODEC.decode(policyJson, this);
99 // TODO: Check the result
100 srService.removePolicy(policyInfo);
sangho4a5c42a2015-05-20 22:16:38 -0700101
Jian Li6b377d12016-05-10 11:48:19 -0700102 return Response.noContent().build();
sangho27462c62015-05-14 00:39:53 -0700103 }
104
105}