blob: 52f8ae71db4f19978d82a8baae143bd67f18a795 [file] [log] [blame]
Brian Stankeb9170d92016-02-19 14:18:42 -05001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Brian Stankeb9170d92016-02-19 14:18:42 -05003 *
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
Jian Licc730a62016-05-10 16:36:16 -070050 private UriInfo uriInfo;
Brian Stankeb9170d92016-02-19 14:18:42 -050051
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 *
Jian Licc730a62016-05-10 16:36:16 -070058 * @return 200 OK with a collection of device keys
Brian Stankeb8ff6412016-02-25 14:16:19 -050059 * @onos.rsModel Devicekeys
Brian Stankeb9170d92016-02-19 14:18:42 -050060 */
61 @GET
Jian Licc730a62016-05-10 16:36:16 -070062 @Produces(MediaType.APPLICATION_JSON)
Brian Stankeb9170d92016-02-19 14:18:42 -050063 public Response getDeviceKeys() {
64 Iterable<DeviceKey> deviceKeys = get(DeviceKeyService.class).getDeviceKeys();
65 return ok(encodeArray(DeviceKey.class, "keys", deviceKeys)).build();
66 }
67
68 /**
Jian Licc730a62016-05-10 16:36:16 -070069 * Gets a single device key by device key unique identifier.
Brian Stankeb9170d92016-02-19 14:18:42 -050070 * Returns the specified device key.
71 *
Brian Stankeb8ff6412016-02-25 14:16:19 -050072 * @param id device key identifier
Jian Licc730a62016-05-10 16:36:16 -070073 * @return 200 OK with a device key, 404 not found
Brian Stankeb8ff6412016-02-25 14:16:19 -050074 * @onos.rsModel Devicekey
Brian Stankeb9170d92016-02-19 14:18:42 -050075 */
76 @GET
77 @Path("{id}")
Jian Licc730a62016-05-10 16:36:16 -070078 @Produces(MediaType.APPLICATION_JSON)
Brian Stankeb9170d92016-02-19 14:18:42 -050079 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 /**
Brian Stankeb8ff6412016-02-25 14:16:19 -050086 * Adds a new device key from the JSON input stream.
Brian Stankeb9170d92016-02-19 14:18:42 -050087 *
Brian Stankeb8ff6412016-02-25 14:16:19 -050088 * @param stream device key JSON stream
Brian Stankeb9170d92016-02-19 14:18:42 -050089 * @return status of the request - CREATED if the JSON is correct,
90 * BAD_REQUEST if the JSON is invalid
Brian Stankeb8ff6412016-02-25 14:16:19 -050091 * @onos.rsModel Devicekey
Brian Stankeb9170d92016-02-19 14:18:42 -050092 */
Brian Stankeb9170d92016-02-19 14:18:42 -050093 @POST
94 @Consumes(MediaType.APPLICATION_JSON)
95 @Produces(MediaType.APPLICATION_JSON)
96 public Response addDeviceKey(InputStream stream) {
97 try {
98 DeviceKeyAdminService service = get(DeviceKeyAdminService.class);
99 ObjectNode root = (ObjectNode) mapper().readTree(stream);
100 DeviceKey deviceKey = codec(DeviceKey.class).decode(root, this);
101 service.addKey(deviceKey);
102
103 UriBuilder locationBuilder = uriInfo.getBaseUriBuilder()
104 .path("keys")
105 .path(deviceKey.deviceKeyId().id());
106
107 return Response
108 .created(locationBuilder.build())
109 .build();
110
111 } catch (IOException ioe) {
112 throw new IllegalArgumentException(ioe);
113 }
114 }
115
116 /**
117 * Removes a device key by device key identifier.
118 *
Brian Stankeb8ff6412016-02-25 14:16:19 -0500119 * @param id device key identifier
Jian Licc730a62016-05-10 16:36:16 -0700120 * @return 200 OK with a removed device key, 404 not found
Brian Stankeb9170d92016-02-19 14:18:42 -0500121 */
122 @DELETE
123 @Path("{id}")
Jian Licc730a62016-05-10 16:36:16 -0700124 @Produces(MediaType.APPLICATION_JSON)
Brian Stankeb9170d92016-02-19 14:18:42 -0500125 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}