aboutsummaryrefslogtreecommitdiffstats
path: root/common/src/main/java/org/onap/so/client/sdno/SDNOValidatorImpl.java
blob: be79c8b927afa8f7a6b3ea4f4ae6962e27f0dab6 (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
/*-
 * ============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.so.client.aai.AAIObjectType;
import org.onap.so.client.aai.AAIResourcesClient;
import org.onap.so.client.aai.AAIVersion;
import org.onap.so.client.aai.entities.uri.AAIResourceUri;
import org.onap.so.client.aai.entities.uri.AAIUriFactory;
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";

	@Override
	public boolean healthDiagnostic(String vnfId, UUID uuid, String requestingUserId) throws IOException, Exception {
		
		AAIResourceUri uri = AAIUriFactory.createResourceUri(AAIObjectType.GENERIC_VNF, vnfId);
		AAIResourcesClient client = new AAIResourcesClient(AAIVersion.V10);
		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;		
	}
	
	@Override
	public boolean healthDiagnostic(GenericVnf genericVnf, UUID uuid, String requestingUserId) throws IOException, Exception {
		
		SDNO requestDiagnostic = buildRequestDiagnostic(genericVnf, 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> vnfType;
		if (vnf.getVnfType() == null) {
			vnfType = Optional.empty();
		} else {
			vnfType = Optional.of(vnf.getVnfType());
		}
		Input input = new Input();
		SDNO parentRequest = new SDNO();
		Body body = new Body();
		parentRequest.setBody(body);
		parentRequest.setNodeType(vnfType.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.setRequestNodeIp(vnf.getIpv4OamAddress()); //generic-vnf oam ip
		request.setRequestUserId(requestingUserId); //mech id?
		request.setRequestId(uuid.toString()); //something to identify this request by for polling
		
		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);
	}
	

	
}