aboutsummaryrefslogtreecommitdiffstats
path: root/datafile-app-server/src/main/java/org/onap/dcaegen2/collectors/datafile/tasks/PublishedChecker.java
blob: 41f8e3cd80005d29caa2539fda10e3fcc2eefb48 (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
/*-
* ============LICENSE_START=======================================================
*  Copyright (C) 2019 Nordix Foundation.
* ================================================================================
* 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.
*
* SPDX-License-Identifier: Apache-2.0
* ============LICENSE_END=========================================================
*/

package org.onap.dcaegen2.collectors.datafile.tasks;

import static org.onap.dcaegen2.collectors.datafile.model.logging.MdcVariables.REQUEST_ID;
import static org.onap.dcaegen2.collectors.datafile.model.logging.MdcVariables.X_INVOCATION_ID;
import static org.onap.dcaegen2.collectors.datafile.model.logging.MdcVariables.X_ONAP_REQUEST_ID;

import java.io.InputStream;
import java.net.URI;
import java.util.Map;
import java.util.UUID;

import org.apache.commons.io.IOUtils;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.client.methods.HttpGet;
import org.onap.dcaegen2.collectors.datafile.configuration.AppConfig;
import org.onap.dcaegen2.collectors.datafile.model.logging.MdcVariables;
import org.onap.dcaegen2.collectors.datafile.service.producer.DmaapProducerReactiveHttpClient;
import org.onap.dcaegen2.services.sdk.rest.services.dmaap.client.config.DmaapPublisherConfiguration;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.slf4j.MDC;

/**
 * Bean used to check with DataRouter if a file has been published.
 *
 * @author <a href="mailto:maxime.bonneau@est.tech">Maxime Bonneau</a>
 *
 */
public class PublishedChecker {
    private static final String FEEDLOG_TOPIC = "feedlog";
    private static final String DEFAULT_FEED_ID = "1";

    private final Logger logger = LoggerFactory.getLogger(this.getClass());

    private final AppConfig appConfig;

    /**
     * Constructor.
     *
     * @param appConfig The DFC configuration.
     */
    public PublishedChecker(AppConfig appConfig) {
        this.appConfig = appConfig;
    }

    /**
     * Checks with DataRouter if the given file has been published already.
     *
     * @param fileName the name of the file used when it is published.
     *
     * @return <code>true</code> if the file has been published before, <code>false</code> otherwise.
     */
    public boolean execute(String fileName, Map<String, String> contextMap) {
        MdcVariables.setMdcContextMap(contextMap);
        DmaapProducerReactiveHttpClient producerClient = resolveClient();

        HttpGet getRequest = new HttpGet();
        String requestId = MDC.get(REQUEST_ID);
        getRequest.addHeader(X_ONAP_REQUEST_ID, requestId);
        String invocationId = UUID.randomUUID().toString();
        getRequest.addHeader(X_INVOCATION_ID, invocationId);
        getRequest.setURI(getPublishedQueryUri(fileName, producerClient));
        producerClient.addUserCredentialsToHead(getRequest);

        try {
            HttpResponse response =
                    producerClient.getDmaapProducerResponseWithCustomTimeout(getRequest, 2000, contextMap);

            logger.trace("{}", response);
            int status = response.getStatusLine().getStatusCode();
            HttpEntity entity = response.getEntity();
            try (InputStream content = entity.getContent()) {
                String body = IOUtils.toString(content);
                return HttpStatus.SC_OK == status && !"[]".equals(body);
            }
        } catch (Exception e) {
            logger.warn("Unable to check if file has been published.", e);
            return false;
        }
    }

    private URI getPublishedQueryUri(String fileName, DmaapProducerReactiveHttpClient producerClient) {
        return producerClient.getBaseUri() //
                .pathSegment(FEEDLOG_TOPIC) //
                .pathSegment(DEFAULT_FEED_ID) //
                .queryParam("type", "pub") //
                .queryParam("filename", fileName) //
                .build();
    }

    protected DmaapPublisherConfiguration resolveConfiguration() {
        return appConfig.getDmaapPublisherConfiguration();
    }

    protected DmaapProducerReactiveHttpClient resolveClient() {
        return new DmaapProducerReactiveHttpClient(resolveConfiguration());
    }
}