69e16986da7c83d9372a5c02d8de9a3d08c8b1f7
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2019 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
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
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=========================================================
19  */
20
21 package org.onap.so.adapters.inventory.create;
22
23 import java.util.Optional;
24 import java.util.stream.Stream;
25 import org.onap.so.client.aai.AAIObjectType;
26 import org.onap.so.client.aai.AAIResourcesClient;
27 import org.onap.so.client.aai.entities.uri.AAIUriFactory;
28 import org.onap.so.objects.audit.AAIObjectAudit;
29 import org.onap.so.objects.audit.AAIObjectAuditList;
30 import org.springframework.stereotype.Component;
31
32 @Component
33 public class CreateAAIInventory {
34
35     private AAIResourcesClient aaiClient;
36
37     public void createInventory(AAIObjectAuditList auditList) throws InventoryException {
38         if (didAuditFailVserverLInterfaces(auditList)) {
39             throw new InventoryException("Audit failed for VServer or LInterface cannot write Sub-Interfaces");
40         }
41         auditList.getAuditList().parallelStream()
42                 .filter(auditObject -> !auditObject.isDoesObjectExist()
43                         && AAIObjectType.SUB_L_INTERFACE.typeName().equals(auditObject.getAaiObjectType()))
44                 .forEach(auditObject -> getAaiClient().createIfNotExists(AAIUriFactory.createResourceFromExistingURI(
45                         AAIObjectType.fromTypeName(auditObject.getAaiObjectType()), auditObject.getResourceURI()),
46                         Optional.of(auditObject.getAaiObject())));
47     }
48
49
50     /**
51      * @param auditHeatStackFailed
52      * @param auditList
53      * @return
54      */
55     protected boolean didAuditFailVserverLInterfaces(AAIObjectAuditList auditList) {
56         Stream<AAIObjectAudit> issue = auditList.getAuditList().stream()
57                 .filter(auditObject -> auditObject.getAaiObjectType().equals(AAIObjectType.VSERVER.typeName())
58                         || auditObject.getAaiObjectType().equals(AAIObjectType.L_INTERFACE.typeName()));
59
60         return issue.filter(auditObject -> !auditObject.isDoesObjectExist()).findFirst().map(v -> true).orElse(false);
61     }
62
63     protected AAIResourcesClient getAaiClient() {
64         if (aaiClient == null)
65             return new AAIResourcesClient();
66         else
67             return aaiClient;
68     }
69
70     protected void setAaiClient(AAIResourcesClient aaiResource) {
71         aaiClient = aaiResource;
72     }
73 }