summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-core/src/main/java/org/onap/portalsdk/core/conf/AppConfig.java
blob: cc0fca2941d5796c983df51ce004a19abc474d4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
/*
 * ============LICENSE_START==========================================
 * ONAP Portal SDK
 * ===================================================================
 * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
 * ===================================================================
 *
 * Unless otherwise specified, all software contained herein is licensed
 * under the Apache License, Version 2.0 (the "License");
 * you may not use this software except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *             http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * Unless otherwise specified, all documentation contained herein is licensed
 * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
 * you may not use this documentation except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *             https://creativecommons.org/licenses/by/4.0/
 *
 * Unless required by applicable law or agreed to in writing, documentation
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * ============LICENSE_END============================================
 *
 * 
 */
package org.onap.portalsdk.core.conf;

import java.util.ArrayList;
import java.util.List;

import javax.sql.DataSource;

import org.onap.portalsdk.core.interceptor.ResourceInterceptor;
import org.onap.portalsdk.core.interceptor.SessionTimeoutInterceptor;
import org.onap.portalsdk.core.logging.format.AlarmSeverityEnum;
import org.onap.portalsdk.core.logging.format.AppMessagesEnum;
import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
import org.onap.portalsdk.core.menu.MenuBuilder;
import org.onap.portalsdk.core.onboarding.util.CipherUtil;
import org.onap.portalsdk.core.service.DataAccessService;
import org.onap.portalsdk.core.service.DataAccessServiceImpl;
import org.onap.portalsdk.core.util.SystemProperties;
import org.onap.portalsdk.core.web.support.AppUtils;
import org.onap.portalsdk.core.web.support.UserUtils;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.context.annotation.Bean;
import org.springframework.web.servlet.ViewResolver;
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
import org.springframework.web.servlet.view.InternalResourceViewResolver;
import org.springframework.web.servlet.view.JstlView;
import org.springframework.web.servlet.view.UrlBasedViewResolver;
import org.springframework.web.servlet.view.tiles3.TilesConfigurer;
import org.springframework.web.servlet.view.tiles3.TilesView;

import com.mchange.v2.c3p0.ComboPooledDataSource;

/**
 * Configures Spring features in the ONAP Portal SDK including request
 * interceptors and view resolvers. Application should subclass and override
 * methods as needed.
 */
public class AppConfig extends WebMvcConfigurerAdapter implements Configurable, ApplicationContextAware {

	private static final EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(AppConfig.class);

	private final List<String> tileDefinitions = new ArrayList<>();
	private String[] excludeUrlPathsForSessionTimeout = {};

	protected ApplicationContext appApplicationContext = null;

	public AppConfig() {
		// loads all default fields and marks logging
		// has been started for each log file type.
		initGlobalLocalContext();
	}

	/**
	 * Creates and returns a new instance of a secondary (order=2)
	 * {@link ViewResolver} that finds files by adding prefix "/WEB-INF/jsp/" and
	 * suffix ".jsp" to the base view name.
	 * 
	 * @return New instance of {@link ViewResolver}.
	 */
	@Bean
	@Override
	public ViewResolver viewResolver() {
		InternalResourceViewResolver viewResolver = new InternalResourceViewResolver();
		viewResolver.setViewClass(JstlView.class);
		viewResolver.setPrefix("/WEB-INF/jsp/");
		viewResolver.setSuffix(".jsp");
		viewResolver.setOrder(2);
		return viewResolver;
	}

	/**
	 * Loads all the default logging fields into the global MDC context and marks
	 * each log file type that logging has been started.
	 */
	private void initGlobalLocalContext() {
		 logger.init();
	}

	/**
	 * Any requests from the url pattern /static/**, Spring will look for the
	 * resources from the /static/ Same as
	 * <mvc:resources mapping="/static/**" location="/static/"/> in xml
	 */
	@Override
	public void addResourceHandlers(ResourceHandlerRegistry registry) {
		registry.addResourceHandler("/**").addResourceLocations("/");
	}

	/**
	 * Creates and returns a new instance of a {@link DataAccessService} class.
	 * 
	 * @return New instance of {@link DataAccessService}.
	 */
	@Bean
	@Override
	public DataAccessService dataAccessService() {
		return new DataAccessServiceImpl();
	}

	/**
	 * Creates and returns a new instance of a {@link SystemProperties} class.
	 * 
	 * @return New instance of {@link SystemProperties}.
	 */
	@Bean
	public SystemProperties systemProperties() {
		return new SystemProperties();
	}

	/**
	 * Creates and returns a new instance of a {@link MenuBuilder} class.
	 * 
	 * @return New instance of {@link MenuBuilder}.
	 */
	@Bean
	public MenuBuilder menuBuilder() {
		return new MenuBuilder();
	}

	/**
	 * Creates and returns a new instance of a {@link UserUtils} class.
	 * 
	 * @return New instance of {@link UserUtils}.
	 */
	@Bean
	public UserUtils userUtil() {
		return new UserUtils();
	}

	/**
	 * Creates and returns a new instance of an {@link AppUtils} class.
	 * 
	 * @return New instance of {@link AppUtils}.
	 */
	@Bean
	public AppUtils appUtils() {
		return new AppUtils();
	}

	/**
	 * Creates and returns a new instance of a {@link TilesConfigurer} class.
	 * 
	 * @return New instance of {@link TilesConfigurer}.
	 */
	@Bean
	public TilesConfigurer tilesConfigurer() {
		TilesConfigurer tilesConfigurer = new TilesConfigurer();
		tilesConfigurer.setDefinitions(tileDefinitions());
		tilesConfigurer.setCheckRefresh(true);
		return tilesConfigurer;
	}

	/**
	 * 
	 * Creates the Application Data Source.
	 * 
	 * @return DataSource Object
	 * @throws Exception
	 *             on failure to create data source object
	 */
	@Bean
	public DataSource dataSource() throws Exception {

		systemProperties();

		ComboPooledDataSource dataSource = new ComboPooledDataSource();
		try {
			dataSource.setDriverClass(SystemProperties.getProperty(SystemProperties.DB_DRIVER));
			dataSource.setJdbcUrl(SystemProperties.getProperty(SystemProperties.DB_CONNECTIONURL));
			dataSource.setUser(SystemProperties.getProperty(SystemProperties.DB_USERNAME));
			String password = SystemProperties.getProperty(SystemProperties.DB_PASSWORD);
			if (SystemProperties.containsProperty(SystemProperties.DB_ENCRYPT_FLAG)) {
				String encryptFlag = SystemProperties.getProperty(SystemProperties.DB_ENCRYPT_FLAG);
				if (encryptFlag != null && "true".equalsIgnoreCase(encryptFlag)) {
					password = CipherUtil.decryptPKC(password);
				}
			}
			dataSource.setPassword(password);
			dataSource
					.setMinPoolSize(Integer.parseInt(SystemProperties.getProperty(SystemProperties.DB_MIN_POOL_SIZE)));
			dataSource
					.setMaxPoolSize(Integer.parseInt(SystemProperties.getProperty(SystemProperties.DB_MAX_POOL_SIZE)));
			dataSource.setIdleConnectionTestPeriod(
					Integer.parseInt(SystemProperties.getProperty(SystemProperties.IDLE_CONNECTION_TEST_PERIOD)));
			dataSource.setTestConnectionOnCheckout(getConnectionOnCheckout());
			dataSource.setPreferredTestQuery(getPreferredTestQuery());
		} catch (Exception e) {
			// Show details
			logger.error(EELFLoggerDelegate.errorLogger,
					"Error initializing database, verify database settings in properties file", e);
			// Include alarm in log 
			logger.error(EELFLoggerDelegate.debugLogger,
					"Error initializing database", AlarmSeverityEnum.CRITICAL);
			// Raise an alarm that opening a connection to the database failed.
			logger.logEcompError(AppMessagesEnum.BeDaoSystemError);
			throw e;
		}
		return dataSource;
	}

	/**
	 * Gets the value of the property {@link SystemProperties#PREFERRED_TEST_QUERY};
	 * defaults to "Select 1" if the property is not defined.
	 * 
	 * @return String value that is a SQL query
	 */
	private String getPreferredTestQuery() {
		// Use simple default
		String preferredTestQueryStr = "SELECT 1";
		if (SystemProperties.containsProperty(SystemProperties.PREFERRED_TEST_QUERY)) {
			preferredTestQueryStr = SystemProperties.getProperty(SystemProperties.PREFERRED_TEST_QUERY);
			logger.debug(EELFLoggerDelegate.debugLogger, "getPreferredTestQuery: property key {} value is {}",
					SystemProperties.PREFERRED_TEST_QUERY, preferredTestQueryStr);
		} else {
			logger.info(EELFLoggerDelegate.errorLogger,
					"getPreferredTestQuery: property key {} not found, using default value {}",
					SystemProperties.PREFERRED_TEST_QUERY, preferredTestQueryStr);
		}
		return preferredTestQueryStr;
	}

	/**
	 * Gets the value of the property
	 * {@link SystemProperties#TEST_CONNECTION_ON_CHECKOUT}; defaults to true if the
	 * property is not defined.
	 * 
	 * @return Boolean value
	 */
	private Boolean getConnectionOnCheckout() {
		// Default to true, always test connection
		boolean testConnectionOnCheckout = true;
		if (SystemProperties.containsProperty(SystemProperties.TEST_CONNECTION_ON_CHECKOUT)) {
			testConnectionOnCheckout = Boolean
					.valueOf(SystemProperties.getProperty(SystemProperties.TEST_CONNECTION_ON_CHECKOUT));
			logger.debug(EELFLoggerDelegate.debugLogger, "getConnectionOnCheckout: property key {} value is {}",
					SystemProperties.TEST_CONNECTION_ON_CHECKOUT, testConnectionOnCheckout);
		} else {
			logger.info(EELFLoggerDelegate.errorLogger,
					"getConnectionOnCheckout: property key {} not found, using default value {}",
					SystemProperties.TEST_CONNECTION_ON_CHECKOUT, testConnectionOnCheckout);
		}
		return testConnectionOnCheckout;
	}

	/*
	 * TODO: Check whether it is appropriate to extend the list of tile definitions
	 * at every invocation.
	 */
	protected String[] tileDefinitions() {
		tileDefinitions.add("/WEB-INF/fusion/defs/definitions.xml");
		tileDefinitions.addAll(addTileDefinitions());

		return tileDefinitions.toArray(new String[0]);
	}

	/**
	 * Creates and returns a new empty list. This method should be overridden by
	 * child classes.
	 * 
	 * @return An empty list.
	 */
	@Override
	public List<String> addTileDefinitions() {
		return new ArrayList<>();
	}

	/**
	 * Creates and returns a new instance of a primary (order=1)
	 * {@link UrlBasedViewResolver} that finds files using the contents of
	 * definitions.xml files.
	 * 
	 * @return New instance of {@link UrlBasedViewResolver}
	 */
	@Bean
	public UrlBasedViewResolver tileViewResolver() {
		UrlBasedViewResolver viewResolver = new UrlBasedViewResolver();
		viewResolver.setViewClass(TilesView.class);
		viewResolver.setOrder(1);
		return viewResolver;
	}

	/**
	 * Adds new instances of the following interceptors to the specified interceptor
	 * registry: {@link SessionTimeoutInterceptor}, {@link ResourceInterceptor}
	 */
	@Override
	public void addInterceptors(InterceptorRegistry registry) {
		registry.addInterceptor(new SessionTimeoutInterceptor())
				.excludePathPatterns(getExcludeUrlPathsForSessionTimeout());
		registry.addInterceptor(resourceInterceptor());
	}

	/**
	 * Creates and returns a new instance of a {@link ResourceInterceptor}.
	 * 
	 * @return New instance of {@link ResourceInterceptor}
	 */
	@Bean
	public ResourceInterceptor resourceInterceptor() {
		return new ResourceInterceptor();
	}

	/**
	 * Gets the array of Strings that are paths excluded for session timeout.
	 * 
	 * @return Array of String
	 */
	public String[] getExcludeUrlPathsForSessionTimeout() {
		return excludeUrlPathsForSessionTimeout;
	}

	/**
	 * Sets the array of Strings that are paths excluded for session timeout.
	 * 
	 * @param excludeUrlPathsForSessionTimeout
	 *            Paths to exclude
	 */
	public void setExcludeUrlPathsForSessionTimeout(final String... excludeUrlPathsForSessionTimeout) {
		this.excludeUrlPathsForSessionTimeout = excludeUrlPathsForSessionTimeout;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see
	 * org.springframework.context.ApplicationContextAware#setApplicationContext
	 * (org.springframework.context.ApplicationContext)
	 */
	@Override
	public void setApplicationContext(ApplicationContext applicationContext) {
		appApplicationContext = applicationContext;
	}

}