blob: 5f9d5e33a70a3233b0f8452b9d3292b7f1537f44 [file] [log] [blame]
kumaran.m3b4814a2020-05-01 19:48:54 +05301/*
2 Copyright 2020 TATA ELXSI
3
4 Licensed under the Apache License, Version 2.0 (the 'License');
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15
16 Author: KUMARAN M (kumaran.m@tataelxsi.co.in), RAJESH S (rajesh.s@tataelxsi.co.in), BARATH KUMAR R (barath.r@tataelxsi.co.in)
17*/
18/**
19 * @file NS InstancesAction Component
20 */
21import { ChangeDetectionStrategy, ChangeDetectorRef, Component, Injector } from '@angular/core';
22import { Router } from '@angular/router';
23import { NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap';
24import { TranslateService } from '@ngx-translate/core';
25import { NotifierService } from 'angular-notifier';
26import { ERRORDATA, MODALCLOSERESPONSEDATA } from 'CommonModel';
27import { DeleteComponent } from 'DeleteComponent';
28import { environment } from 'environment';
29import { NSDDetails } from 'NSDModel';
30import { NSDInstanceData } from 'NSInstanceModel';
31import { NSPrimitiveComponent } from 'NSPrimitiveComponent';
SANDHYA.JS99144582022-04-27 17:22:35 +053032import { NsUpdateComponent } from 'NsUpdateComponent';
kumaran.m3b4814a2020-05-01 19:48:54 +053033import { RestService } from 'RestService';
Barath Kumar R07698ab2021-03-30 11:50:42 +053034import { forkJoin, Observable } from 'rxjs';
35import { ScalingComponent } from 'ScalingComponent';
kumaran.m3b4814a2020-05-01 19:48:54 +053036import { SharedService } from 'SharedService';
37import { ShowInfoComponent } from 'ShowInfoComponent';
SANDHYA.JS3d81a282022-05-02 08:25:39 +053038import { StartStopRebuildComponent } from 'StartStopRebuildComponent';
Barath Kumar R07698ab2021-03-30 11:50:42 +053039import { isNullOrUndefined } from 'util';
SANDHYA.JS017df362022-05-02 06:57:11 +053040import { VerticalScalingComponent } from 'VerticalScalingComponent';
SANDHYA.JSfced3d42022-04-28 20:28:17 +053041import { VmMigrationComponent } from 'VmMigrationComponent';
Barath Kumar R07698ab2021-03-30 11:50:42 +053042import { DF, VDU, VNFD } from 'VNFDModel';
kumaran.m3b4814a2020-05-01 19:48:54 +053043/**
44 * Creating component
45 * @Component takes NSInstancesActionComponent.html as template url
46 */
47@Component({
48 templateUrl: './NSInstancesActionComponent.html',
49 styleUrls: ['./NSInstancesActionComponent.scss'],
50 changeDetection: ChangeDetectionStrategy.OnPush
51})
52/** Exporting a class @exports NSInstancesActionComponent */
53export class NSInstancesActionComponent {
54 /** To get the value from the nspackage via valuePrepareFunction default Property of ng-smarttable @public */
55 public value: NSDInstanceData;
56
57 /** Invoke service injectors @public */
58 public injector: Injector;
59
60 /** Instance of the modal service @public */
61 public restService: RestService;
62
63 /** Config Status Check @public */
64 public configStatus: string;
65
66 /** Operational Status Check @public */
67 public operationalStatus: string;
68
Barath Kumar R07698ab2021-03-30 11:50:42 +053069 /** get Admin Details @public */
70 public getAdminDetails: {};
71
72 /** Scaling is accepted @public */
73 public isScalingPresent: boolean = false;
74
kumaran.m3b4814a2020-05-01 19:48:54 +053075 /** Check the loading results for loader status @public */
Barath Kumar R07698ab2021-03-30 11:50:42 +053076 public isLoadingNSInstanceAction: boolean = false;
kumaran.m3b4814a2020-05-01 19:48:54 +053077
78 /** Give the message for the loading @public */
79 public message: string = 'PLEASEWAIT';
80
Barath Kumar R07698ab2021-03-30 11:50:42 +053081 /** Assign the VNF Details @public */
82 public vnfDetails: VNFD[] = [];
83
Barath Kumar Rf2ae5462021-03-01 12:52:33 +053084 /** Contains instance ID @public */
85 public instanceID: string;
86
87 /** Contains operational dashboard view @public */
88 public isShowOperationalDashboard: boolean = false;
89
kumaran.m3b4814a2020-05-01 19:48:54 +053090 /** Instance of the modal service @private */
91 private modalService: NgbModal;
92
93 /** Holds teh instance of AuthService class of type AuthService @private */
94 private router: Router;
95
kumaran.m3b4814a2020-05-01 19:48:54 +053096 /** Contains all methods related to shared @private */
97 private sharedService: SharedService;
98
99 /** Notifier service to popup notification @private */
100 private notifierService: NotifierService;
101
102 /** Contains tranlsate instance @private */
103 private translateService: TranslateService;
104
105 /** Detect changes for the User Input */
106 private cd: ChangeDetectorRef;
107
108 /** Set timeout @private */
Barath Kumar R07698ab2021-03-30 11:50:42 +0530109 private timeOut: number = 100;
kumaran.m3b4814a2020-05-01 19:48:54 +0530110
111 constructor(injector: Injector) {
112 this.injector = injector;
113 this.modalService = this.injector.get(NgbModal);
114 this.restService = this.injector.get(RestService);
115 this.router = this.injector.get(Router);
116 this.sharedService = this.injector.get(SharedService);
117 this.notifierService = this.injector.get(NotifierService);
118 this.translateService = this.injector.get(TranslateService);
119 this.cd = this.injector.get(ChangeDetectorRef);
120 }
121
122 /**
123 * Lifecyle Hooks the trigger before component is instantiate
124 */
125 public ngOnInit(): void {
126 this.configStatus = this.value.ConfigStatus;
127 this.operationalStatus = this.value.OperationalStatus;
128 this.instanceID = this.value.identifier;
Barath Kumar R07698ab2021-03-30 11:50:42 +0530129 this.getAdminDetails = this.value.adminDetails;
Barath Kumar Rf2ae5462021-03-01 12:52:33 +0530130 this.isShowOperationalDashboard = !isNullOrUndefined(this.value.vcaStatus) ?
131 Object.keys(this.value.vcaStatus).length === 0 && typeof this.value.vcaStatus === 'object' : true;
kumaran.m3b4814a2020-05-01 19:48:54 +0530132 }
133
134 /** Shows information using modalservice @public */
135 public infoNs(): void {
136 this.modalService.open(ShowInfoComponent, { backdrop: 'static' }).componentInstance.params = {
137 id: this.instanceID,
138 page: 'ns-instance',
139 titleName: 'INSTANCEDETAILS'
140 };
141 }
142
143 /** Delete NS Instanace @public */
144 public deleteNSInstance(forceAction: boolean): void {
145 const modalRef: NgbModalRef = this.modalService.open(DeleteComponent, { backdrop: 'static' });
146 modalRef.componentInstance.params = { forceDeleteType: forceAction };
Barath Kumar R1a34b832021-03-05 11:32:19 +0530147 modalRef.result.then((result: MODALCLOSERESPONSEDATA): void => {
kumaran.m3b4814a2020-05-01 19:48:54 +0530148 if (result) {
149 this.sharedService.callData();
150 }
151 }).catch();
152 }
153
154 /** History of operations for an Instanace @public */
155 public historyOfOperations(): void {
Barath Kumar R1a34b832021-03-05 11:32:19 +0530156 this.router.navigate(['/instances/ns/history-operations/', this.instanceID]).catch((): void => {
kumaran.m3b4814a2020-05-01 19:48:54 +0530157 // Catch Navigation Error
158 });
159 }
160
161 /** NS Topology */
162 public nsTopology(): void {
Barath Kumar R1a34b832021-03-05 11:32:19 +0530163 this.router.navigate(['/instances/ns/', this.instanceID]).catch((): void => {
kumaran.m3b4814a2020-05-01 19:48:54 +0530164 // Catch Navigation Error
165 });
166 }
167
168 /** Exec NS Primitive @public */
169 public execNSPrimitiveModal(): void {
Barath Kumar Rd3ce0c52020-08-13 11:44:01 +0530170 this.modalService.open(NSPrimitiveComponent, { backdrop: 'static' }).componentInstance.params = {
kumaran.m3b4814a2020-05-01 19:48:54 +0530171 memberIndex: this.value.memberIndex,
Barath Kumar R54d693c2020-07-13 20:54:13 +0530172 nsConfig: this.value.nsConfig,
SANDHYA.JS1584e3e2022-10-31 20:11:50 +0530173 name: this.value.NsdName,
174 id: this.value.constituent
kumaran.m3b4814a2020-05-01 19:48:54 +0530175 };
176 }
177
178 /** Redirect to Grafana Metrics @public */
179 public metrics(): void {
Barath Kumar R07698ab2021-03-30 11:50:42 +0530180 this.isLoadingNSInstanceAction = true;
Barath Kumar R1a34b832021-03-05 11:32:19 +0530181 this.restService.getResource(environment.NSDINSTANCES_URL + '/' + this.instanceID).subscribe((nsData: NSDDetails[]): void => {
182 nsData['vnfd-id'].forEach((vnfdID: string[]): void => {
kumaran.m3b4814a2020-05-01 19:48:54 +0530183 this.restService.getResource(environment.VNFPACKAGES_URL + '/' + vnfdID)
Barath Kumar R1a34b832021-03-05 11:32:19 +0530184 .subscribe((vnfd: VNFD): void => {
185 vnfd.vdu.forEach((vduData: VDU): void => {
186 if (vduData['monitoring-parameter'] !== undefined && vduData['monitoring-parameter'].length > 0) {
Barath Kumar R07698ab2021-03-30 11:50:42 +0530187 this.isLoadingNSInstanceAction = false;
Barath Kumar R1a34b832021-03-05 11:32:19 +0530188 const location: string = environment.GRAFANA_URL + '/' + this.instanceID + '/osm-ns-metrics-metrics';
189 window.open(location);
190 } else {
Barath Kumar R07698ab2021-03-30 11:50:42 +0530191 this.isLoadingNSInstanceAction = false;
SANDHYA.JS9bae4602022-04-05 07:28:32 +0530192 this.notifierService.notify('error', this.translateService.instant('PAGE.NSMETRIC.METRICERROR'));
Barath Kumar R1a34b832021-03-05 11:32:19 +0530193 }
194 });
Barath Kumar R07698ab2021-03-30 11:50:42 +0530195 this.doChanges();
Barath Kumar R1a34b832021-03-05 11:32:19 +0530196 }, (error: ERRORDATA): void => {
kumaran.m3b4814a2020-05-01 19:48:54 +0530197 this.restService.handleError(error, 'get');
Barath Kumar R07698ab2021-03-30 11:50:42 +0530198 this.isLoadingNSInstanceAction = false;
kumaran.m3b4814a2020-05-01 19:48:54 +0530199 });
200 });
Barath Kumar R1a34b832021-03-05 11:32:19 +0530201 }, (error: ERRORDATA): void => {
kumaran.m3b4814a2020-05-01 19:48:54 +0530202 this.restService.handleError(error, 'get');
Barath Kumar R07698ab2021-03-30 11:50:42 +0530203 this.isLoadingNSInstanceAction = false;
kumaran.m3b4814a2020-05-01 19:48:54 +0530204 });
205 }
Barath Kumar R07698ab2021-03-30 11:50:42 +0530206
207 /**
208 * Do the manual scaling
209 * Here we are going to get a list of VNFD ID used in the instances
210 * and have this in array with URL created then pass to checkscaling method for forkjoin to get the data @public
211 */
212 public manualScaling(): void {
213 this.isLoadingNSInstanceAction = true;
214 const tempURL: Observable<{}>[] = [];
215 this.value.vnfID.forEach((id: string): void => {
216 const apiUrl: string = environment.VNFPACKAGESCONTENT_URL + '/' + id;
217 tempURL.push(this.restService.getResource(apiUrl));
218 });
219 this.checkScaling(tempURL);
220 }
221
222 /**
223 * Used to forkjoin to all the request to send parallely, get the data and check 'scaling-aspect' key is present @public
224 */
225 public checkScaling(URLS: Observable<{}>[]): void {
226 forkJoin(URLS).subscribe((data: VNFD[]): void => {
227 this.vnfDetails = data;
228 if (this.vnfDetails.length > 0) {
229 this.vnfDetails.forEach((vnfdData: VNFD): void => {
230 vnfdData.df.forEach((dfData: DF): void => {
231 if (!isNullOrUndefined(dfData['scaling-aspect']) && dfData['scaling-aspect'].length > 0) {
232 this.isScalingPresent = true;
233 }
234 });
235 });
236 }
237 this.isLoadingNSInstanceAction = false;
238 if (this.isScalingPresent) {
239 this.openScaling();
240 } else {
241 this.notifierService.notify('error', this.translateService.instant('SCALINGNOTFOUND'));
242 }
243 this.doChanges();
244 });
245 }
246
247 /** Open the scaling pop-up @public */
248 public openScaling(): void {
249 const modalRef: NgbModalRef = this.modalService.open(ScalingComponent, { backdrop: 'static' });
250 modalRef.componentInstance.params = {
251 id: this.instanceID,
252 vnfID: this.value.vnfID,
253 nsID: this.value['nsd-id'],
254 nsd: this.value.nsd,
255 data: this.vnfDetails
256 };
257 modalRef.result.then((result: MODALCLOSERESPONSEDATA): void => {
258 if (result) {
259 this.sharedService.callData();
260 }
261 }).catch();
262 }
263
SANDHYA.JSfced3d42022-04-28 20:28:17 +0530264 /** To open VM Migration in NS Instances */
265 public openVmMigration(): void {
266 const modalRef: NgbModalRef = this.modalService.open(VmMigrationComponent, { backdrop: 'static' });
267 modalRef.componentInstance.params = {
268 id: this.instanceID
269 };
270 modalRef.result.then((result: MODALCLOSERESPONSEDATA): void => {
271 if (result) {
272 this.sharedService.callData();
273 }
274 }).catch();
275 }
276
SANDHYA.JS99144582022-04-27 17:22:35 +0530277 /** To open the Ns Update pop-up */
278 public openNsUpdate(): void {
279 const modalRef: NgbModalRef = this.modalService.open(NsUpdateComponent, { backdrop: 'static' });
280 modalRef.componentInstance.params = {
281 id: this.instanceID
282 };
283 modalRef.result.then((result: MODALCLOSERESPONSEDATA): void => {
284 if (result) {
285 this.sharedService.callData();
286 }
287 }).catch();
288 }
289
SANDHYA.JS3d81a282022-05-02 08:25:39 +0530290 /** To open the Start, Stop & Rebuild pop-up */
291 public openStart(actionType: string): void {
292 const modalRef: NgbModalRef = this.modalService.open(StartStopRebuildComponent, { backdrop: 'static' });
293 modalRef.componentInstance.params = {
294 id: this.instanceID
295 };
296 if (actionType === 'start') {
297 modalRef.componentInstance.instanceTitle = this.translateService.instant('START');
298 } else if (actionType === 'stop') {
299 modalRef.componentInstance.instanceTitle = this.translateService.instant('STOP');
300 } else {
301 modalRef.componentInstance.instanceTitle = this.translateService.instant('REBUILD');
302 }
303 modalRef.componentInstance.instanceType = actionType;
304 modalRef.result.then((result: MODALCLOSERESPONSEDATA): void => {
305 if (result) {
306 this.sharedService.callData();
307 }
308 }).catch();
309 }
310
SANDHYA.JS017df362022-05-02 06:57:11 +0530311 /** To open the vertical Scaling pop-up */
312 public openVerticalScaling(): void {
313 const modalRef: NgbModalRef = this.modalService.open(VerticalScalingComponent, { backdrop: 'static' });
314 modalRef.componentInstance.params = {
315 id: this.instanceID
316 };
317 modalRef.result.then((result: MODALCLOSERESPONSEDATA): void => {
318 if (result) {
319 this.sharedService.callData();
320 }
321 }).catch();
322 }
323
Barath Kumar R07698ab2021-03-30 11:50:42 +0530324 /**
325 * Check any changes in the child component @public
326 */
327 public doChanges(): void {
328 setTimeout((): void => {
329 this.cd.detectChanges();
330 }, this.timeOut);
331 }
kumaran.m3b4814a2020-05-01 19:48:54 +0530332}