blob: 3e78825f52dba096261657053f9a1f98fd009730 [file] [log] [blame]
Brian Stankeb9170d92016-02-19 14:18:42 -05001/*
2 * Copyright 2016 Open Networking Laboratory
3 *
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 */
16
17package org.onosproject.rest.resources;
18
19import com.fasterxml.jackson.databind.node.ObjectNode;
20import org.onosproject.net.key.DeviceKey;
21import org.onosproject.net.key.DeviceKeyAdminService;
22import org.onosproject.net.key.DeviceKeyId;
23import org.onosproject.net.key.DeviceKeyService;
24import org.onosproject.rest.AbstractWebResource;
25
26import javax.ws.rs.Consumes;
27import javax.ws.rs.DELETE;
28import javax.ws.rs.GET;
29import javax.ws.rs.POST;
30import javax.ws.rs.Path;
31import javax.ws.rs.PathParam;
32import javax.ws.rs.Produces;
33import javax.ws.rs.core.Context;
34import javax.ws.rs.core.MediaType;
35import javax.ws.rs.core.Response;
36import javax.ws.rs.core.UriBuilder;
37import javax.ws.rs.core.UriInfo;
38import java.io.IOException;
39import java.io.InputStream;
40
41import static org.onlab.util.Tools.nullIsNotFound;
42
43/**
44 * Query and Manage Device Keys.
45 */
46@Path("keys")
47public class DeviceKeyWebResource extends AbstractWebResource {
48
49 @Context
50 UriInfo uriInfo;
51
52 private static final String DEVICE_KEY_NOT_FOUND = "Device key was not found";
53
54 /**
55 * Gets all device keys.
56 * Returns array of all device keys.
57 *
58 * @return 200 OK
Brian Stankeb9170d92016-02-19 14:18:42 -050059 */
HIGUCHI Yuta547c2052016-02-23 00:08:13 -080060// FIXME DeviceKeysGet.json not found
61// * @onos.rsModel DeviceKeysGet
Brian Stankeb9170d92016-02-19 14:18:42 -050062 @GET
63 public Response getDeviceKeys() {
64 Iterable<DeviceKey> deviceKeys = get(DeviceKeyService.class).getDeviceKeys();
65 return ok(encodeArray(DeviceKey.class, "keys", deviceKeys)).build();
66 }
67
68 /**
69 * Get a single device key by device key unique identifier.
70 * Returns the specified device key.
71 *
72 * @param id device identifier
73 * @return 200 OK
Brian Stankeb9170d92016-02-19 14:18:42 -050074 */
HIGUCHI Yuta547c2052016-02-23 00:08:13 -080075// FIXME DeviceKeyGet.json not found
76// * @onos.rsModel DeviceKeyGet
Brian Stankeb9170d92016-02-19 14:18:42 -050077 @GET
78 @Path("{id}")
79 public Response getDeviceKey(@PathParam("id") String id) {
80 DeviceKey deviceKey = nullIsNotFound(get(DeviceKeyService.class).getDeviceKey(DeviceKeyId.deviceKeyId(id)),
81 DEVICE_KEY_NOT_FOUND);
82 return ok(codec(DeviceKey.class).encode(deviceKey, this)).build();
83 }
84
85 /**
86 * Adds a new device key from the JSON request.
87 *
88 * @param stream input JSON
89 * @return status of the request - CREATED if the JSON is correct,
90 * BAD_REQUEST if the JSON is invalid
Brian Stankeb9170d92016-02-19 14:18:42 -050091 */
HIGUCHI Yuta547c2052016-02-23 00:08:13 -080092// FIXME wrong schema definition?
93// * @onos.rsModel IntentHost
Brian Stankeb9170d92016-02-19 14:18:42 -050094 @POST
95 @Consumes(MediaType.APPLICATION_JSON)
96 @Produces(MediaType.APPLICATION_JSON)
97 public Response addDeviceKey(InputStream stream) {
98 try {
99 DeviceKeyAdminService service = get(DeviceKeyAdminService.class);
100 ObjectNode root = (ObjectNode) mapper().readTree(stream);
101 DeviceKey deviceKey = codec(DeviceKey.class).decode(root, this);
102 service.addKey(deviceKey);
103
104 UriBuilder locationBuilder = uriInfo.getBaseUriBuilder()
105 .path("keys")
106 .path(deviceKey.deviceKeyId().id());
107
108 return Response
109 .created(locationBuilder.build())
110 .build();
111
112 } catch (IOException ioe) {
113 throw new IllegalArgumentException(ioe);
114 }
115 }
116
117 /**
118 * Removes a device key by device key identifier.
119 *
120 * @param id device identifier
121 * @return 200 OK
122 */
123 @DELETE
124 @Path("{id}")
125 public Response removeDeviceKey(@PathParam("id") String id) {
126 DeviceKey deviceKey = nullIsNotFound(get(DeviceKeyService.class).getDeviceKey(DeviceKeyId.deviceKeyId(id)),
127 DEVICE_KEY_NOT_FOUND);
128 get(DeviceKeyAdminService.class).removeKey(DeviceKeyId.deviceKeyId(id));
129 return ok(codec(DeviceKey.class).encode(deviceKey, this)).build();
130 }
131}