2f1414807e2e68ac58d2276838b5ae61fccc6703
[portal/ric-dashboard.git] / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / controller / AdminController.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property and Nokia
6  * %%
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
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
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===================================
19  */
20 package org.oransc.ric.portal.dashboard.controller;
21
22 import java.lang.invoke.MethodHandles;
23
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.web.bind.annotation.RequestMapping;
32 import org.springframework.web.bind.annotation.RequestMethod;
33 import org.springframework.web.bind.annotation.RestController;
34
35 import io.swagger.annotations.ApiOperation;
36
37 /**
38  * Answers REST requests for admin services like version, health etc.
39  */
40 @RestController
41 @RequestMapping(value = AdminController.CONTROLLER_PATH, produces = MediaType.APPLICATION_JSON_VALUE)
42 public class AdminController {
43
44         private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
45
46         // Publish paths in constants so tests are easy to write
47         public static final String CONTROLLER_PATH = DashboardConstants.ENDPOINT_PREFIX + "/admin";
48         public static final String USER_METHOD = "user";
49         public static final String HEALTH_METHOD = "health";
50
51         private final DashboardUser[] users;
52
53         public AdminController() {
54                 // Mock data
55                 users = new DashboardUser[] { //
56                                 new DashboardUser(1, "John", "Doe", "Active"), //
57                                 new DashboardUser(2, "Alice", "Nolan", "Active"), //
58                                 new DashboardUser(3, "Pierce", "King", "Inactive"), //
59                                 new DashboardUser(4, "Paul", "Smith", "Inactive"), //
60                                 new DashboardUser(5, "Jack", "Reacher", "Active") };
61         }
62
63         @ApiOperation(value = "Gets the Dashboard MANIFEST.MF property Implementation-Version.", response = SuccessTransport.class)
64         @RequestMapping(value = DashboardConstants.VERSION_METHOD, method = RequestMethod.GET)
65         public SuccessTransport getVersion() {
66                 logger.debug("getVersion");
67                 return new SuccessTransport(200,
68                                 DashboardApplication.getImplementationVersion(MethodHandles.lookup().lookupClass()));
69         }
70
71         @ApiOperation(value = "Checks the health of the application.", response = SuccessTransport.class)
72         @RequestMapping(value = HEALTH_METHOD, method = RequestMethod.GET)
73         public SuccessTransport getHealth() {
74                 logger.debug("getHealth");
75                 return new SuccessTransport(200, "Dashboard is healthy!");
76         }
77
78         @ApiOperation(value = "Gets the list of application users.", response = DashboardUser.class, responseContainer = "List")
79         @RequestMapping(value = USER_METHOD, method = RequestMethod.GET)
80         public DashboardUser[] getUsers() {
81                 logger.debug("getUsers");
82                 return users;
83         }
84
85 }