Merge changes from topics "VID-14", "VID-13", "VID-12"
[vid.git] / vid-app-common / src / main / java / org / onap / vid / job / command / CommandUtils.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 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.vid.job.command;
22
23 import org.apache.commons.lang3.StringUtils;
24 import org.onap.vid.aai.model.ModelVer;
25 import org.onap.vid.asdc.AsdcCatalogException;
26 import org.onap.vid.model.ServiceModel;
27 import org.onap.vid.services.AaiService;
28 import org.onap.vid.services.VidService;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.stereotype.Component;
31
32 @Component
33 public class CommandUtils {
34
35     private final VidService vidService;
36     private final AaiService aaiService;
37
38     @Autowired
39     public CommandUtils(VidService vidService, AaiService aaiService) {
40         this.vidService = vidService;
41         this.aaiService = aaiService;
42     }
43
44     public boolean isVfModuleBaseModule(String serviceModelUuid, String vfModuleModelUUID) throws AsdcCatalogException{
45         ServiceModel serviceModel =  getServiceModel(serviceModelUuid);
46
47         if (serviceModel.getVfModules() == null) {
48             throw createAsdcCatalogVfModuleModelUUIDNotFoundException(serviceModelUuid, vfModuleModelUUID);
49         }
50
51         return serviceModel.getVfModules()
52                 .values()
53                 .stream()
54                 .filter(vfModule -> StringUtils.equals(vfModule.getUuid(), vfModuleModelUUID))
55                 .findFirst()
56                 .orElseThrow(() -> createAsdcCatalogVfModuleModelUUIDNotFoundException(serviceModelUuid, vfModuleModelUUID))
57                 .getProperties()
58                 .getBaseModule();
59     }
60
61     public ServiceModel getServiceModel(String serviceModelUuid) throws AsdcCatalogException{
62         ServiceModel serviceModel =  vidService.getService(serviceModelUuid);
63
64         if (serviceModel==null) {
65             throw new AsdcCatalogException("Failed to retrieve model with uuid "+serviceModelUuid +" from SDC");
66         }
67
68         return serviceModel;
69     }
70
71     public String getNewestModelUuid(String serviceModelInvariantId)
72     {
73         ModelVer serviceModelLatestVersion = aaiService.getNewestModelVersionByInvariantId(serviceModelInvariantId);
74
75         return serviceModelLatestVersion.getModelVersionId();
76     }
77
78     private AsdcCatalogException createAsdcCatalogVfModuleModelUUIDNotFoundException(String serviceModelUuid, String vfModuleModelUUID) {
79         return new AsdcCatalogException("Failed to find vfModuleModelUUID: " + vfModuleModelUUID +
80                 "in model with uuid: " + serviceModelUuid);
81     }
82
83 }