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