d9b0f092e8bc670f132fb650a71f704c74900d44
[vid.git] / epsdk-app-onap / src / main / java / org / onap / portalapp / conf / ExternalAppConfig.java
1 /*
2  * ============LICENSE_START==========================================
3  * ONAP Portal SDK
4  * ===================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this software except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *             http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
37  */
38 package org.onap.portalapp.conf;
39
40 import static org.apache.commons.lang3.StringUtils.isNotEmpty;
41
42 import java.util.ArrayList;
43 import java.util.List;
44 import javax.sql.DataSource;
45 import liquibase.integration.spring.SpringLiquibase;
46 import org.onap.portalapp.login.LoginStrategyImpl;
47 import org.onap.portalsdk.core.auth.LoginStrategy;
48 import org.onap.portalsdk.core.conf.AppConfig;
49 import org.onap.portalsdk.core.conf.Configurable;
50 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
51 import org.onap.portalsdk.core.objectcache.AbstractCacheManager;
52 import org.onap.portalsdk.core.service.DataAccessService;
53 import org.onap.portalsdk.core.util.CacheManager;
54 import org.onap.portalsdk.core.util.SystemProperties;
55 import org.springframework.beans.factory.annotation.Value;
56 import org.springframework.context.annotation.Bean;
57 import org.springframework.context.annotation.ComponentScan;
58 import org.springframework.context.annotation.Configuration;
59 import org.springframework.context.annotation.DependsOn;
60 import org.springframework.context.annotation.EnableAspectJAutoProxy;
61 import org.springframework.context.annotation.Import;
62 import org.springframework.context.annotation.Profile;
63 import org.springframework.context.annotation.PropertySource;
64 import org.springframework.core.annotation.Order;
65 import org.springframework.scheduling.annotation.EnableAsync;
66 import org.springframework.scheduling.annotation.EnableScheduling;
67 import org.springframework.scheduling.quartz.SchedulerFactoryBean;
68 import org.springframework.scheduling.quartz.SpringBeanJobFactory;
69 import org.springframework.web.multipart.commons.CommonsMultipartResolver;
70 import org.springframework.web.servlet.config.annotation.EnableWebMvc;
71 import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
72
73 /**
74  * ONAP Portal SDK sample application. Extends core AppConfig class to
75  * reuse interceptors, view resolvers and other features defined there.
76  */
77 @Configuration
78 @EnableWebMvc
79 @ComponentScan(basePackages = {"org.onap"})
80 @PropertySource(value = { "${container.classpath:}/WEB-INF/conf/app/test.properties" }, ignoreResourceNotFound = true)
81 @Profile("src")
82 @EnableAsync
83 @EnableScheduling
84 @EnableAspectJAutoProxy(proxyTargetClass=true)
85 public class ExternalAppConfig extends AppConfig implements Configurable {
86
87         /** The Constant LOG. */
88     private static final EELFLoggerDelegate LOG = EELFLoggerDelegate.getLogger(ExternalAppConfig.class);
89
90     /**
91      * The Class InnerConfiguration.
92      */
93         @Configuration
94         @Import(SystemProperties.class)
95         static class InnerConfiguration {
96         }
97
98         /**
99          * @see org.onap.portalsdk.core.conf.AppConfig#dataAccessService()
100          */
101         @Override
102         @DependsOn("liquibaseBean")
103         public DataAccessService dataAccessService() {
104                 // Echo the JDBC URL to assist developers when starting the app.
105                 LOG.info("ExternalAppConfig: " + SystemProperties.DB_CONNECTIONURL + " is "
106                                 + SystemProperties.getProperty(SystemProperties.DB_CONNECTIONURL));
107                 return super.dataAccessService();
108         }
109
110         /**
111          * Creates a new list with a single entry that is the external app
112          * definitions.xml path.
113          *
114          * @return List of String, size 1
115          */
116         @Override
117         public List<String> addTileDefinitions() {
118                 List<String> definitions = new ArrayList<>();
119                 definitions.add("/WEB-INF/defs/definitions.xml");
120                 return definitions;
121         }
122
123         /**
124          * Adds request interceptors to the specified registry by calling
125          * {@link AppConfig#addInterceptors(InterceptorRegistry)}, but excludes
126          * certain paths from the session timeout interceptor.
127          */
128         @Override
129         public void addInterceptors(InterceptorRegistry registry) {
130                 super.setExcludeUrlPathsForSessionTimeout("/login_external", "*/login_external.htm", "login", "/login.htm",
131                                 "/api*", "/single_signon.htm", "/single_signon");
132                 super.addInterceptors(registry);
133         }
134
135         /**
136          * Creates and returns a new instance of a {@link CacheManager} class.
137          *
138          * @return New instance of {@link CacheManager}
139          */
140         @Bean
141         public AbstractCacheManager cacheManager() {
142                 return new CacheManager();
143         }
144
145         /**
146          * Creates and returns a new instance of a {@link SchedulerFactoryBean} and
147          * populates it with triggers.
148          *
149          * @return New instance of {@link SchedulerFactoryBean}
150          */
151         @Bean
152         @DependsOn("liquibaseBean")
153         public SchedulerFactoryBean schedulerFactoryBean() {
154                 SchedulerFactoryBean schedulerFactory = new SchedulerFactoryBean();
155                 schedulerFactory.setJobFactory(new SpringBeanJobFactory());
156                 return schedulerFactory;
157         }
158
159
160         @Bean
161         @Order(1)
162         public SpringLiquibase liquibaseBean(DataSource dataSource) {
163                 SpringLiquibase springLiquibase = new SpringLiquibase();
164                 springLiquibase.setDataSource(dataSource);
165                 springLiquibase.setChangeLog("classpath:db-master-changelog.xml");
166                 return springLiquibase;
167         }
168
169         @Bean
170         public LoginStrategy loginStrategy(@Value("${login.strategy.classname:}") String classname) throws ReflectiveOperationException {
171                 return isNotEmpty(classname) ?
172                         newLoginStrategyInstance(classname) : new LoginStrategyImpl();
173         }
174
175         private LoginStrategy newLoginStrategyInstance(String loginStrategyClassname) throws ReflectiveOperationException {
176                 return (LoginStrategy) Class.forName(loginStrategyClassname)
177                         .getConstructor()
178                         .newInstance();
179         }
180
181         @Bean
182         public CommonsMultipartResolver multipartResolver() {
183                 CommonsMultipartResolver resolver=new CommonsMultipartResolver();
184                 resolver.setDefaultEncoding("utf-8");
185                 return resolver;
186         }
187
188 }