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