Fix non-standard linux env var names
[aai/sparky-be.git] / sparkybe-onap-application / src / main / java / org / onap / aai / sparky / Application.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.sparky;
22
23 import javax.servlet.Filter;
24
25 import org.apache.camel.component.servlet.CamelHttpTransportServlet;
26 import org.onap.aai.sparky.config.PropertyPasswordConfiguration;
27 import org.onap.aai.sparky.security.filter.LoginFilter;
28 import org.springframework.boot.SpringApplication;
29 import org.springframework.boot.autoconfigure.SpringBootApplication;
30 import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
31 import org.springframework.boot.web.servlet.FilterRegistrationBean;
32 import org.springframework.boot.web.servlet.ServletRegistrationBean;
33 import org.springframework.context.annotation.Bean;
34
35 @SpringBootApplication
36 public class Application {
37   
38   private static final String SPARKY_SSL_ENABLED_PROPERTY = "sparky.ssl.enabled";
39   private static final String SPARKY_PORTAL_ENABLED_PROPERTY = "sparky.portal.enabled";
40   private static final String SPARKY_SSL_ENABLED_ENV = "SPARKY_SSL_ENABLED";
41   private static final String SPARKY_PORTAL_ENABLED_ENV = "SPARKY_PORTAL_ENABLED";
42   
43   private Filter loginFilter = new LoginFilter();
44    
45   public static void main(String[] args) {
46
47     setDefaultProperties();
48     SpringApplication app = new SpringApplication(Application.class);
49     app.addInitializers(new PropertyPasswordConfiguration());
50     app.run(args);
51     
52   }
53   
54   protected static void setDefaultProperties() {
55
56     /*
57      * By default we want ssl and portal integration, however it is possible to turn these off with
58      * properties for local development and interop in some situations.
59      */
60
61     if (System.getenv(SPARKY_SSL_ENABLED_ENV) == null) {
62       System.setProperty(SPARKY_SSL_ENABLED_PROPERTY, "true");
63     } else {
64       System.setProperty(SPARKY_SSL_ENABLED_PROPERTY, System.getenv(SPARKY_SSL_ENABLED_ENV));
65     }
66
67     boolean sslEnabled = Boolean.parseBoolean(System.getProperty(SPARKY_SSL_ENABLED_PROPERTY));
68
69     if (sslEnabled) {
70       System.setProperty("server.ssl.key-store-password", System.getenv("KEYSTORE_PASSWORD"));
71       System.setProperty("server.ssl.key-password", System.getenv("KEYSTORE_ALIAS_PASSWORD"));
72     }
73
74     if (System.getenv(SPARKY_PORTAL_ENABLED_ENV) == null) {
75       System.setProperty(SPARKY_PORTAL_ENABLED_PROPERTY, "true");
76     } else {
77       System.setProperty(SPARKY_PORTAL_ENABLED_PROPERTY, System.getenv(SPARKY_PORTAL_ENABLED_ENV));
78     }
79   }
80
81   /*
82    * This initialization code enabled access to aai-ui-proxy-processor
83    */
84   @Bean
85   ServletRegistrationBean servletRegistrationBean() {
86     final ServletRegistrationBean servlet =
87         new ServletRegistrationBean(new CamelHttpTransportServlet(), "/rest/*");
88     servlet.setName("CamelServlet");
89     return servlet;
90   }
91
92   /**
93    * bind LoginFilter
94    */
95   @Bean
96   @ConditionalOnProperty(value = "sparky.portal.enabled", havingValue = "true")
97   public FilterRegistrationBean loginFilterRegistrationBean() {
98     FilterRegistrationBean registration = new FilterRegistrationBean();
99     
100     registration.setFilter(loginFilter);
101     registration.addUrlPatterns("/*");
102     
103     return registration;
104   }
105
106
107 }