Initial commit of RIC Dashboard webapp
[portal/ric-dashboard.git] / webapp-backend / src / main / java / org / oranosc / ric / portal / dash / controller / CatalogController.java
1 /*-
2  * ========================LICENSE_START=================================
3  * ORAN-OSC
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.oranosc.ric.portal.dash.controller;
21
22 import java.lang.invoke.MethodHandles;
23
24 import org.oranosc.ric.portal.dash.DashboardConstants;
25 import org.oranosc.ric.portal.dashboard.xmc.model.AllXapps;
26 import org.oranosc.ric.portal.dashboard.xmc.model.Xapp;
27 import org.oranosc.ric.portal.dashboard.xmc.model.Xapp.StatusEnum;
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 @RestController
36 @RequestMapping(value = DashboardConstants.ENDPOINT_PREFIX + "/catalog", produces = MediaType.APPLICATION_JSON_VALUE)
37 public class CatalogController {
38
39         private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
40
41         @RequestMapping(method = RequestMethod.GET)
42         public AllXapps getXapps() {
43                 logger.debug("getXapps: enter");
44                 return populateCatalog();
45         }
46
47         // @TODO This method to be removed when endpoint for data fetch from RIC team
48         // available
49         private AllXapps populateCatalog() {
50                 AllXapps cList = new AllXapps();
51                 cList.add(buildXapp("Pendulum Control", "v1", StatusEnum.DEPLOYED));
52                 cList.add(buildXapp("Dual Connectivity", "v2", StatusEnum.DELETED));
53                 cList.add(buildXapp("Admission Control", "v1", StatusEnum.FAILED));
54                 cList.add(buildXapp("ANR Control", "v0", StatusEnum.SUPERSEDED));
55                 return cList;
56         }
57
58         private Xapp buildXapp(String name, String version, StatusEnum status) {
59                 Xapp xapp = new Xapp();
60                 xapp.setName(name);
61                 xapp.setVersion(version);
62                 xapp.setStatus(status);
63                 return xapp;
64         }
65
66 }