752c39a0a6cfe8d2e4b0b62ade11e0d86fcc56ca
[so.git] / bpmn / so-bpmn-tasks / src / main / java / org / onap / so / bpmn / infrastructure / flowspecific / tasks / CloudSiteCatalogUtils.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22 package org.onap.so.bpmn.infrastructure.flowspecific.tasks;
23
24 import java.util.Optional;
25
26 import org.camunda.bpm.engine.delegate.DelegateExecution;
27 import org.onap.so.client.exception.ExceptionBuilder;
28 import org.onap.so.db.catalog.client.CatalogDbClient;
29 import org.onap.so.db.catalog.beans.CloudSite;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32 import org.springframework.beans.factory.annotation.Autowired;
33 import org.springframework.stereotype.Component;
34
35 @Component
36 public class CloudSiteCatalogUtils {
37
38         private static final Logger logger = LoggerFactory.getLogger(CloudSiteCatalogUtils.class);
39         @Autowired
40         private ExceptionBuilder exceptionUtil;
41         
42         @Autowired
43         private CatalogDbClient catalogDbClient;
44         
45         
46         public void getIdentityUrlFromCloudSite(DelegateExecution execution) {
47                 String cloudRegionId = (String) execution.getVariable("lcpCloudRegionId");
48         
49                 if (cloudRegionId != null) {
50                         Optional<CloudSite> cloudSite = getCloudSite(cloudRegionId);
51                         if (!cloudSite.isPresent()) {
52                                 logger.debug("Cloud Region with cloudRegionId {} not found in Catalog DB", cloudRegionId);
53                                 exceptionUtil.buildAndThrowWorkflowException(execution, 404, "Cloud Region with cloudRegionId " + cloudRegionId + " not found in Catalog DB");
54                         }
55                         
56                         if (cloudSite.get().getIdentityService() == null)        {
57                                 logger.debug("No identityService found for Cloud Region with cloudRegionId {} in Catalog DB", cloudRegionId);
58                                 exceptionUtil.buildAndThrowWorkflowException(execution, 404, "No identityService found for Cloud Region with cloudRegionId " + cloudRegionId + " in Catalog DB");
59                         }                       
60                         String identityUrl = cloudSite.get().getIdentityService().getIdentityUrl();
61                         
62                         logger.debug("identityUrl from Catalog DB is: {}", identityUrl);
63                         execution.setVariable("identityUrl", identityUrl);
64                 }
65         }
66         
67         protected Optional<CloudSite> getCloudSite(String id) {
68                 if (id == null) {
69                         return Optional.empty();
70                 }
71                 CloudSite cloudSite = catalogDbClient.getCloudSite(id);
72
73                 if (cloudSite != null) {
74                         return Optional.of(cloudSite);
75                 } else {
76                         return(Optional.of(catalogDbClient.getCloudSiteByClliAndAicVersion(id,"2.5")));                 
77                 }
78         }
79 }