2 * ========================LICENSE_START=================================
5 * Copyright (C) 2019 AT&T Intellectual Property and Nokia
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ========================LICENSE_END===================================
20 package org.oransc.ric.portal.dashboard.controller;
22 import java.lang.invoke.MethodHandles;
24 import org.oransc.ric.portal.dashboard.DashboardApplication;
25 import org.oransc.ric.portal.dashboard.DashboardConstants;
26 import org.oransc.ric.portal.dashboard.model.DashboardUser;
27 import org.oransc.ric.portal.dashboard.model.SuccessTransport;
28 import org.slf4j.Logger;
29 import org.slf4j.LoggerFactory;
30 import org.springframework.http.MediaType;
31 import org.springframework.security.access.annotation.Secured;
32 import org.springframework.web.bind.annotation.GetMapping;
33 import org.springframework.web.bind.annotation.RequestMapping;
34 import org.springframework.web.bind.annotation.RestController;
36 import io.swagger.annotations.ApiOperation;
39 * Answers REST requests for admin services like version, health etc.
42 @RequestMapping(value = AdminController.CONTROLLER_PATH, produces = MediaType.APPLICATION_JSON_VALUE)
43 public class AdminController {
45 private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
47 // Publish paths in constants so tests are easy to write
48 public static final String CONTROLLER_PATH = DashboardConstants.ENDPOINT_PREFIX + "/admin";
49 public static final String USER_METHOD = "user";
50 public static final String HEALTH_METHOD = "health";
51 public static final String VERSION_METHOD = DashboardConstants.VERSION_METHOD;
53 private final DashboardUser[] users;
55 private static final String ACTIVE = "Active";
56 private static final String INACTIVE = "Inactive";
58 public AdminController() {
60 users = new DashboardUser[] { //
61 new DashboardUser(1, "John", "Doe", ACTIVE), //
62 new DashboardUser(2, "Alice", "Nolan", ACTIVE), //
63 new DashboardUser(3, "Pierce", "King", INACTIVE), //
64 new DashboardUser(4, "Paul", "Smith", INACTIVE), //
65 new DashboardUser(5, "Jack", "Reacher", ACTIVE) };
68 @ApiOperation(value = "Gets the Dashboard MANIFEST.MF property Implementation-Version.", response = SuccessTransport.class)
69 @GetMapping(VERSION_METHOD)
71 public SuccessTransport getVersion() {
72 logger.debug("getVersion");
73 return new SuccessTransport(200,
74 DashboardApplication.getImplementationVersion(MethodHandles.lookup().lookupClass()));
77 @ApiOperation(value = "Checks the health of the application.", response = SuccessTransport.class)
78 @GetMapping(HEALTH_METHOD)
80 public SuccessTransport getHealth() {
81 logger.debug("getHealth");
82 return new SuccessTransport(200, "Dashboard is healthy!");
85 @ApiOperation(value = "Gets the list of application users.", response = DashboardUser.class, responseContainer = "List")
86 @GetMapping(USER_METHOD)
87 @Secured({ DashboardConstants.ROLE_ADMIN })
88 public DashboardUser[] getUsers() {
89 logger.debug("getUsers");