f4df67f4a2cf677a8901f2cb9bbf9a2aaa67a588
[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 = "sparky.ssl.enabled";
39   private static final String SPARKY_PORTAL_ENABLED = "sparky.portal.enabled";
40   
41   private Filter loginFilter = new LoginFilter();
42    
43   public static void main(String[] args) {
44
45     setDefaultProperties();
46     SpringApplication app = new SpringApplication(Application.class);
47     app.addInitializers(new PropertyPasswordConfiguration());
48     app.run(args);
49     
50   }
51   
52   protected static void setDefaultProperties() {
53
54     /*
55      * By default we want ssl and portal integration, however it is possible to turn these off with
56      * properties for local development and interop in some situations.
57      */
58
59     if (System.getenv(SPARKY_SSL_ENABLED) == null) {
60       System.setProperty(SPARKY_SSL_ENABLED, "true");
61     } else {
62       System.setProperty(SPARKY_SSL_ENABLED, System.getenv(SPARKY_SSL_ENABLED));
63     }
64
65     boolean sslEnabled = Boolean.parseBoolean(System.getProperty(SPARKY_SSL_ENABLED));
66
67     if (sslEnabled) {
68       System.setProperty("server.ssl.key-store-password", System.getenv("KEYSTORE_PASSWORD"));
69       System.setProperty("server.ssl.key-password", System.getenv("KEYSTORE_ALIAS_PASSWORD"));
70     }
71
72     if (System.getenv(SPARKY_PORTAL_ENABLED) == null) {
73       System.setProperty(SPARKY_PORTAL_ENABLED, "true");
74     } else {
75       System.setProperty(SPARKY_PORTAL_ENABLED, System.getenv(SPARKY_PORTAL_ENABLED));
76     }
77
78   }
79
80   /*
81    * This initialization code enabled access to aai-ui-proxy-processor
82    */
83   @Bean
84   ServletRegistrationBean servletRegistrationBean() {
85     final ServletRegistrationBean servlet =
86         new ServletRegistrationBean(new CamelHttpTransportServlet(), "/rest/*");
87     servlet.setName("CamelServlet");
88     return servlet;
89   }
90
91   /**
92    * bind LoginFilter
93    */
94   @Bean
95   @ConditionalOnProperty(value = "sparky.portal.enabled", havingValue = "true")
96   public FilterRegistrationBean loginFilterRegistrationBean() {
97     FilterRegistrationBean registration = new FilterRegistrationBean();
98     
99     registration.setFilter(loginFilter);
100     registration.addUrlPatterns("/*");
101     
102     return registration;
103   }
104
105
106 }