50738df9391ed4dc8259696df480d5081057c23e
[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 package org.onap.aai.config;
23
24 import com.att.eelf.configuration.EELFLogger;
25 import com.att.eelf.configuration.EELFManager;
26 import org.onap.aai.nodes.NodeIngestor;
27 import org.onap.aai.setup.SchemaVersions;
28 import org.onap.aai.setup.Translator;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.beans.factory.annotation.Value;
31 import org.springframework.context.annotation.Bean;
32 import org.springframework.context.annotation.Configuration;
33 import org.springframework.context.annotation.Import;
34 import org.springframework.context.annotation.PropertySource;
35
36 import java.util.Arrays;
37 import java.util.HashSet;
38 import java.util.List;
39 import java.util.Set;
40
41 @Import({SchemaServiceConfiguration.class, ConfigConfiguration.class, TranslatorConfiguration.class})
42 @PropertySource(value = "classpath:schema-ingest.properties", ignoreResourceNotFound = true)
43 @PropertySource(value = "file:${schema.ingest.file}", ignoreResourceNotFound = true)
44 @Configuration
45 public class NodesConfiguration {
46
47     private static final String CONFIG_TRANSLATOR = "config";
48     private static final String SCHEMA_SERVICE_TRANSLATOR = "schema-service";
49     private static final EELFLogger LOGGER = EELFManager.getInstance().getLogger(NodesConfiguration.class);
50
51     @Autowired(required = false)
52     SchemaServiceConfiguration schemaConfiguration;
53
54     @Autowired(required = false)
55     ConfigConfiguration configConfiguration;
56
57     @Autowired(required = false)
58     TranslatorConfiguration translatorConfiguration;
59
60     @Value("${schema.translator.list}")
61     private String[] translatorArray;
62
63     public Set<Translator> translators() {
64         Set<Translator> translators = new HashSet<>();
65
66         List<String> translatorList = Arrays.asList(translatorArray);
67         if (translatorList.contains(SCHEMA_SERVICE_TRANSLATOR)) {
68             LOGGER.info("Translator is SchemaServiceTranslator");
69             translators.add(schemaConfiguration.schemaServiceTranslator());
70         } else {
71             LOGGER.info("Translator is ConfigTranslator");
72             translators.add(translatorConfiguration.configTranslator);
73         }
74         return translators;
75     }
76
77     @Bean(name = "nodeIngestor")
78     public NodeIngestor nodeIngestor() {
79         return new NodeIngestor(translators());
80     }
81
82 }