get cloudOptionId from getHomingData
[vid.git] / vid-app-common / src / main / webapp / app / vid / scripts / modals / vf-module-homing-data-action / vf-module-homing-data-action.controller.js
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 "use strict";
22
23 var vfModuleActionModalController = function(COMPONENT, FIELD, $scope, $uibModal, CreationService,
24     MsoService, AaiService, DeleteResumeService, DataService, $uibModalInstance, action, vfModule, featureFlags) {
25
26
27     var _this = this;
28
29     $scope.action = action;
30     $scope.vfModuleName = vfModule.name;
31     $scope.volumeGroups = vfModule.volumeGroups;
32     $scope.lcpAndTenant = null;
33     $scope.regionSelection = {optionId: null, legacyRegion: null, tenant: null};
34     $scope.lcpRegionList = null;
35     $scope.isHomingData = false;
36     $scope.megaRegion = ['AAIAIC25'];
37     $scope.isSoftDeleteEnabled = vfModule.nodeStatus.toLowerCase() !== 'assigned' && action === COMPONENT.DELETE;
38
39     $scope.isResumeEnabled = action === COMPONENT.RESUME;
40     if ($scope.isResumeEnabled) {
41         $scope.action = 'Instantiate';
42     }
43
44     initHomingData();
45
46     function getLcpCloudRegionTenantList() {
47         AaiService.getLcpCloudRegionTenantList(DataService
48             .getGlobalCustomerId(), DataService.getServiceType(), function(
49             response) {
50             DataService.setCloudRegionTenantList(response);
51             $scope.lcpAndTenant = response;
52             $scope.isFeatureFlagCloudOwner = featureFlags.isOn(COMPONENT.FEATURE_FLAGS.FLAG_1810_CR_ADD_CLOUD_OWNER_TO_MSO_REQUEST);
53             $scope.lcpRegionList = _.uniqBy(response, 'cloudRegionOptionId');
54             $scope.vendorInCloudOwnerRegex = /^[^-]*-/;
55         });
56     }
57
58     function initHomingData() {
59         AaiService.getHomingData(DataService.getVnfInstanceId(), DataService.getVfModuleInstanceId())
60             .then(function (res) {
61                 if (res && res.data) {
62                     $scope.regionSelection.optionId = (res.data.cloudRegionOptionId);
63                     $scope.regionSelection.tenant = (res.data[COMPONENT.TENANT_ID]) ? res.data[COMPONENT.TENANT_ID] : null;
64                     $scope.isHomingData = $scope.regionSelection.optionId !== null && $scope.regionSelection.tenant !== null;
65                     $scope.isHomingData = $scope.isHomingData && (($scope.megaRegion).indexOf(res.data[COMPONENT.CLOUD_REGION_ID]) === -1);
66                 }
67
68                 if (!$scope.isHomingData) {
69                     getLcpCloudRegionTenantList();
70                 }
71             })
72             .catch(function (error) {
73                 getLcpCloudRegionTenantList();
74             });
75     }
76
77     function getLcpRegionId()  {
78         if(_.isEmpty($scope.regionSelection.legacyRegion)) {
79             return DataService.getCloudOwnerAndLcpCloudRegionFromOptionId($scope.regionSelection.optionId).cloudRegionId;
80         }
81         return $scope.regionSelection.legacyRegion;
82     }
83
84     $scope.deleteOrResume = function()  {
85
86         var msoParameterList = [({id: "lcpRegion", value: getLcpRegionId()})];
87         msoParameterList.push({id: "tenant", value: $scope.regionSelection.tenant});
88
89         var requestParams = {};
90         var requestDetails;
91         var msoType;
92         if ($scope.isResumeEnabled)  {
93             CreationService.initializeComponent(COMPONENT.VF_MODULE);
94             CreationService.setInventoryInfo();
95
96             var availableVolumeGroupList = $scope.volumeGroups;
97
98             if (availableVolumeGroupList && availableVolumeGroupList.length > 0) {
99                 var volumeGroupList = FIELD.PARAMETER.AVAILABLE_VOLUME_GROUP;
100                 volumeGroupList.value = _.map(availableVolumeGroupList, function (volumeGroup) {
101                     return volumeGroup.name;
102                 });
103                 msoParameterList.push(volumeGroupList);
104             }
105
106             requestDetails = CreationService.getMsoRequestDetails(msoParameterList);
107             requestParams.url = CreationService.getMsoUrl();
108             msoType = COMPONENT.MSO_CREATE_REQ;
109         }
110         else {
111             DeleteResumeService.initializeComponent(COMPONENT.VF_MODULE);
112
113             requestDetails = DeleteResumeService.getMsoRequestDetails(msoParameterList);
114             if(DeleteResumeService.isMacro === true)  {
115                 requestDetails.requestParameters.aLaCarte = false;
116             }
117             requestParams.url = DeleteResumeService.getMsoUrl();
118             msoType = COMPONENT.MSO_DELETE_REQ;
119         }
120
121         requestParams.requestDetails = requestDetails;
122         requestParams.userId = DataService.getLoggedInUserId();
123         $uibModalInstance.close({requestParams: requestParams, msoType: msoType});
124     };
125
126     $scope.softDelete = function()  {
127
128         var requestParams = {
129             tenantId: $scope.regionSelection.tenant,
130             lcpCloudRegionId: getLcpRegionId(),
131             serviceInstanceId: DataService.getServiceInstanceId(),
132             vnfInstanceId: DataService.getVnfInstanceId(),
133             vfModuleInstanceId: DataService.getVfModuleInstanceId()
134         };
135
136         requestParams.userId = DataService.getLoggedInUserId();
137         $uibModalInstance.close({requestParams : requestParams, msoType: COMPONENT.MSO_DEACTIVATE_AND_CLOUD_DELETE});
138     };
139
140     $scope.removeVendorFromCloudOwner = function(cloudOwner) {
141         return AaiService.removeVendorFromCloudOwner(cloudOwner)
142     };
143
144     $scope.selectedLcpRegionIsMegaRegion = function() {
145         if ($scope.regionSelection.optionId) {
146             let cloudRegionId = DataService.getCloudOwnerAndLcpCloudRegionFromOptionId($scope.regionSelection.optionId).cloudRegionId;
147             return ($scope.megaRegion).indexOf(cloudRegionId) > -1
148         } else {
149             return false;
150         }
151     };
152
153     $scope.cancel = function() {
154         $uibModalInstance.dismiss('cancel');
155     };
156
157 };
158
159 appDS2.controller("vfModuleActionModalController", [ "COMPONENT", "FIELD", "$scope", "$uibModal", "CreationService",
160      "MsoService", "AaiService", "DeleteResumeService", "DataService", "$uibModalInstance", "action", "vfModule", "featureFlags",
161     vfModuleActionModalController ]);