aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/data-provider/provider/src/main/java/org/onap/ccsdk/features/sdnr/wt/dataprovider/impl/DataProviderConfig.java
blob: 9ecc6809389bcc1baae1cda378474738c4e4f1e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
 * ============LICENSE_START=======================================================
 * ONAP : ccsdk features
 * ================================================================================
 * Copyright (C) 2020 highstreet technologies GmbH Intellectual Property.
 * All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 *
 */
package org.onap.ccsdk.features.sdnr.wt.dataprovider.impl;

import org.onap.ccsdk.features.sdnr.wt.common.configuration.Configuration;
import org.onap.ccsdk.features.sdnr.wt.common.configuration.ConfigurationFileRepresentation;
import org.onap.ccsdk.features.sdnr.wt.dataprovider.database.elasticsearch.EsConfig;
import org.onap.ccsdk.features.sdnr.wt.dataprovider.database.sqldb.SqlDBConfig;
import org.onap.ccsdk.features.sdnr.wt.dataprovider.model.SdnrDbType;

public class DataProviderConfig implements Configuration {

    private static final String PROPERTY_KEY_DBTYPE = "dbType";
    private static final Object DEFAULT_DBTYPE = "${SDNRDBTYPE}";
    private static final SdnrDbType DEFAULT_DBTYPE_VALUE = SdnrDbType.ELASTICSEARCH;
    private static final String PROPERTY_KEY_DBENABLED = "enabled";
    private static final String DEFAULT_ISENABLED = "${SDNRDBENABLED}";
    private static final boolean DEFAULT_ISENABLED_IFNOTSET = true;
    private static final String PROPERTY_KEY_GUICUTTHROUGH_OVERWRITE = "GUICUTTHROUGH_PROXY_OVERWRITE";
    private static final String DEFAULT_GUICUTTHROUGH_OVERWRITE = "${GUICUTTHROUGH_PROXY_OVERWRITE}";
    private final EsConfig esConfig;
    private final SqlDBConfig maridadbConfig;
    private ConfigurationFileRepresentation configuration;

    public DataProviderConfig(ConfigurationFileRepresentation configuration) {
        this.configuration = configuration;
        defaults();
        this.esConfig = new EsConfig(configuration);
        this.maridadbConfig = new SqlDBConfig(configuration);
    }

    public EsConfig getEsConfig() {
        return this.esConfig;
    }

    public SqlDBConfig getMariadbConfig() {
        return this.maridadbConfig;
    }

    public boolean isEnabled() {
        final String s = this.configuration.getProperty(ConfigurationFileRepresentation.SECTIONNAME_ROOT,
                PROPERTY_KEY_DBENABLED);
        if (s != null && !s.isBlank()) {
            return Boolean.getBoolean(s);
        }
        return DEFAULT_ISENABLED_IFNOTSET;
    }

    @Override
    public void defaults() {

        configuration.setPropertyIfNotAvailable(this.getSectionName(), PROPERTY_KEY_DBTYPE, DEFAULT_DBTYPE);
        configuration.setPropertyIfNotAvailable(this.getSectionName(), PROPERTY_KEY_DBENABLED, DEFAULT_ISENABLED);
        configuration.setPropertyIfNotAvailable(this.getSectionName(), PROPERTY_KEY_GUICUTTHROUGH_OVERWRITE,
                DEFAULT_GUICUTTHROUGH_OVERWRITE);
    }

    @Override
    public String getSectionName() {
        return ConfigurationFileRepresentation.SECTIONNAME_ROOT;
    }

    public SdnrDbType getDbType() {
        String value = this.configuration.getProperty(this.getSectionName(), PROPERTY_KEY_DBTYPE);
        if (value.isEmpty()) {
            return DEFAULT_DBTYPE_VALUE;
        }
        return SdnrDbType.valueOf(value);
    }

    public String getGuicutthroughOverride() {
        return this.configuration.getProperty(this.getSectionName(), PROPERTY_KEY_GUICUTTHROUGH_OVERWRITE);
    }

}