2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
21 package org.onap.policy.controlloop.actor.so;
24 import java.net.http.HttpRequest;
25 import java.net.http.HttpRequest.BodyPublishers;
26 import java.net.http.HttpRequest.Builder;
27 import java.net.http.HttpResponse;
28 import java.net.http.HttpResponse.BodyHandlers;
29 import java.nio.charset.StandardCharsets;
30 import java.util.Base64;
32 import java.util.Map.Entry;
33 import java.util.concurrent.CompletableFuture;
34 import javax.ws.rs.client.InvocationCallback;
35 import javax.ws.rs.core.MediaType;
36 import javax.ws.rs.core.Response;
37 import org.apache.commons.lang3.StringUtils;
38 import org.apache.commons.lang3.tuple.Pair;
39 import org.onap.aai.domain.yang.CloudRegion;
40 import org.onap.aai.domain.yang.GenericVnf;
41 import org.onap.aai.domain.yang.ServiceInstance;
42 import org.onap.aai.domain.yang.Tenant;
43 import org.onap.policy.aai.AaiConstants;
44 import org.onap.policy.aai.AaiCqResponse;
45 import org.onap.policy.common.endpoints.event.comm.Topic.CommInfrastructure;
46 import org.onap.policy.common.endpoints.http.client.HttpClient;
47 import org.onap.policy.common.endpoints.utils.NetLoggerUtil.EventType;
48 import org.onap.policy.controlloop.actorserviceprovider.OperationOutcome;
49 import org.onap.policy.controlloop.actorserviceprovider.parameters.ControlLoopOperationParams;
50 import org.onap.policy.controlloop.actorserviceprovider.parameters.HttpConfig;
51 import org.onap.policy.controlloop.actorserviceprovider.pipeline.PipelineControllerFuture;
52 import org.onap.policy.so.SoModelInfo;
53 import org.onap.policy.so.SoOperationType;
54 import org.onap.policy.so.SoRequest;
55 import org.onap.policy.so.SoRequestDetails;
58 * Operation to delete a VF Module. This gets the VF count from the A&AI Custom Query
59 * response and stores it in the context. It also passes the count-1 to the guard. Once
60 * the "delete" completes successfully, it decrements the VF count that's stored in the
63 public class VfModuleDelete extends SoOperation {
64 public static final String NAME = "VF Module Delete";
66 private static final String PATH_PREFIX = "/";
69 * Constructs the object.
71 * @param params operation parameters
72 * @param config configuration for this operation
74 public VfModuleDelete(ControlLoopOperationParams params, HttpConfig config) {
75 super(params, config);
77 // ensure we have the necessary parameters
82 * Ensures that A&AI custom query has been performed, and then runs the guard.
85 @SuppressWarnings("unchecked")
86 protected CompletableFuture<OperationOutcome> startPreprocessorAsync() {
89 ControlLoopOperationParams cqParams = params.toBuilder().actor(AaiConstants.ACTOR_NAME)
90 .operation(AaiCqResponse.OPERATION).payload(null).retry(null).timeoutSec(null).build();
92 // run Custom Query, extract the VF count, and then run the Guard
95 return sequence(() -> params.getContext().obtain(AaiCqResponse.CONTEXT_KEY, cqParams),
96 this::obtainVfCount, this::startGuardAsync);
101 protected Map<String, Object> makeGuardPayload() {
102 Map<String, Object> payload = super.makeGuardPayload();
104 // run guard with the proposed vf count
105 payload.put(PAYLOAD_KEY_VF_COUNT, getVfCount() - 1);
111 protected CompletableFuture<OperationOutcome> startOperationAsync(int attempt, OperationOutcome outcome) {
113 // starting a whole new attempt - reset the count
116 Pair<String, SoRequest> pair = makeRequest();
117 SoRequest request = pair.getRight();
118 String url = getPath() + pair.getLeft();
120 String strRequest = prettyPrint(request);
121 logMessage(EventType.OUT, CommInfrastructure.REST, url, strRequest);
123 Map<String, Object> headers = createSimpleHeaders();
126 return handleResponse(outcome, url,
127 callback -> delete(url, headers, MediaType.APPLICATION_JSON, strRequest, callback));
132 * Issues an HTTP "DELETE" request, containing a request body, using the java built-in
133 * HttpClient, as the JerseyClient does not support it. This will add the content-type
134 * and authorization headers, so they should not be included within "headers".
136 * @param <Q> request type
137 * @param uri URI suffix, to be appended to the URI prefix
138 * @param headers headers to be included
139 * @param contentType content type of the request
140 * @param request request to be posted
141 * @param callback response callbacks
142 * @return a future to await the response. Note: it's untested whether canceling this
143 * future will actually cancel the underlying HTTP request
145 protected <Q> CompletableFuture<Response> delete(String uri, Map<String, Object> headers, String contentType,
146 String request, InvocationCallback<Response> callback) {
147 // TODO move to HttpOperation
149 final String url = getClient().getBaseUrl() + uri;
151 Builder builder = HttpRequest.newBuilder(URI.create(url));
152 builder = builder.header("Content-type", contentType);
153 builder = addAuthHeader(builder);
155 for (Entry<String, Object> header : headers.entrySet()) {
156 builder = builder.header(header.getKey(), header.getValue().toString());
159 PipelineControllerFuture<Response> controller = new PipelineControllerFuture<>();
161 HttpRequest req = builder.method("DELETE", BodyPublishers.ofString(request)).build();
163 CompletableFuture<HttpResponse<String>> future = makeHttpClient().sendAsync(req, BodyHandlers.ofString());
165 // propagate "cancel" to the future
166 controller.add(future);
168 future.thenApply(response -> new RestManagerResponse(response.statusCode(), response.body(), makeCoder()))
169 .whenComplete((resp, thrown) -> {
170 if (thrown != null) {
171 callback.failed(thrown);
172 controller.completeExceptionally(thrown);
174 callback.completed(resp);
175 controller.complete(resp);
183 * Adds the authorization header to the HTTP request, if configured.
185 * @param builder request builder to which the header should be added
186 * @return the builder
188 protected Builder addAuthHeader(Builder builder) {
189 // TODO move to HttpOperation
190 final HttpClient client = getClient();
191 String username = client.getUserName();
192 if (StringUtils.isBlank(username)) {
196 String password = client.getPassword();
197 if (password == null) {
201 String encoded = username + ":" + password;
202 encoded = Base64.getEncoder().encodeToString(encoded.getBytes(StandardCharsets.UTF_8));
203 return builder.header("Authorization", "Basic " + encoded);
207 * Decrements the VF count that's stored in the context.
210 protected void successfulCompletion() {
211 setVfCount(getVfCount() - 1);
217 * @return a pair containing the request URL and the new request
219 protected Pair<String, SoRequest> makeRequest() {
220 final AaiCqResponse aaiCqResponse = params.getContext().getProperty(AaiCqResponse.CONTEXT_KEY);
221 final SoModelInfo soModelInfo = prepareSoModelInfo();
222 final GenericVnf vnfItem = getVnfItem(aaiCqResponse, soModelInfo);
223 final ServiceInstance vnfServiceItem = getServiceInstance(aaiCqResponse);
224 final Tenant tenantItem = getDefaultTenant(aaiCqResponse);
225 final CloudRegion cloudRegionItem = getDefaultCloudRegion(aaiCqResponse);
227 SoRequest request = new SoRequest();
228 request.setOperationType(SoOperationType.DELETE_VF_MODULE);
232 // Do NOT send SO the requestId, they do not support this field
234 SoRequestDetails details = new SoRequestDetails();
235 request.setRequestDetails(details);
236 details.setRelatedInstanceList(null);
237 details.setConfigurationParameters(null);
239 // cloudConfiguration
240 details.setCloudConfiguration(constructCloudConfigurationCq(tenantItem, cloudRegionItem));
243 details.setModelInfo(soModelInfo);
246 details.setRequestInfo(constructRequestInfo());
249 * TODO the legacy SO code always passes null for the last argument, though it
250 * should be passing the vfModuleInstanceId
254 String path = PATH_PREFIX + vnfServiceItem.getServiceInstanceId() + "/vnfs/" + vnfItem.getVnfId()
257 return Pair.of(path, request);
260 // these may be overridden by junit tests
262 protected java.net.http.HttpClient makeHttpClient() {
263 return java.net.http.HttpClient.newHttpClient();