Update schema service to fail to start
[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.Translator;
28 import org.springframework.beans.factory.annotation.Autowired;
29 import org.springframework.beans.factory.annotation.Value;
30 import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression;
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
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 CONFIG_TRANSLATOR = "config";
50     private static final String SCHEMA_SERVICE_TRANSLATOR = "schema-service";
51     private static final EELFLogger LOGGER = EELFManager.getInstance().getLogger(NodesConfiguration.class);
52
53     @Autowired(required = false)
54     SchemaServiceConfiguration schemaConfiguration;
55
56     @Autowired(required = false)
57     ConfigConfiguration configConfiguration;
58
59     @Autowired(required = false)
60     TranslatorConfiguration translatorConfiguration;
61
62     @Value("${schema.translator.list}")
63     private String[] translatorArray;
64
65     public Set<Translator> translators() {
66         Set<Translator> translators = new HashSet<>();
67
68         List<String> translatorList = Arrays.asList(translatorArray);
69         if (translatorList.contains(SCHEMA_SERVICE_TRANSLATOR)) {
70             LOGGER.info("Translator is SchemaServiceTranslator");
71             translators.add(schemaConfiguration.schemaServiceTranslator());
72         } else {
73             LOGGER.info("Translator is ConfigTranslator");
74             translators.add(translatorConfiguration.configTranslator);
75         }
76         return translators;
77     }
78
79     @Bean(name = "nodeIngestor")
80     @ConditionalOnExpression("'${schema.translators.needed:all}'.contains('nodes') || '${schema.translators.needed:all}'.contains('all')")
81     public NodeIngestor nodeIngestor() {
82         return new NodeIngestor(translators());
83     }
84
85 }