aboutsummaryrefslogtreecommitdiffstats
path: root/datafile-app-server/src/main/java/org/onap/dcaegen2/collectors/datafile/tasks/PublishedChecker.java
blob: e18da248c741db76ec3281bdc150493b218b50c5 (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
/*-
* ============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 java.io.InputStream;
import java.net.URI;
import java.time.Duration;
import java.util.Map;
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.MappedDiagnosticContext;
import org.onap.dcaegen2.collectors.datafile.service.producer.DmaapProducerHttpClient;
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 static final Duration WEB_CLIENT_TIMEOUT = Duration.ofSeconds(4);

    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 isFilePublished(String fileName, Map<String, String> contextMap) {
        MDC.setContextMap(contextMap);
        DmaapProducerHttpClient producerClient = resolveClient();

        HttpGet getRequest = new HttpGet();
        MappedDiagnosticContext.appendTraceInfo(getRequest);

        getRequest.setURI(getPublishedQueryUri(fileName, producerClient));
        producerClient.addUserCredentialsToHead(getRequest);

        try {
            HttpResponse response = producerClient.getDmaapProducerResponseWithCustomTimeout(getRequest,
                    WEB_CLIENT_TIMEOUT, 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, file: {}", fileName, e);
            return false;
        }
    }

    private URI getPublishedQueryUri(String fileName, DmaapProducerHttpClient 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 DmaapProducerHttpClient resolveClient() {
        return new DmaapProducerHttpClient(resolveConfiguration());
    }
}