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