d9989d433e081b54eebd9c43a8e29941606494fa
[clamp.git] / src / main / java / org / onap / clamp / clds / Application.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights
6  *                             reserved.
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  * 
22  */
23
24 package org.onap.clamp.clds;
25
26 import com.att.eelf.configuration.EELFLogger;
27 import com.att.eelf.configuration.EELFManager;
28
29 import org.apache.camel.component.servlet.CamelHttpTransportServlet;
30 import org.apache.catalina.connector.Connector;
31 import org.onap.clamp.clds.model.properties.Holmes;
32 import org.onap.clamp.clds.model.properties.ModelProperties;
33 import org.springframework.beans.factory.annotation.Value;
34 import org.springframework.boot.SpringApplication;
35 import org.springframework.boot.actuate.autoconfigure.ManagementWebSecurityAutoConfiguration;
36 import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
37 import org.springframework.boot.autoconfigure.SpringBootApplication;
38 import org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration;
39 import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
40 import org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration;
41 import org.springframework.boot.autoconfigure.security.SecurityAutoConfiguration;
42 import org.springframework.boot.builder.SpringApplicationBuilder;
43 import org.springframework.boot.context.embedded.EmbeddedServletContainerFactory;
44 import org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainerFactory;
45 import org.springframework.boot.context.properties.EnableConfigurationProperties;
46 import org.springframework.boot.web.servlet.ServletRegistrationBean;
47 import org.springframework.boot.web.support.SpringBootServletInitializer;
48 import org.springframework.context.annotation.Bean;
49 import org.springframework.context.annotation.ComponentScan;
50 import org.springframework.scheduling.annotation.EnableAsync;
51
52 @SpringBootApplication
53 @ComponentScan(basePackages = {
54         "org.onap.clamp.clds"
55 })
56 @EnableAutoConfiguration(exclude = {
57         DataSourceAutoConfiguration.class, HibernateJpaAutoConfiguration.class, JpaRepositoriesAutoConfiguration.class,
58         SecurityAutoConfiguration.class, ManagementWebSecurityAutoConfiguration.class
59 })
60 @EnableConfigurationProperties
61 @EnableAsync
62 public class Application extends SpringBootServletInitializer {
63
64     protected static final EELFLogger EELF_LOGGER = EELFManager.getInstance().getLogger(Application.class);
65     // This settings is an additional one to Spring config,
66     // only if we want to have an additional port automatically redirected to
67     // HTTPS
68     @Value("${server.http-to-https-redirection.port:none}")
69     private String httpRedirectedPort;
70     /**
71      * This 8080 is the default port used by spring if this parameter is not
72      * specified in application.properties.
73      */
74     @Value("${server.port:8080}")
75     private String springServerPort;
76     @Value("${server.ssl.key-store:none}")
77     private String sslKeystoreFile;
78
79     @Override
80     protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
81         return application.sources(Application.class);
82     }
83
84     public static void main(String[] args) {
85         // This is to initialize some Onap Clamp components
86         initializeComponents();
87         // Start the Spring application
88         SpringApplication.run(Application.class, args);
89     }
90
91     private static void initializeComponents() {
92         ModelProperties.registerModelElement(Holmes.class, Holmes.getType());
93     }
94
95     /**
96      * This method is used to declare the camel servlet.
97      * 
98      * @return A servlet bean
99      */
100     @Bean
101     public ServletRegistrationBean camelServletRegistrationBean() {
102         ServletRegistrationBean registration = new ServletRegistrationBean(new CamelHttpTransportServlet(),
103                 "/restservices/clds/v2");
104         registration.setName("CamelServlet");
105         return registration;
106     }
107
108     /**
109      * This method is used by Spring to create the servlet container factory.
110      * 
111      * @return The TomcatEmbeddedServletContainerFactory just created
112      */
113     @Bean
114     public EmbeddedServletContainerFactory getEmbeddedServletContainerFactory() {
115         TomcatEmbeddedServletContainerFactory tomcat = new TomcatEmbeddedServletContainerFactory();
116         if (!"none".equals(httpRedirectedPort) && !"none".equals(sslKeystoreFile)) {
117             // Automatically redirect to HTTPS
118             tomcat = new TomcatEmbeddedServletContainerFactoryRedirection();
119             Connector newConnector = createRedirectConnector(Integer.parseInt(springServerPort));
120             if (newConnector != null) {
121                 tomcat.addAdditionalTomcatConnectors(newConnector);
122             }
123         }
124         return tomcat;
125     }
126
127     private Connector createRedirectConnector(int redirectSecuredPort) {
128         if (redirectSecuredPort <= 0) {
129             EELF_LOGGER.warn(
130                     "HTTP port redirection to HTTPS is disabled because the HTTPS port is 0 (random port) or -1 (Connector disabled)");
131             return null;
132         }
133         Connector connector = new Connector("org.apache.coyote.http11.Http11NioProtocol");
134         connector.setScheme("http");
135         connector.setSecure(false);
136         connector.setPort(Integer.parseInt(httpRedirectedPort));
137         connector.setRedirectPort(redirectSecuredPort);
138         return connector;
139     }
140 }