portal api proxy added
[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.openecomp.portalsdk.core.onboarding.crossapi.PortalRestAPIProxy;
29 import org.springframework.boot.SpringApplication;
30 import org.springframework.boot.autoconfigure.SpringBootApplication;
31 import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
32 import org.springframework.boot.web.servlet.FilterRegistrationBean;
33 import org.springframework.boot.web.servlet.ServletRegistrationBean;
34 import org.springframework.context.annotation.Bean;
35
36 @SpringBootApplication
37 public class Application {
38   
39   private static final String SPARKY_SSL_ENABLED_PROPERTY = "sparky.ssl.enabled";
40   private static final String SPARKY_PORTAL_ENABLED_PROPERTY = "sparky.portal.enabled";
41   private static final String SPARKY_SSL_ENABLED_ENV = "SPARKY_SSL_ENABLED";
42   private static final String SPARKY_PORTAL_ENABLED_ENV = "SPARKY_PORTAL_ENABLED";
43   
44   private Filter loginFilter = new LoginFilter();
45    
46   public static void main(String[] args) {
47
48     setDefaultProperties();
49     SpringApplication app = new SpringApplication(Application.class);
50     app.addInitializers(new PropertyPasswordConfiguration());
51     app.run(args);
52     
53   }
54   
55   protected static void setDefaultProperties() {
56
57     /*
58      * By default we want ssl and portal integration, however it is possible to turn these off with
59      * properties for local development and interop in some situations.
60      */
61
62     if (System.getenv(SPARKY_SSL_ENABLED_ENV) == null) {
63       System.setProperty(SPARKY_SSL_ENABLED_PROPERTY, "true");
64     } else {
65       System.setProperty(SPARKY_SSL_ENABLED_PROPERTY, System.getenv(SPARKY_SSL_ENABLED_ENV));
66     }
67
68     boolean sslEnabled = Boolean.parseBoolean(System.getProperty(SPARKY_SSL_ENABLED_PROPERTY));
69
70     if (sslEnabled) {
71       System.setProperty("server.ssl.key-store-password", System.getenv("KEYSTORE_PASSWORD"));
72       System.setProperty("server.ssl.key-password", System.getenv("KEYSTORE_ALIAS_PASSWORD"));
73     }
74
75     if (System.getenv(SPARKY_PORTAL_ENABLED_ENV) == null) {
76       System.setProperty(SPARKY_PORTAL_ENABLED_PROPERTY, "true");
77     } else {
78       System.setProperty(SPARKY_PORTAL_ENABLED_PROPERTY, System.getenv(SPARKY_PORTAL_ENABLED_ENV));
79     }
80   }
81
82   /*
83    * This initialization code enabled access to aai-ui-proxy-processor
84    */
85   @Bean
86   ServletRegistrationBean servletRegistrationBean() {
87     final ServletRegistrationBean servlet =
88         new ServletRegistrationBean(new CamelHttpTransportServlet(), "/rest/*");
89     servlet.setName("CamelServlet");
90     return servlet;
91   }
92
93   /**
94    * bind LoginFilter
95    */
96   @Bean
97   @ConditionalOnProperty(value = "sparky.portal.enabled", havingValue = "true")
98   public FilterRegistrationBean loginFilterRegistrationBean() {
99     FilterRegistrationBean registration = new FilterRegistrationBean();
100     
101     registration.setFilter(loginFilter);
102     registration.addUrlPatterns("/*");
103     
104     return registration;
105   }
106
107     /**
108    * Bind the Portal API Proxy
109    */
110   @Bean
111   @ConditionalOnProperty(value = "sparky.portal.enabled", havingValue = "true")
112   public ServletRegistrationBean portalApiProxy() {
113     
114     final ServletRegistrationBean servlet =
115         new ServletRegistrationBean(new PortalRestAPIProxy(), "/api/v2/*");
116     servlet.setName("PortalRestApiProxy");
117     return servlet;
118   }
119
120 }