blob: 20c080a20f9789446f37c2b101791cdeac9062f9 [file] [log] [blame]
Jian Li0c451802016-02-24 22:39:25 +09001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Jian Li0c451802016-02-24 22:39:25 +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.rest.resources;
17
18import com.fasterxml.jackson.databind.JsonNode;
19import com.fasterxml.jackson.databind.node.ArrayNode;
20import com.fasterxml.jackson.databind.node.ObjectNode;
21import com.google.common.collect.Sets;
22import org.onosproject.net.DeviceId;
23import org.onosproject.net.region.Region;
24import org.onosproject.net.region.RegionAdminService;
25import org.onosproject.net.region.RegionId;
26import org.onosproject.net.region.RegionService;
27import org.onosproject.rest.AbstractWebResource;
28
29import javax.ws.rs.Consumes;
30import javax.ws.rs.DELETE;
31import javax.ws.rs.GET;
32import javax.ws.rs.POST;
33import javax.ws.rs.PUT;
34import javax.ws.rs.Path;
35import javax.ws.rs.PathParam;
36import javax.ws.rs.Produces;
37import javax.ws.rs.core.MediaType;
38import javax.ws.rs.core.Response;
39import java.io.IOException;
40import java.io.InputStream;
41import java.net.URI;
42import java.net.URISyntaxException;
43import java.util.Set;
44
45import static org.onlab.util.Tools.nullIsNotFound;
46
47/**
48 * Manages region and device membership.
49 */
50@Path("regions")
51public class RegionsWebResource extends AbstractWebResource {
52 private final RegionService regionService = get(RegionService.class);
53 private final RegionAdminService regionAdminService = get(RegionAdminService.class);
54
55 private static final String REGION_NOT_FOUND = "Region is not found for ";
56 private static final String REGION_INVALID = "Invalid regionId in region update request";
57 private static final String DEVICE_IDS_INVALID = "Invalid device identifiers";
58
59 /**
60 * Returns set of all regions.
61 *
62 * @return 200 OK
63 * @onos.rsModel Regions
64 */
65 @GET
66 @Produces(MediaType.APPLICATION_JSON)
67 public Response getRegions() {
68 final Iterable<Region> regions = regionService.getRegions();
69 return ok(encodeArray(Region.class, "regions", regions)).build();
70 }
71
72 /**
73 * Returns the region with the specified identifier.
74 *
75 * @param regionId region identifier
76 * @return 200 OK, 404 not found
77 * @onos.rsModel Region
78 */
79 @GET
80 @Produces(MediaType.APPLICATION_JSON)
81 @Path("{regionId}")
82 public Response getRegionById(@PathParam("regionId") String regionId) {
83 final RegionId rid = RegionId.regionId(regionId);
84 final Region region = nullIsNotFound(regionService.getRegion(rid),
85 REGION_NOT_FOUND + rid.toString());
86 return ok(codec(Region.class).encode(region, this)).build();
87 }
88
89 /**
90 * Returns the set of devices that belong to the specified region.
91 *
92 * @param regionId region identifier
93 * @return 200 OK
94 * @onos.rsModel RegionDeviceIds
95 */
96 @GET
97 @Produces(MediaType.APPLICATION_JSON)
98 @Path("{regionId}/devices")
99 public Response getRegionDevices(@PathParam("regionId") String regionId) {
100 final RegionId rid = RegionId.regionId(regionId);
101 final Iterable<DeviceId> deviceIds = regionService.getRegionDevices(rid);
102 final ObjectNode root = mapper().createObjectNode();
103 final ArrayNode deviceIdsNode = root.putArray("deviceIds");
104 deviceIds.forEach(did -> deviceIdsNode.add(did.toString()));
105 return ok(root).build();
106 }
107
108 /**
109 * Creates a new region using the supplied JSON input stream.
110 *
111 * @param stream region JSON stream
112 * @return status of the request - CREATED if the JSON is correct,
113 * BAD_REQUEST if the JSON is invalid
114 * @onos.rsModel RegionPost
115 */
116 @POST
117 @Consumes(MediaType.APPLICATION_JSON)
118 @Produces(MediaType.APPLICATION_JSON)
119 public Response createRegion(InputStream stream) {
120 URI location;
121 try {
122 ObjectNode jsonTree = (ObjectNode) mapper().readTree(stream);
123 final Region region = codec(Region.class).decode(jsonTree, this);
124 final Region resultRegion = regionAdminService.createRegion(region.id(),
125 region.name(), region.type(), region.masters());
126 location = new URI(resultRegion.id().id());
127 } catch (IOException | URISyntaxException e) {
128 throw new IllegalArgumentException(e);
129 }
130
131 return Response.created(location).build();
132 }
133
134 /**
135 * Updates the specified region using the supplied JSON input stream.
136 *
137 * @param regionId region identifier
138 * @param stream region JSON stream
139 * @return status of the request - UPDATED if the JSON is correct,
140 * BAD_REQUEST if the JSON is invalid
141 * @onos.rsModel RegionPost
142 */
143 @PUT
144 @Path("{regionId}")
145 @Consumes(MediaType.APPLICATION_JSON)
146 @Produces(MediaType.APPLICATION_JSON)
147 public Response updateRegion(@PathParam("regionId") String regionId,
148 InputStream stream) {
149 try {
150 ObjectNode jsonTree = (ObjectNode) mapper().readTree(stream);
151 JsonNode specifiedRegionId = jsonTree.get("id");
152
153 if (specifiedRegionId != null &&
154 !specifiedRegionId.asText().equals(regionId)) {
155 throw new IllegalArgumentException(REGION_INVALID);
156 }
157
158 final Region region = codec(Region.class).decode(jsonTree, this);
159 regionAdminService.updateRegion(region.id(),
160 region.name(), region.type(), region.masters());
161 } catch (IOException e) {
162 throw new IllegalArgumentException(e);
163 }
164
165 return Response.ok().build();
166 }
167
168 /**
169 * Removes the specified region using the given region identifier.
170 *
171 * @param regionId region identifier
172 * @return 200 OK, 404 not found
173 */
174 @DELETE
175 @Path("{regionId}")
Jian Li0c451802016-02-24 22:39:25 +0900176 public Response removeRegion(@PathParam("regionId") String regionId) {
177 final RegionId rid = RegionId.regionId(regionId);
178 regionAdminService.removeRegion(rid);
Jian Lic2a542b2016-05-10 11:48:19 -0700179 return Response.noContent().build();
Jian Li0c451802016-02-24 22:39:25 +0900180 }
181
182 /**
183 * Adds the specified collection of devices to the region.
184 *
185 * @param regionId region identifier
186 * @param stream deviceIds JSON stream
187 * @return status of the request - CREATED if the JSON is correct,
188 * BAD_REQUEST if the JSON is invalid
189 * @onos.rsModel RegionDeviceIds
190 */
191 @POST
192 @Path("{regionId}/devices")
193 @Consumes(MediaType.APPLICATION_JSON)
194 @Produces(MediaType.APPLICATION_JSON)
195 public Response addDevices(@PathParam("regionId") String regionId,
196 InputStream stream) {
197 final RegionId rid = RegionId.regionId(regionId);
198
199 URI location;
200 try {
201 regionAdminService.addDevices(rid, extractDeviceIds(stream));
202 location = new URI(rid.id());
203 } catch (IOException | URISyntaxException e) {
204 throw new IllegalArgumentException(e);
205 }
206
207 return Response.created(location).build();
208 }
209
210 /**
211 * Removes the specified collection of devices from the region.
212 *
213 * @param regionId region identifier
214 * @param stream deviceIds JSON stream
Jian Lic2a542b2016-05-10 11:48:19 -0700215 * @return 204 NO CONTENT
Jian Li0c451802016-02-24 22:39:25 +0900216 * @onos.rsModel RegionDeviceIds
217 */
218 @DELETE
219 @Path("{regionId}/devices")
220 @Consumes(MediaType.APPLICATION_JSON)
Jian Li0c451802016-02-24 22:39:25 +0900221 public Response removeDevices(@PathParam("regionId") String regionId,
222 InputStream stream) {
223 final RegionId rid = RegionId.regionId(regionId);
224
225 try {
226 regionAdminService.removeDevices(rid, extractDeviceIds(stream));
227 } catch (IOException e) {
228 throw new IllegalArgumentException(e);
229 }
230
Jian Lic2a542b2016-05-10 11:48:19 -0700231 return Response.noContent().build();
Jian Li0c451802016-02-24 22:39:25 +0900232 }
233
234 /**
235 * Extracts device ids from a given JSON string.
236 *
237 * @param stream deviceIds JSON stream
238 * @return a set of device identifiers
239 * @throws IOException
240 */
241 private Set<DeviceId> extractDeviceIds(InputStream stream) throws IOException {
242 ObjectNode jsonTree = (ObjectNode) mapper().readTree(stream);
243 JsonNode deviceIdsJson = jsonTree.get("deviceIds");
244
245 if (deviceIdsJson == null || deviceIdsJson.size() == 0) {
246 throw new IllegalArgumentException(DEVICE_IDS_INVALID);
247 }
248
249 Set<DeviceId> deviceIds = Sets.newHashSet();
250 deviceIdsJson.forEach(did -> deviceIds.add(DeviceId.deviceId(did.asText())));
251
252 return deviceIds;
253 }
254}