aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/dcaegen2/services/sonhms/controller/ConfigFetchFromCbs.java
blob: 41f00a98285ff4666542bf75b386b86d8a7bb708 (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*******************************************************************************
 *  ============LICENSE_START=======================================================
 *  son-handler
 *  ================================================================================
 *   Copyright (C) 2019-2021 Wipro Limited.
 *   Copyright (C) 2022 Huawei Technologies Co., Ltd.
 *   ==============================================================================
 *     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.dcaegen2.services.sonhms.controller;

import com.google.gson.Gson;
import com.google.gson.JsonObject;
import com.google.gson.reflect.TypeToken;

import java.lang.reflect.Type;
import java.time.Duration;
import java.util.Map;

import org.onap.dcaegen2.services.sdk.rest.services.cbs.client.api.CbsClientFactory;
import org.onap.dcaegen2.services.sdk.rest.services.cbs.client.api.CbsRequests;
import org.onap.dcaegen2.services.sdk.rest.services.cbs.client.model.CbsRequest;
import org.onap.dcaegen2.services.sdk.rest.services.cbs.client.model.CbsClientConfiguration;
import org.onap.dcaegen2.services.sdk.rest.services.model.logging.ImmutableRequestDiagnosticContext;
import org.onap.dcaegen2.services.sdk.rest.services.model.logging.RequestDiagnosticContext;
import org.onap.dcaegen2.services.sonhms.ConfigPolicy;
import org.onap.dcaegen2.services.sonhms.Configuration;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import reactor.core.Disposable;

public class ConfigFetchFromCbs implements Runnable {

    private static Logger log = LoggerFactory.getLogger(ConfigFetchFromCbs.class);

    private Duration interval;

    public ConfigFetchFromCbs() {

    }

    public ConfigFetchFromCbs(Duration interval) {
        this.interval = interval;
    }

    /**
     * Gets app config from CBS.
     */
    private Disposable getAppConfig() {

        // Generate RequestID and InvocationID which will be used when logging and in
        // HTTP requests
        log.info("getAppconfig start ..");
        RequestDiagnosticContext diagnosticContext = RequestDiagnosticContext.create();
        // Read necessary properties from the environment
        final CbsClientConfiguration cbsClientConfiguration = CbsClientConfiguration.fromEnvironment();
        log.debug("environments {}", cbsClientConfiguration);
        ConfigPolicy configPolicy = ConfigPolicy.getInstance();

        // Polling properties
        final Duration initialDelay = Duration.ofSeconds(5);
        final Duration period = interval;

        // Create the client and use it to get the configuration
        final CbsRequest request = CbsRequests.getAll(diagnosticContext);
        return CbsClientFactory.createCbsClient(cbsClientConfiguration)
                .flatMapMany(cbsClient -> cbsClient.updates(request, initialDelay, period)).subscribe(jsonObject -> {
                    log.info("configuration and policy from CBS {}", jsonObject);
                    JsonObject config = jsonObject.getAsJsonObject("config");
                    Duration newPeriod = Duration.ofSeconds(config.get("cbsPollingInterval").getAsInt());
                    if (!newPeriod.equals(period)) {
                        interval = newPeriod;
                        synchronized (this) {
                            this.notifyAll();
                        }

                    }
                    Configuration.getInstance().updateConfigurationFromJsonObject(config);

                    Type mapType = new TypeToken<Map<String, Object>>() {
                    }.getType();
                    if (jsonObject.getAsJsonObject("policies") != null) {
                        if(jsonObject.getAsJsonObject("policies").getAsJsonArray("items").size() == 0) {
                            log.error("No policy in policy drool pdp engine, nothing to update.");
                        } else {
                            JsonObject policyJson = jsonObject.getAsJsonObject("policies").getAsJsonArray("items").get(0)
                                .getAsJsonObject().getAsJsonObject("config");
                            Map<String, Object> policy = new Gson().fromJson(policyJson, mapType);
                            configPolicy.setConfig(policy);
                            log.info("Config policy {}", configPolicy);
                        }
                    }
                }, throwable -> log.warn("Ooops", throwable));
    }



    @Override
    public void run() {
        Boolean done = false;
        while (!done) {
            try {
                Disposable disp = getAppConfig();
                synchronized (this) {
                    this.wait();
                }
                log.info("Polling interval changed");
                disp.dispose();
            } catch (Exception e) {
                done = true;
            }
        }
    }

}