aboutsummaryrefslogtreecommitdiffstats
path: root/so-sdn-clients/src/main/java/org/onap/so/client/sdno/SDNOValidatorImpl.java
blob: efc8c45ba4db7ad2289445cf327b8d9b5890a896 (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
/*-
 * ============LICENSE_START=======================================================
 * ONAP - SO
 * ================================================================================
 * Copyright (C) 2017 AT&T 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.so.client.sdno;

import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Optional;
import java.util.UUID;
import javax.ws.rs.NotFoundException;
import org.onap.aai.domain.yang.GenericVnf;
import org.onap.aaiclient.client.aai.AAIResourcesClient;
import org.onap.aaiclient.client.aai.entities.uri.AAIResourceUri;
import org.onap.aaiclient.client.aai.entities.uri.AAIUriFactory;
import org.onap.aaiclient.client.generated.fluentbuilders.AAIFluentTypeBuilder;
import org.onap.so.client.dmaap.DmaapConsumer;
import org.onap.so.client.dmaap.DmaapPublisher;
import org.onap.so.client.sdno.beans.Body;
import org.onap.so.client.sdno.beans.Input;
import org.onap.so.client.sdno.beans.RequestHealthDiagnostic;
import org.onap.so.client.sdno.beans.SDNO;
import org.onap.so.client.sdno.dmaap.SDNOHealthCheckDmaapConsumer;
import org.onap.so.client.sdno.dmaap.SDNOHealthCheckDmaapPublisher;
import com.fasterxml.jackson.databind.ObjectMapper;

public class SDNOValidatorImpl implements SDNOValidator {

    private final static String clientName = "MSO";
    private final static String HEALTH_DIAGNOSTIC_CODE_DEFAULT = "default";

    @Override
    public boolean healthDiagnostic(String vnfId, UUID uuid, String requestingUserId) throws IOException, Exception {

        AAIResourceUri uri = AAIUriFactory.createResourceUri(AAIFluentTypeBuilder.network().genericVnf(vnfId));
        AAIResourcesClient client = new AAIResourcesClient();
        GenericVnf vnf = client.get(GenericVnf.class, uri)
                .orElseThrow(() -> new NotFoundException(vnfId + " not found in A&AI"));

        SDNO requestDiagnostic = buildRequestDiagnostic(vnf, uuid, requestingUserId);
        ObjectMapper mapper = new ObjectMapper();
        String json = mapper.writeValueAsString(requestDiagnostic);
        this.submitRequest(json);
        boolean status = this.pollForResponse(uuid.toString());
        return status;
    }

    protected SDNO buildRequestDiagnostic(GenericVnf vnf, UUID uuid, String requestingUserId) {

        Optional<String> nfRole;
        if (vnf.getNfRole() == null) {
            nfRole = Optional.empty();
        } else {
            nfRole = Optional.of(vnf.getNfRole());
        }
        Input input = new Input();
        SDNO parentRequest = new SDNO();
        Body body = new Body();
        parentRequest.setBody(body);
        parentRequest.setNodeType(nfRole.orElse("NONE").toUpperCase());
        parentRequest.setOperation("health-diagnostic");

        body.setInput(input);

        RequestHealthDiagnostic request = new RequestHealthDiagnostic();

        request.setRequestClientName(clientName);
        request.setRequestNodeName(vnf.getVnfName());
        request.setRequestNodeUuid(vnf.getVnfId());
        request.setRequestNodeType(nfRole.orElse("NONE").toUpperCase());
        request.setRequestNodeIp(vnf.getIpv4OamAddress()); // generic-vnf oam ip
        request.setRequestUserId(requestingUserId); // mech id?
        request.setRequestId(uuid.toString()); // something to identify this request by for polling
        request.setHealthDiagnosticCode(HEALTH_DIAGNOSTIC_CODE_DEFAULT);

        input.setRequestHealthDiagnostic(request);

        return parentRequest;
    }

    protected void submitRequest(String json) throws FileNotFoundException, IOException, InterruptedException {

        DmaapPublisher publisher = new SDNOHealthCheckDmaapPublisher();
        publisher.send(json);
    }

    protected boolean pollForResponse(String uuid) throws Exception {
        DmaapConsumer consumer = this.getConsumer(uuid);
        return consumer.consume();
    }



    protected DmaapConsumer getConsumer(String uuid) throws FileNotFoundException, IOException {
        return new SDNOHealthCheckDmaapConsumer(uuid);
    }



}