blob: bde04ba3482a71f19e1ca5a2e2c3770b66f2caeb [file] [log] [blame]
SANDHYA.JS3d81a282022-05-02 08:25:39 +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: SANDHYA JS (sandhya.j@tataelxsi.co.in)
17*/
18/**
19 * @file StartStopRebuild Component
20 */
SANDHYA.JS0a34dfa2023-04-25 23:59:41 +053021import { isNullOrUndefined } from 'util';
SANDHYA.JS3d81a282022-05-02 08:25:39 +053022import { HttpHeaders } from '@angular/common/http';
23import { Component, Injector, Input, OnInit } from '@angular/core';
24import { AbstractControl, FormBuilder, FormGroup, Validators } from '@angular/forms';
25import { Router } from '@angular/router';
26import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap';
27import { APIURLHEADER, ERRORDATA, MODALCLOSERESPONSEDATA, URLPARAMS } from 'CommonModel';
28import { environment } from 'environment';
29import { StartStopRebuild } from 'NSInstanceModel';
30import { RestService } from 'RestService';
31import { SharedService } from 'SharedService';
SANDHYA.JS3d81a282022-05-02 08:25:39 +053032import { DF, VNFD } from 'VNFDModel';
33import { VDUR, VNFInstanceDetails } from 'VNFInstanceModel';
34
35/**
36 * Creating component
37 * @Component takes StartStopRebuildComponent.html as template url
38 */
39@Component({
40 selector: 'app-start-stop-rebuild',
41 templateUrl: './StartStopRebuildComponent.html',
42 styleUrls: ['./StartStopRebuildComponent.scss']
43})
44export class StartStopRebuildComponent implements OnInit {
45 /** To inject services @public */
46 public injector: Injector;
47 /** Instance for active modal service @public */
48 public activeModal: NgbActiveModal;
49 /** Check the loading results @public */
50 public isLoadingResults: Boolean = false;
51 /** Give the message for the loading @public */
52 public message: string = 'PLEASEWAIT';
53 /** FormGroup instance added to the form @ html @public */
54 public startForm: FormGroup;
55 /** Items for the memberVNFIndex @public */
56 public memberTypes: {}[];
57 /** Contains MemberVNFIndex values @public */
58 public memberVnfIndex: {}[] = [];
59 /** Contains vnfInstanceId of the selected MemberVnfIndex @public */
60 public instanceId: string;
61 /** Items for vduId & countIndex @public */
62 public vdu: {}[];
63 /** Selected VNFInstanceId @public */
64 public selectedvnfId: string = '';
65 /** Check day1-2 operation @public */
66 public 'day1-2': boolean;
67 /** Array holds VNFR Data filtered with nsr ID @public */
68 public nsIdFilteredData: {}[] = [];
69 /** Form valid on submit trigger @public */
70 public submitted: boolean = false;
SANDHYA.JSbc5d33e2022-08-25 08:19:13 +053071 /** Contains vduId @public */
72 public vduId: {};
73 /** Items for countIndex @public */
74 public countIndex: {}[];
SANDHYA.JS3d81a282022-05-02 08:25:39 +053075 /** Input contains Modal dialog component Instance @public */
76 @Input() public instanceType: string;
77 /** Input contains Modal dialog component Instance @public */
78 @Input() public instanceTitle: string;
79 /** Input contains component objects @private */
80 @Input() private params: URLPARAMS;
81 /** FormBuilder instance added to the formBuilder @private */
82 private formBuilder: FormBuilder;
83 /** Instance of the rest service @private */
84 private restService: RestService;
85 /** Controls the header form @private */
86 private headers: HttpHeaders;
87 /** Contains all methods related to shared @private */
88 private sharedService: SharedService;
89 /** Holds the instance of AuthService class of type AuthService @private */
90 private router: Router;
91 constructor(injector: Injector) {
92 this.injector = injector;
93 this.restService = this.injector.get(RestService);
94 this.activeModal = this.injector.get(NgbActiveModal);
95 this.formBuilder = this.injector.get(FormBuilder);
96 this.sharedService = this.injector.get(SharedService);
97 this.router = this.injector.get(Router);
98 }
99 /** convenience getter for easy access to form fields */
100 get f(): FormGroup['controls'] { return this.startForm.controls; }
101 /**
102 * Lifecyle Hooks the trigger before component is instantiate
103 */
104 public ngOnInit(): void {
105 this.initializeForm();
106 this.getMemberVnfIndex();
107 this.headers = new HttpHeaders({
108 'Content-Type': 'application/json',
109 Accept: 'application/json',
110 'Cache-Control': 'no-cache, no-store, must-revalidate, max-age=0'
111 });
112 }
113 /** Initialize start, stop or rebuild Forms @public */
114 public initializeForm(): void {
115 this.startForm = this.formBuilder.group({
116 memberVnfIndex: [null, [Validators.required]],
117 vduId: [null, [Validators.required]],
118 countIndex: [null, [Validators.required]]
119 });
120 }
121
122 /** Getting MemberVnfIndex using VNFInstances API @public */
123 public getMemberVnfIndex(): void {
124 const vnfInstanceData: {}[] = [];
125 this.restService.getResource(environment.VNFINSTANCES_URL).subscribe((vnfInstancesData: VNFInstanceDetails[]): void => {
126 vnfInstancesData.forEach((vnfData: VNFInstanceDetails): void => {
127 const vnfDataObj: {} =
128 {
129 VNFD: vnfData['vnfd-ref'],
130 VNFInstanceId: vnfData._id,
131 MemberIndex: vnfData['member-vnf-index-ref'],
132 NS: vnfData['nsr-id-ref'],
133 VNFID: vnfData['vnfd-id']
134 };
135 vnfInstanceData.push(vnfDataObj);
136 });
137 const nsId: string = 'NS';
SANDHYA.JS0a34dfa2023-04-25 23:59:41 +0530138 // eslint-disable-next-line security/detect-object-injection
SANDHYA.JS3d81a282022-05-02 08:25:39 +0530139 this.nsIdFilteredData = vnfInstanceData.filter((vnfdData: {}[]): boolean => vnfdData[nsId] === this.params.id);
140 this.nsIdFilteredData.forEach((resVNF: {}[]): void => {
141 const memberIndex: string = 'MemberIndex';
142 const vnfinstanceID: string = 'VNFInstanceId';
143 const assignMemberIndex: {} = {
SANDHYA.JS0a34dfa2023-04-25 23:59:41 +0530144 // eslint-disable-next-line security/detect-object-injection
SANDHYA.JS3d81a282022-05-02 08:25:39 +0530145 id: resVNF[memberIndex],
SANDHYA.JS0a34dfa2023-04-25 23:59:41 +0530146 // eslint-disable-next-line security/detect-object-injection
SANDHYA.JS3d81a282022-05-02 08:25:39 +0530147 vnfinstanceId: resVNF[vnfinstanceID]
148 };
149 this.memberVnfIndex.push(assignMemberIndex);
150 });
151 this.memberTypes = this.memberVnfIndex;
152 this.isLoadingResults = false;
153 }, (error: ERRORDATA): void => {
154 this.restService.handleError(error, 'get');
155 this.isLoadingResults = false;
156 });
157 }
158
159 /** Getting vdu-id & count-index from VNFInstance API */
160 public getVdu(id: string): void {
161 const vnfInstanceData: {}[] = [];
SANDHYA.JS3d81a282022-05-02 08:25:39 +0530162 this.getFormControl('vduId').setValue(null);
163 this.getFormControl('countIndex').setValue(null);
164 if (!isNullOrUndefined(id)) {
165 this.restService.getResource(environment.VNFINSTANCES_URL + '/' + id).
166 subscribe((vnfInstanceDetail: VNFInstanceDetails[]): void => {
167 this.instanceId = id;
168 this.selectedvnfId = vnfInstanceDetail['vnfd-ref'];
169 const VDU: string = 'vdur';
SANDHYA.JS0a34dfa2023-04-25 23:59:41 +0530170 // eslint-disable-next-line security/detect-object-injection
SANDHYA.JS3d81a282022-05-02 08:25:39 +0530171 if (vnfInstanceDetail[VDU] !== undefined) {
SANDHYA.JS0a34dfa2023-04-25 23:59:41 +0530172 // eslint-disable-next-line security/detect-object-injection
SANDHYA.JS3d81a282022-05-02 08:25:39 +0530173 vnfInstanceDetail[VDU].forEach((vdu: VDUR): void => {
174 const vnfInstanceDataObj: {} =
175 {
176 'count-index': vdu['count-index'],
177 VDU: vdu['vdu-id-ref']
178
179 };
180 vnfInstanceData.push(vnfInstanceDataObj);
181 });
182 this.vdu = vnfInstanceData;
SANDHYA.JSbc5d33e2022-08-25 08:19:13 +0530183 const vduName: string = 'VDU';
184 this.vduId = this.vdu.filter((vdu: {}, index: number, self: {}[]): {} =>
185 index === self.findIndex((t: {}): {} => (
SANDHYA.JS0a34dfa2023-04-25 23:59:41 +0530186 // eslint-disable-next-line security/detect-object-injection
SANDHYA.JSbc5d33e2022-08-25 08:19:13 +0530187 t[vduName] === vdu[vduName]
188 ))
189 );
SANDHYA.JS3d81a282022-05-02 08:25:39 +0530190 }
191 this.checkDay12Operation(this.selectedvnfId);
192 }, (error: ERRORDATA): void => {
193 this.restService.handleError(error, 'get');
194 this.isLoadingResults = false;
195 });
196 }
197 }
198
SANDHYA.JSbc5d33e2022-08-25 08:19:13 +0530199 /** Getting count-index by filtering id */
200 public getCountIndex(id: string): void {
201 const VDU: string = 'VDU';
SANDHYA.JS0a34dfa2023-04-25 23:59:41 +0530202 // eslint-disable-next-line security/detect-object-injection
SANDHYA.JSbc5d33e2022-08-25 08:19:13 +0530203 this.countIndex = this.vdu.filter((vnfdData: {}[]): boolean => vnfdData[VDU] === id);
204 }
205
SANDHYA.JS3d81a282022-05-02 08:25:39 +0530206 /** To check primitve actions from VNFR */
207 public checkDay12Operation(id: string): void {
208 const apiUrl: string = environment.VNFPACKAGES_URL + '?id=' + id;
209 this.restService.getResource(apiUrl).subscribe((vnfdInfo: VNFD[]): void => {
210 const vnfInstances: VNFD = vnfdInfo[0];
211 if (!isNullOrUndefined(vnfInstances.df)) {
212 vnfInstances.df.forEach((df: DF): void => {
213 if (df['lcm-operations-configuration'] !== undefined) {
214 if (df['lcm-operations-configuration']['operate-vnf-op-config']['day1-2'] !== undefined) {
215 this['day1-2'] = true;
216 }
217 } else {
218 this['day1-2'] = false;
219 }
220 });
221 }
222 }, (error: ERRORDATA): void => {
223 this.isLoadingResults = false;
224 this.restService.handleError(error, 'get');
225 });
226 }
227 /** Check Instance type is start or stop or rebuild and proceed action */
228 public instanceCheck(instanceType: string): void {
229 this.submitted = true;
230 this.sharedService.cleanForm(this.startForm);
231 if (this.startForm.invalid) { return; } // Proceed, onces form is valid
232 if (instanceType === 'start') {
233 const startPayload: StartStopRebuild = {
234 updateType: 'OPERATE_VNF',
235 operateVnfData: {
236 vnfInstanceId: this.instanceId,
237 changeStateTo: 'start',
238 additionalParam: {
239 'run-day1': false,
240 vdu_id: this.startForm.value.vduId,
241 'count-index': this.startForm.value.countIndex
242 }
243 }
244 };
245 this.startInitialization(startPayload);
246 } else if (instanceType === 'stop') {
247 const stopPayload: StartStopRebuild = {
248 updateType: 'OPERATE_VNF',
249 operateVnfData: {
250 vnfInstanceId: this.instanceId,
251 changeStateTo: 'stop',
252 additionalParam: {
253 'run-day1': false,
254 vdu_id: this.startForm.value.vduId,
255 'count-index': this.startForm.value.countIndex
256 }
257 }
258 };
259 this.startInitialization(stopPayload);
260 } else {
261 const rebuildPayload: StartStopRebuild = {
262 updateType: 'OPERATE_VNF',
263 operateVnfData: {
264 vnfInstanceId: this.instanceId,
265 changeStateTo: 'rebuild',
266 additionalParam: {
267 'run-day1': (this['day1-2'] === true) ? true : false,
268 vdu_id: this.startForm.value.vduId,
269 'count-index': this.startForm.value.countIndex
270 }
271 }
272 };
273 this.startInitialization(rebuildPayload);
274 }
275 }
276
277 /** Initialize the start, stop or rebuild operation @public */
278 public startInitialization(startPayload: object): void {
279 this.isLoadingResults = true;
280 const apiURLHeader: APIURLHEADER = {
281 url: environment.NSDINSTANCES_URL + '/' + this.params.id + '/update',
282 httpOptions: { headers: this.headers }
283 };
284 const modalData: MODALCLOSERESPONSEDATA = {
285 message: 'Done'
286 };
287 this.restService.postResource(apiURLHeader, startPayload).subscribe((result: {}): void => {
288 this.activeModal.close(modalData);
SANDHYA.JS0a34dfa2023-04-25 23:59:41 +0530289 this.router.navigate(['/instances/ns/history-operations/' + this.params.id]).catch((): void => {
290 // Catch Navigation Error
291 });
SANDHYA.JS3d81a282022-05-02 08:25:39 +0530292 }, (error: ERRORDATA): void => {
293 this.restService.handleError(error, 'post');
294 this.isLoadingResults = false;
295 });
296 }
297
298 /** Used to get the AbstractControl of controlName passed @private */
299 private getFormControl(controlName: string): AbstractControl {
SANDHYA.JS0a34dfa2023-04-25 23:59:41 +0530300 // eslint-disable-next-line security/detect-object-injection
SANDHYA.JS3d81a282022-05-02 08:25:39 +0530301 return this.startForm.controls[controlName];
302 }
303}