a6675d43b44f84f1a0443421ca2b34d12828a649
[aai/aai-common.git] / aai-schema-ingest / src / main / java / org / onap / aai / config / NodesConfiguration.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright © 2018 IBM.
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file 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  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.aai.config;
24
25 import com.att.eelf.configuration.EELFLogger;
26 import com.att.eelf.configuration.EELFManager;
27
28 import java.util.Arrays;
29 import java.util.HashSet;
30 import java.util.List;
31 import java.util.Set;
32
33 import org.onap.aai.nodes.NodeIngestor;
34 import org.onap.aai.setup.Translator;
35 import org.springframework.beans.factory.annotation.Autowired;
36 import org.springframework.beans.factory.annotation.Value;
37 import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression;
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.context.annotation.PropertySource;
42
43 @Import({SchemaServiceConfiguration.class, ConfigConfiguration.class, TranslatorConfiguration.class})
44 @PropertySource(value = "classpath:schema-ingest.properties", ignoreResourceNotFound = true)
45 @PropertySource(value = "file:${schema.ingest.file}", ignoreResourceNotFound = true)
46
47 @Configuration
48 public class NodesConfiguration {
49
50     private static final String CONFIG_TRANSLATOR = "config";
51     private static final String SCHEMA_SERVICE_TRANSLATOR = "schema-service";
52     private static final EELFLogger LOGGER = EELFManager.getInstance().getLogger(NodesConfiguration.class);
53
54     @Autowired(required = false)
55     SchemaServiceConfiguration schemaConfiguration;
56
57     @Autowired(required = false)
58     ConfigConfiguration configConfiguration;
59
60     @Autowired(required = false)
61     TranslatorConfiguration translatorConfiguration;
62
63     @Value("${schema.translator.list}")
64     private String[] translatorArray;
65
66     public Set<Translator> translators() {
67         Set<Translator> translators = new HashSet<>();
68
69         List<String> translatorList = Arrays.asList(translatorArray);
70         if (translatorList.contains(SCHEMA_SERVICE_TRANSLATOR)) {
71             LOGGER.info("Translator is SchemaServiceTranslator");
72             translators.add(schemaConfiguration.schemaServiceTranslator());
73         } else {
74             LOGGER.info("Translator is ConfigTranslator");
75             translators.add(translatorConfiguration.configTranslator);
76         }
77         return translators;
78     }
79
80     @Bean(name = "nodeIngestor")
81     @ConditionalOnExpression("'${schema.translators.needed:all}'.contains('nodes') || '${schema.translators.needed:all}'.contains('all')")
82     public NodeIngestor nodeIngestor() {
83         return new NodeIngestor(translators());
84     }
85
86 }