Portal Login Filter reintegration
[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.onap.aai.sparky.security.filter.LoginFilter;
26
27 import org.apache.camel.component.servlet.CamelHttpTransportServlet;
28 import org.springframework.boot.SpringApplication;
29 import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
30 import org.springframework.boot.autoconfigure.SpringBootApplication;
31 import org.springframework.boot.web.servlet.ServletRegistrationBean;
32 import org.springframework.boot.web.servlet.FilterRegistrationBean;
33 import org.springframework.context.annotation.Bean;
34
35 @SpringBootApplication
36 public class Application {
37
38   private Filter loginFilter = new LoginFilter();
39
40   public static void main(String[] args) {
41     SpringApplication.run(Application.class, args);
42   }
43
44   /*
45    * This initialization code enabled access to aai-ui-proxy-processor
46    */
47   @Bean
48   ServletRegistrationBean servletRegistrationBean() {
49     final ServletRegistrationBean servlet =
50         new ServletRegistrationBean(new CamelHttpTransportServlet(), "/rest/*");
51     servlet.setName("CamelServlet");
52     return servlet;
53   }
54
55   /**
56    * bind LoginFilter
57    */
58   @Bean
59   @ConditionalOnProperty(value = "sparky.portal.enabled", havingValue = "true")
60   public FilterRegistrationBean loginFilterRegistrationBean() {
61     FilterRegistrationBean registration = new FilterRegistrationBean();
62     
63     registration.setFilter(loginFilter);
64     registration.addUrlPatterns("/*");
65     
66     return registration;
67   }
68
69
70
71 }