Require RIC instance key in controller methods
[portal/ric-dashboard.git] / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / DashboardApplication.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property
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
21 package org.oransc.ric.portal.dashboard;
22
23 import java.lang.invoke.MethodHandles;
24 import java.util.List;
25
26 import org.oransc.ric.portal.dashboard.model.RicInstance;
27 import org.oransc.ric.portal.dashboard.model.RicInstanceList;
28 import org.slf4j.Logger;
29 import org.slf4j.LoggerFactory;
30 import org.springframework.beans.factory.annotation.Autowired;
31 import org.springframework.boot.CommandLineRunner;
32 import org.springframework.boot.SpringApplication;
33 import org.springframework.boot.autoconfigure.SpringBootApplication;
34 import org.springframework.context.annotation.ComponentScan;
35 import org.springframework.util.Assert;
36
37 @SpringBootApplication
38 // Limit scan to dashboard classes; exclude generated API classes
39 @ComponentScan("org.oransc.ric.portal.dashboard")
40 public class DashboardApplication implements CommandLineRunner {
41
42         private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
43
44         @Autowired
45         private RicInstanceList instanceConfig;
46
47         public static void main(String[] args) {
48                 SpringApplication.run(DashboardApplication.class, args);
49         }
50
51         @Override
52         public void run(String... args) throws Exception {
53                 // Ensure output appears on the console by using level WARN
54                 logger.warn("run: version '{}'", getImplementationVersion(MethodHandles.lookup().lookupClass()));
55                 // Validate configuration
56                 List<RicInstance> instances = instanceConfig.getInstances();
57                 Assert.notEmpty(instances, "Instance list empty");
58                 for (RicInstance it : instances) {
59                         logger.warn("run: RIC instance {}", it);
60                         Assert.hasText(it.getKey(), "Instance key missing");
61                         Assert.hasText(it.getName(), "Name missing for instance " + it.getKey());
62                         Assert.hasText(it.getAppUrlPrefix(), "App URL prefix missing for instance " + it.getKey());
63                         Assert.hasText(it.getCaasUrlPrefix(), "Caas URL prefix missing for instance " + it.getKey());
64                         Assert.hasText(it.getPltUrlPrefix(), "Plt URL prefix missing for instance " + it.getKey());
65                 }
66         }
67
68         /**
69          * Gets version details for the specified class.
70          * 
71          * @param clazz
72          *                  Class to get the version
73          * 
74          * @return the value of the MANIFEST.MF property Implementation-Version as
75          *         written by maven when packaged in a jar; 'unknown' otherwise.
76          */
77         public static String getImplementationVersion(Class<?> clazz) {
78                 String classPath = clazz.getResource(clazz.getSimpleName() + ".class").toString();
79                 return classPath.startsWith("jar") ? clazz.getPackage().getImplementationVersion() : "unknown-not-jar";
80         }
81
82 }