X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Fapp%2Fpackages%2Finstantiate-net-slice-template%2FInstantiateNetSliceTemplateComponent.ts;h=fb0abdab9b762d1e09ee051a7f3c277553dd6fbb;hb=0a34dfa32165036b380ec6ac493469b34007df0a;hp=330edf85eb39e1df4aa9f864b5e4303fb3d597ca;hpb=40cc37ef2bbc4aac5debc9dea0baeb6dbd87a2d7;p=osm%2FNG-UI.git diff --git a/src/app/packages/instantiate-net-slice-template/InstantiateNetSliceTemplateComponent.ts b/src/app/packages/instantiate-net-slice-template/InstantiateNetSliceTemplateComponent.ts index 330edf8..fb0abda 100644 --- a/src/app/packages/instantiate-net-slice-template/InstantiateNetSliceTemplateComponent.ts +++ b/src/app/packages/instantiate-net-slice-template/InstantiateNetSliceTemplateComponent.ts @@ -18,6 +18,7 @@ /** * @file Instantiate NS Modal Component. */ +import { isNullOrUndefined } from 'util'; import { HttpHeaders } from '@angular/common/http'; import { Component, ElementRef, Injector, OnInit, ViewChild } from '@angular/core'; import { FormBuilder, FormGroup, Validators } from '@angular/forms'; @@ -33,7 +34,6 @@ import { NetworkSliceData } from 'NetworkSliceModel'; import { NSICREATEPARAMS } from 'NSDModel'; import { RestService } from 'RestService'; import { SharedService } from 'SharedService'; -import { isNullOrUndefined } from 'util'; import { VimAccountDetails } from 'VimAccountModel'; /** * Creating component @@ -193,7 +193,6 @@ export class InstantiateNetSliceTemplateComponent implements OnInit { delete this.netSliceInstantiateForm.value.ssh_keys; } else { this.copySSHKey = JSON.parse(JSON.stringify(this.netSliceInstantiateForm.value.ssh_keys)); - // tslint:disable-next-line: no-backbone-get-set-outside-model this.netSliceInstantiateForm.get('ssh_keys').setValue(this.copySSHKey); } if (isNullOrUndefined(this.netSliceInstantiateForm.value.config) || this.netSliceInstantiateForm.value.config === '') { @@ -203,12 +202,14 @@ export class InstantiateNetSliceTemplateComponent implements OnInit { if (validJSON) { this.netSliceInstantiateForm.value.config = JSON.parse(this.netSliceInstantiateForm.value.config); Object.keys(this.netSliceInstantiateForm.value.config).forEach((item: string) => { + // eslint-disable-next-line security/detect-object-injection this.netSliceInstantiateForm.value[item] = this.netSliceInstantiateForm.value.config[item]; }); delete this.netSliceInstantiateForm.value.config; } else { const getConfigJson: string = jsyaml.load(this.netSliceInstantiateForm.value.config, { json: true }); Object.keys(getConfigJson).forEach((item: string) => { + // eslint-disable-next-line security/detect-object-injection this.netSliceInstantiateForm.value[item] = getConfigJson[item]; }); delete this.netSliceInstantiateForm.value.config; @@ -225,11 +226,12 @@ export class InstantiateNetSliceTemplateComponent implements OnInit { this.isLoadingResults = false; this.notifierService.notify('success', this.netSliceInstantiateForm.value.nsiName + this.translateService.instant('PAGE.NETSLICE.CREATEDSUCCESSFULLY')); - this.router.navigate(['/instances/netslice']).catch(); + this.router.navigate(['/instances/netslice']).catch((): void => { + // Catch Navigation Error + }); }, (error: ERRORDATA) => { this.restService.handleError(error, 'post'); if (!isNullOrUndefined(this.copySSHKey)) { - // tslint:disable-next-line: no-backbone-get-set-outside-model this.netSliceInstantiateForm.get('ssh_keys').setValue(this.copySSHKey); } this.isLoadingResults = false; @@ -241,7 +243,6 @@ export class InstantiateNetSliceTemplateComponent implements OnInit { if (files && files.length === 1) { this.sharedService.getFileString(files, 'pub').then((fileContent: string): void => { const getSSHJson: string = jsyaml.load(fileContent, { json: true }); - // tslint:disable-next-line: no-backbone-get-set-outside-model this.netSliceInstantiateForm.get('ssh_keys').setValue(getSSHJson); }).catch((err: string): void => { if (err === 'typeError') { @@ -266,7 +267,6 @@ export class InstantiateNetSliceTemplateComponent implements OnInit { if (fileFormat === 'yaml' || fileFormat === 'yml') { this.sharedService.getFileString(files, 'yaml').then((fileContent: string): void => { const getConfigJson: string = jsyaml.load(fileContent, { json: true }); - // tslint:disable-next-line: no-backbone-get-set-outside-model this.netSliceInstantiateForm.get('config').setValue(JSON.stringify(getConfigJson)); }).catch((err: string): void => { if (err === 'typeError') { @@ -280,7 +280,6 @@ export class InstantiateNetSliceTemplateComponent implements OnInit { } else if (fileFormat === 'json') { this.sharedService.getFileString(files, 'json').then((fileContent: string): void => { const getConfigJson: string = jsyaml.load(fileContent, { json: true }); - // tslint:disable-next-line: no-backbone-get-set-outside-model this.netSliceInstantiateForm.get('config').setValue(JSON.stringify(getConfigJson)); }).catch((err: string): void => { if (err === 'typeError') {