Standalone TCA with EELF Logger
[dcaegen2/analytics/tca-gen2.git] / dcae-analytics / dcae-analytics-tca-web / src / main / java / org / onap / dcae / analytics / tca / web / config / TcaWebConfig.java
1 /*
2  * ================================================================================
3  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  * ============LICENSE_END=========================================================
17  *
18  */
19
20 package org.onap.dcae.analytics.tca.web.config;
21
22 import com.fasterxml.jackson.databind.ObjectMapper;
23
24 import java.util.stream.Stream;
25
26 import org.onap.dcae.analytics.model.AnalyticsProfile;
27 import org.onap.dcae.analytics.model.common.ConfigSource;
28 import org.onap.dcae.analytics.tca.core.service.TcaAaiEnrichmentContext;
29 import org.onap.dcae.analytics.tca.core.service.TcaAbatementContext;
30 import org.onap.dcae.analytics.tca.model.util.json.TcaModelJsonConversion;
31 import org.onap.dcae.analytics.tca.web.TcaAppProperties;
32 import org.onap.dcae.analytics.tca.web.domain.TcaPolicyWrapper;
33 import org.onap.dcae.analytics.tca.web.service.TcaProcessingService;
34 import org.onap.dcae.analytics.tca.web.service.TcaProcessingServiceImpl;
35 import org.onap.dcae.analytics.tca.web.validation.TcaAppPropertiesValidator;
36 import org.onap.dcae.analytics.web.config.AnalyticsWebConfig;
37 import org.springframework.boot.context.properties.EnableConfigurationProperties;
38 import org.springframework.context.annotation.Bean;
39 import org.springframework.context.annotation.Configuration;
40 import org.springframework.context.annotation.Import;
41 import org.springframework.core.env.Environment;
42 import org.springframework.validation.Validator;
43
44 /**
45  * @author Rajiv Singla
46  */
47 @Configuration
48 @EnableConfigurationProperties(value = TcaAppProperties.class)
49 @Import(value = {AnalyticsWebConfig.class, TcaMrConfig.class, TcaAaiConfig.class,
50         TcaMongoAbatementConfig.class, TcaSimpleAbatementConfig.class, SwaggerConfig.class, ControllerConfig.class})
51 public class TcaWebConfig {
52
53     @Bean
54     public static Validator configurationPropertiesValidator() {
55         return new TcaAppPropertiesValidator();
56     }
57
58     @Bean
59     public ObjectMapper objectMapper() {
60         return TcaModelJsonConversion.TCA_OBJECT_MAPPER;
61     }
62
63     @Bean
64     public TcaPolicyWrapper tcaPolicyWrapper(final TcaAppProperties tcaAppProperties,
65                                              final Environment environment) {
66         final String policy = tcaAppProperties.getTca().getPolicy();
67         final boolean isConfigBindingServiceProfileActive =
68                 Stream.of(environment.getActiveProfiles())
69                         .anyMatch(profile ->
70                                 profile.equalsIgnoreCase(AnalyticsProfile.CONFIG_BINDING_SERVICE_PROFILE_NAME));
71         if (isConfigBindingServiceProfileActive) {
72             return new TcaPolicyWrapper(policy, ConfigSource.CONFIG_BINDING_SERVICE);
73         } else {
74             return new TcaPolicyWrapper(policy, ConfigSource.CLASSPATH);
75         }
76     }
77
78     @Bean
79     public TcaProcessingService tcaProcessingService(final TcaAbatementContext tcaAbatementContext,
80                                                      final TcaAaiEnrichmentContext tcaAaiEnrichmentContext) {
81         return new TcaProcessingServiceImpl(tcaAbatementContext, tcaAaiEnrichmentContext);
82     }
83
84 }