Merge "Fix runtime bugs in bpmn groovy"
[so.git] / adapters / mso-openstack-adapters / src / main / java / org / onap / so / adapters / inventory / create / CreateAAIInventory.java
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
26 import org.onap.aai.domain.yang.LInterface;
27 import org.onap.so.adapters.audit.AAIObjectAudit;
28 import org.onap.so.adapters.audit.AAIObjectAuditList;
29 import org.onap.so.client.aai.AAIObjectType;
30 import org.onap.so.client.aai.AAIResourcesClient;
31 import org.onap.so.client.aai.entities.uri.AAIUriFactory;
32 import org.springframework.stereotype.Component;
33
34 @Component
35 public class CreateAAIInventory{
36         
37         private AAIResourcesClient aaiClient;
38
39         public void createInventory(AAIObjectAuditList auditList) throws InventoryException {   
40                 if(didAuditFailVserverLInterfaces(auditList)){
41                         throw new InventoryException("Audit failed for VServer or LInterface cannot write Sub-Interfaces");
42                 }
43                 auditList.getAuditList().parallelStream().filter(auditObject -> !auditObject.isDoesObjectExist() && AAIObjectType.SUB_L_INTERFACE.typeName().equals(auditObject.getAaiObjectType())).
44                 forEach(auditObject -> getAaiClient().createIfNotExists(AAIUriFactory.createResourceFromExistingURI(AAIObjectType.fromTypeName(auditObject.getAaiObjectType()), auditObject.getResourceURI()), Optional.of(auditObject.getAaiObject())));
45         }
46         
47         
48         /**
49          * @param auditHeatStackFailed
50          * @param auditList
51          * @return
52          */
53         protected boolean didAuditFailVserverLInterfaces(AAIObjectAuditList auditList) {
54                 Stream<AAIObjectAudit> issue = auditList.getAuditList().stream().filter(auditObject -> auditObject.getAaiObjectType().equals(AAIObjectType.VSERVER.typeName()) || auditObject.getAaiObjectType().equals(AAIObjectType.L_INTERFACE.typeName()));
55                 
56                 return issue.filter(auditObject -> !auditObject.isDoesObjectExist()).findFirst().map(v -> true).orElse(false);
57         }
58
59         protected AAIResourcesClient getAaiClient(){
60                 if(aaiClient == null)
61                         return new AAIResourcesClient();
62                 else
63                         return aaiClient;
64         }       
65         protected void setAaiClient(AAIResourcesClient aaiResource){
66                 aaiClient = aaiResource;
67         }
68 }