Fix create a service with SDC AID model
[sdc.git] / catalog-ui / src / app / view-models / workspace / tabs / general / general-view-model.ts
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 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 import * as _ from "lodash";
23 import {Dictionary} from "lodash";
24 import {
25     ComponentFactory,
26     ComponentState,
27     ComponentType,
28     DEFAULT_ICON,
29     EVENTS,
30     instantiationType,
31     ModalsHandler,
32     ResourceType,
33     ValidationUtils
34 } from "app/utils";
35 import {EventListenerService, ProgressService} from "app/services";
36 import {CacheService, ElementService, ModelService, ImportVSPService, OnboardingService} from "app/services-ng2";
37 import {Component, IAppConfigurtaion, ICsarComponent, IMainCategory, IMetadataKey, ISubCategory, IValidate, Resource, Service} from "app/models";
38 import {IWorkspaceViewModelScope} from "app/view-models/workspace/workspace-view-model";
39 import {CATEGORY_SERVICE_METADATA_KEYS, PREVIOUS_CSAR_COMPONENT} from "../../../../utils/constants";
40 import {Observable} from "rxjs";
41 import {Model} from "../../../../models/model";
42
43 export class Validation {
44     componentNameValidationPattern:RegExp;
45     contactIdValidationPattern:RegExp;
46     tagValidationPattern:RegExp;
47     VendorReleaseValidationPattern:RegExp;
48     VendorNameValidationPattern:RegExp;
49     VendorModelNumberValidationPattern:RegExp;
50     commentValidationPattern:RegExp;
51 }
52
53 export class componentCategories {//categories field bind to this obj in order to solve this bug: DE242059
54     selectedCategory:string;
55 }
56
57 export class componentModel {
58     selectedModel:string;
59 }
60
61 export interface IEnvironmentContext {
62     defaultValue:string;
63     validValues:Array<string>;
64 }
65
66 export interface IGeneralScope extends IWorkspaceViewModelScope {
67     validation:Validation;
68     editForm:ng.IFormController;
69     categories:Array<IMainCategory>;
70     environmentContextObj:IEnvironmentContext;
71     latestCategoryId:string;
72     latestVendorName:string;
73     importedFileExtension:any;
74     isCreate:boolean;
75     isShowFileBrowse:boolean;
76     isShowOnboardingSelectionBrowse:boolean;
77     importedToscaBrowseFileText:string;
78     importCsarProProgressKey:string;
79     browseFileLabel:string;
80     componentCategories:componentCategories;
81     componentModel:componentModel;
82     instantiationTypes:Array<instantiationType>;
83     isHiddenCategorySelected: boolean;
84     isModelRequired: boolean;
85
86     save():Promise<any>;
87     revert():void;
88     onImportFileChange():void;
89     validateField(field:any):boolean;
90     validateName(isInit:boolean):void;
91     calculateUnique(mainCategory:string, subCategory:string):string; // Build unique string from main and sub category
92     onVendorNameChange(oldVendorName:string):void;
93     convertCategoryStringToOneArray(category:string, subcategory:string):Array<IMainCategory>;
94     onCategoryChange():void;
95     onEcompGeneratedNamingChange():void;
96     onBaseTypeChange():void;
97     openOnBoardingModal():void;
98     initCategoreis():void;
99     initEnvironmentContext():void;
100     initInstantiationTypes():void;
101     initBaseTypes():void;
102     onInstantiationTypeChange():void;
103     updateIcon():void;
104     possibleToUpdateIcon():boolean;
105     initModel():void;
106     isVspImport(): boolean;
107 }
108
109 // tslint:disable-next-line:max-classes-per-file
110 export class GeneralViewModel {
111
112     static '$inject' = [
113         '$scope',
114         'Sdc.Services.CacheService',
115         'ComponentNameValidationPattern',
116         'ContactIdValidationPattern',
117         'TagValidationPattern',
118         'VendorReleaseValidationPattern',
119         'VendorNameValidationPattern',
120         'VendorModelNumberValidationPattern',
121         'CommentValidationPattern',
122         'ValidationUtils',
123         'sdcConfig',
124         '$state',
125         'ModalsHandler',
126         'EventListenerService',
127         'Notification',
128         'Sdc.Services.ProgressService',
129         '$interval',
130         '$filter',
131         '$timeout',
132         'OnboardingService',
133         'ComponentFactory',
134         'ImportVSPService',
135         'ElementService',
136         'ModelService',
137         '$stateParams'
138     ];
139
140     constructor(private $scope:IGeneralScope,
141                 private cacheService:CacheService,
142                 private ComponentNameValidationPattern:RegExp,
143                 private ContactIdValidationPattern:RegExp,
144                 private TagValidationPattern:RegExp,
145                 private VendorReleaseValidationPattern:RegExp,
146                 private VendorNameValidationPattern:RegExp,
147                 private VendorModelNumberValidationPattern:RegExp,
148                 private CommentValidationPattern:RegExp,
149                 private ValidationUtils:ValidationUtils,
150                 private sdcConfig:IAppConfigurtaion,
151                 private $state:ng.ui.IStateService,
152                 private ModalsHandler:ModalsHandler,
153                 private EventListenerService:EventListenerService,
154                 private Notification:any,
155                 private progressService:ProgressService,
156                 protected $interval:any,
157                 private $filter:ng.IFilterService,
158                 private $timeout:ng.ITimeoutService,
159                 private onBoardingService: OnboardingService,
160                 private ComponentFactory:ComponentFactory,
161                 private importVSPService: ImportVSPService,
162                 private elementService: ElementService,
163                 private modelService: ModelService,
164                 private $stateParams: any) {
165
166         this.initScopeValidation();
167         this.initScopeMethods();
168         this.initScope();
169     }
170
171
172
173
174     private initScopeValidation = ():void => {
175         this.$scope.validation = new Validation();
176         this.$scope.validation.componentNameValidationPattern = this.ComponentNameValidationPattern;
177         this.$scope.validation.contactIdValidationPattern = this.ContactIdValidationPattern;
178         this.$scope.validation.tagValidationPattern = this.TagValidationPattern;
179         this.$scope.validation.VendorReleaseValidationPattern = this.VendorReleaseValidationPattern;
180         this.$scope.validation.VendorNameValidationPattern = this.VendorNameValidationPattern;
181         this.$scope.validation.VendorModelNumberValidationPattern = this.VendorModelNumberValidationPattern;
182         this.$scope.validation.commentValidationPattern = this.CommentValidationPattern;
183     };
184
185     private loadOnboardingFileCache = (): Observable<Dictionary<Dictionary<string>>> => {
186         let onboardCsarFilesMap:Dictionary<Dictionary<string>>;
187         let onSuccess = (vsps:Array<ICsarComponent>) => {
188             onboardCsarFilesMap = {};
189             _.each(vsps, (vsp:ICsarComponent)=>{
190                 onboardCsarFilesMap[vsp.packageId] = onboardCsarFilesMap[vsp.packageId] || {};
191                 onboardCsarFilesMap[vsp.packageId][vsp.version] = vsp.vspName + " (" + vsp.version + ")";
192             });
193             this.cacheService.set('onboardCsarFilesMap', onboardCsarFilesMap);
194             return onboardCsarFilesMap;
195         };
196         let onError = (): void =>{
197             console.log("Error getting onboarding list");
198         };
199         return this.onBoardingService.getOnboardingVSPs().map(onSuccess, onError);
200     };
201
202     private setImportedFileText = ():void => {
203
204         if(!this.$scope.isShowOnboardingSelectionBrowse) return;
205
206         //these variables makes it easier to read this logic
207         let csarUUID:string = (<Resource>this.$scope.component).csarUUID;
208         let csarVersion:string = (<Resource>this.$scope.component).csarVersion;
209
210         let onboardCsarFilesMap:Dictionary<Dictionary<string>> = this.cacheService.get('onboardCsarFilesMap');
211         let assignFileName = ():void => {
212             if(this.$scope.component.vspArchived){
213                 this.$scope.importedToscaBrowseFileText = 'VSP is archived';
214             } else {
215                 if(this.$stateParams.componentCsar && this.$scope.component.lifecycleState === 'NOT_CERTIFIED_CHECKIN' && !this.$scope.isCreateMode()) {
216                     this.$scope.importedToscaBrowseFileText = this.$scope.originComponent.name + ' (' + (this.$scope.originComponent as Resource).csarVersion + ')';
217                 } else {
218                     this.$scope.importedToscaBrowseFileText = onboardCsarFilesMap[csarUUID][csarVersion];
219                 }
220             }
221         }
222
223
224         if(this.$scope.component.vspArchived || (onboardCsarFilesMap && onboardCsarFilesMap[csarUUID] && onboardCsarFilesMap[csarUUID][csarVersion])){ //check that the file name is already in cache
225             assignFileName();
226         } else {
227             this.loadOnboardingFileCache().subscribe((onboardingFiles) => {
228                 onboardCsarFilesMap = onboardingFiles;
229                 this.cacheService.set('onboardCsarFilesMap', onboardingFiles);
230                 assignFileName();
231             }, ()=> {});
232         }
233
234     }
235
236     isCreateModeAvailable(verifyObj:string): boolean {
237         var isCheckout:boolean = ComponentState.NOT_CERTIFIED_CHECKOUT === this.$scope.component.lifecycleState;
238         return this.$scope.isCreateMode() || (isCheckout && !verifyObj)
239     }
240
241     private initScope = ():void => {
242
243         this.$scope.importCsarProgressKey = "importCsarProgressKey";
244
245         this.$scope.browseFileLabel = (this.$scope.component.isResource() && ((<Resource>this.$scope.component).resourceType === ResourceType.VF || (<Resource>this.$scope.component).resourceType === 'SRVC')) ||  this.$scope.component.isService() ? 'Upload File:' : 'Upload VFC:';
246         this.$scope.progressService = this.progressService;
247         this.$scope.componentCategories = new componentCategories();
248         this.$scope.componentCategories.selectedCategory = this.$scope.component.selectedCategory;
249
250
251         // Init UIModel
252         this.$scope.component.tags = _.without(this.$scope.component.tags, this.$scope.component.name);
253
254         // Init categories
255         this.$scope.initCategoreis();
256
257         // Init Environment Context
258         this.$scope.initEnvironmentContext();
259
260         // Init Models
261         this.$scope.initModel();
262
263         // Init the decision if to show file browse.
264         this.$scope.isShowFileBrowse = false;
265         if (this.$scope.component.isResource()) {
266             let resource:Resource = <Resource>this.$scope.component;
267             console.log(resource.name + ": " + resource.csarUUID);
268             if (resource.importedFile) { // Component has imported file.
269                 this.$scope.isShowFileBrowse = true;
270             }
271             if (resource.resourceType === ResourceType.VF && !resource.csarUUID) {
272                 this.$scope.isShowFileBrowse = true;
273             }
274         } else if(this.$scope.component.isService()){
275             let service: Service = <Service>this.$scope.component;
276             console.log(service.name + ": " + service.csarUUID);
277             if (service.importedFile) { // Component has imported file.
278                 this.$scope.isShowFileBrowse = true;
279                 (<Service>this.$scope.component).serviceType = 'Service';
280             }
281             if (this.$scope.isEditMode() && service.serviceType == 'Service' && !service.csarUUID) {
282                 this.$scope.isShowFileBrowse = true;
283             }
284             // Init Instantiation types
285             this.$scope.initInstantiationTypes();
286             this.$scope.initBaseTypes();
287         }
288
289         if (this.cacheService.get(PREVIOUS_CSAR_COMPONENT)) { //keep the old component in the cache until checkout, so we dont need to pass it around
290             this.$scope.setOriginComponent(this.cacheService.get(PREVIOUS_CSAR_COMPONENT));
291             this.cacheService.remove(PREVIOUS_CSAR_COMPONENT);
292         }
293
294         if (this.$stateParams.componentCsar && !this.$scope.isCreateMode()) {
295             this.$scope.updateUnsavedFileFlag(true);
296             this.$scope.save();
297         }
298
299         if (this.$scope.component.isResource() &&
300             (this.$scope.component as Resource).resourceType === ResourceType.VF ||
301                 (this.$scope.component as Resource).resourceType === ResourceType.PNF && (this.$scope.component as Resource).csarUUID) {
302             this.$scope.isShowOnboardingSelectionBrowse = true;
303             this.setImportedFileText();
304         } else {
305             this.$scope.isShowOnboardingSelectionBrowse = false;
306         }
307
308
309         //init file extensions based on the file that was imported.
310         if (this.$scope.component.isResource() && (<Resource>this.$scope.component).importedFile) {
311             let fileName:string = (<Resource>this.$scope.component).importedFile.filename;
312             let fileExtension:string = fileName.split(".").pop();
313             if (this.sdcConfig.csarFileExtension.indexOf(fileExtension.toLowerCase()) !== -1) {
314                 this.$scope.importedFileExtension = this.sdcConfig.csarFileExtension;
315                 (<Resource>this.$scope.component).importedFile.filetype = "csar";
316             } else if (this.sdcConfig.toscaFileExtension.indexOf(fileExtension.toLowerCase()) !== -1) {
317                 (<Resource>this.$scope.component).importedFile.filetype = "yaml";
318                 this.$scope.importedFileExtension = this.sdcConfig.toscaFileExtension;
319             }
320             this.$scope.restoreFile = angular.copy((<Resource>this.$scope.originComponent).importedFile); //create backup
321         } else if (this.$scope.isEditMode() && (<Resource>this.$scope.component).resourceType === ResourceType.VF) {
322             this.$scope.importedFileExtension = this.sdcConfig.csarFileExtension;
323             //(<Resource>this.$scope.component).importedFile.filetype="csar";
324         }
325
326
327
328         this.$scope.setValidState(true);
329
330         this.$scope.calculateUnique = (mainCategory:string, subCategory:string):string => {
331             let uniqueId:string = mainCategory;
332             if (subCategory) {
333                 uniqueId += "_#_" + subCategory; // Set the select category combobox to show the selected category.
334             }
335             return uniqueId;
336         };
337
338         //TODO remove this after handling contact in UI
339         if (this.$scope.isCreateMode()) {
340             this.$scope.component.contactId = this.cacheService.get("user").userId;
341             this.$scope.originComponent.contactId = this.$scope.component.contactId;
342         }
343
344
345         this.$scope.$on('$destroy', () => {
346             this.EventListenerService.unRegisterObserver(EVENTS.ON_LIFECYCLE_CHANGE_WITH_SAVE);
347             this.EventListenerService.unRegisterObserver(EVENTS.ON_LIFECYCLE_CHANGE);
348         });
349
350     };
351
352     // Convert category string MainCategory_#_SubCategory to Array with one item (like the server except)
353     private convertCategoryStringToOneArray = ():IMainCategory[] => {
354         let tmp = this.$scope.component.selectedCategory.split("_#_");
355         let mainCategory = tmp[0];
356         let subCategory = tmp[1];
357
358         // Find the selected category and add the relevant sub category.
359         let selectedMainCategory:IMainCategory = <IMainCategory>_.find(this.$scope.categories, function (item) {
360             return item["name"] === mainCategory;
361
362         });
363
364         let mainCategoryClone = angular.copy(selectedMainCategory);
365         if (subCategory) {
366             let selectedSubcategory = <ISubCategory>_.find(selectedMainCategory.subcategories, function (item) {
367                 return item["name"] === subCategory;
368             });
369             mainCategoryClone['subcategories'] = [angular.copy(selectedSubcategory)];
370         }
371         let tmpSelected = <IMainCategory> mainCategoryClone;
372
373         let result:IMainCategory[] = [];
374         result.push(tmpSelected);
375
376         return result;
377     };
378
379     private updateComponentNameInBreadcrumbs = ():void => {
380         // update breadcrum after changing name
381         this.$scope.breadcrumbsModel[1].updateSelectedMenuItemText(this.$scope.component.getComponentSubType() + ': ' + this.$scope.component.name);
382         this.$scope.updateMenuComponentName(this.$scope.component.name);
383     };
384
385     //Find if a category is applicable for External API or not
386     private isHiddenCategory = (category: string) => {
387         let items: Array<any> = new Array<any>();
388         items = this.$scope.sdcMenu.component_workspace_menu_option[this.$scope.component.getComponentSubType()];
389         for(let index = 0; index < items.length; ++index) {
390             if ((items[index].hiddenCategories && items[index].hiddenCategories.indexOf(category) > -1)) {
391                 return true;
392             }
393         }
394         return false;
395     };
396
397     private filteredCategories = () => {
398         let tempCategories: Array<IMainCategory> = new Array<IMainCategory>();
399         this.$scope.categories.forEach((category) => {
400             if (!this.isHiddenCategory(category.name)
401                 && this.$scope.isCreateMode()
402             ) {
403                 tempCategories.push(category);
404             } else if ((ComponentState.NOT_CERTIFIED_CHECKOUT === this.$scope.component.lifecycleState)
405                 && !this.isHiddenCategory(this.$scope.component.selectedCategory)
406                 && !this.isHiddenCategory(category.name)
407             ) {
408                 tempCategories.push(category);
409             } else if ((ComponentState.NOT_CERTIFIED_CHECKOUT === this.$scope.component.lifecycleState)
410                 && this.isHiddenCategory(this.$scope.component.selectedCategory)) {
411                 tempCategories.push(category);
412             }
413         });
414
415         return tempCategories;
416     };    
417    
418     private initScopeMethods = ():void => {
419
420         this.$scope.initCategoreis = ():void => {
421             if (this.$scope.componentType === ComponentType.RESOURCE) {
422                 this.$scope.categories = this.cacheService.get('resourceCategories');
423
424             }
425             if (this.$scope.componentType === ComponentType.SERVICE) {
426                 this.$scope.categories = this.cacheService.get('serviceCategories');
427
428                 //Remove categories from dropdown applicable for External API
429                 if (this.$scope.isCreateMode() || (ComponentState.NOT_CERTIFIED_CHECKOUT === this.$scope.component.lifecycleState)) {
430                     this.$scope.categories = this.filteredCategories();
431                     //Flag to disbale category if service is created through External API
432                     this.$scope.isHiddenCategorySelected = this.isHiddenCategory(this.$scope.component.selectedCategory);
433                 }
434                 
435             }
436         };
437
438         this.$scope.initInstantiationTypes = ():void => {
439             if (this.$scope.componentType === ComponentType.SERVICE) {
440                 this.$scope.instantiationTypes = new Array();
441                 this.$scope.instantiationTypes.push(instantiationType.A_LA_CARTE);
442                 this.$scope.instantiationTypes.push(instantiationType.MACRO);
443                 var instantiationTypeField:string =(<Service>this.$scope.component).instantiationType;
444                 if (instantiationTypeField === ""){
445                     this.$scope.instantiationTypes.push("");
446                 }
447                 else if (this.isCreateModeAvailable(instantiationTypeField)) {
448                     (<Service>this.$scope.component).instantiationType = instantiationType.A_LA_CARTE;
449
450                 }
451             }
452         };
453
454         this.$scope.initBaseTypes = ():void => {
455             if (this.$scope.componentType === ComponentType.SERVICE && this.$scope.component && this.$scope.component.categories) {
456                      let modelName = this.$scope.component.model ? this.$scope.component.model : null;
457                  this.elementService.getCategoryBasetypes(this.$scope.component.categories[0].name, modelName).subscribe((data: BaseTypeResponse[]) => {
458                          this.$scope.baseTypes = []
459                      this.$scope.baseTypeVersions = []
460                      data.forEach(baseType => {
461                              this.$scope.baseTypes.push(baseType.toscaResourceName)
462                          if (baseType.toscaResourceName === this.$scope.component.derivedFromGenericType){
463                                  baseType.versions.reverse().forEach(version => this.$scope.baseTypeVersions.push(version));
464                      }});
465                  })
466             }
467         };
468
469         this.$scope.initModel = ():void => {
470             this.$scope.isModelRequired = false;
471             this.$scope.models = [];
472             this.$scope.defaultModelOption = 'SDC AID';
473             this.$scope.showDefaultModelOption = true;
474             if (this.$scope.isCreateMode() && this.$scope.isVspImport()) {
475                 if (this.$scope.component.componentMetadata.models) {
476                     this.$scope.isModelRequired = true;
477                     const modelOptions = this.$scope.component.componentMetadata.models;
478                     if (modelOptions.length == 1) {
479                         this.$scope.models = modelOptions;
480                         this.$scope.component.model = modelOptions[0];
481                         this.$scope.showDefaultModelOption = false;
482                     } else {
483                         this.$scope.models = modelOptions.sort();
484                         this.$scope.defaultModelOption = 'Select';
485                     }
486                 }
487                 return;
488             }
489
490             if (!this.$scope.isCreateMode() && this.$scope.isVspImport()){
491                 this.modelService.getModels().subscribe((modelsFound: Model[]) => {
492                     modelsFound.sort().forEach(model => {this.$scope.models.push(model.name)});
493                 });
494             } else {
495                 this.modelService.getModelsOfType("normative").subscribe((modelsFound: Model[]) => {
496                     modelsFound.sort().forEach(model => {this.$scope.models.push(model.name)});
497                 });
498             }
499         };
500
501         this.$scope.isVspImport = (): boolean => {
502             if (!this.$scope.component || !this.$scope.component.isResource()) {
503                 return false;
504             }
505
506             const resource = <Resource>this.$scope.component;
507             return resource.isCsarComponent();
508         }
509
510         this.$scope.initEnvironmentContext = ():void => {
511             if (this.$scope.componentType === ComponentType.SERVICE) {
512                 this.$scope.environmentContextObj = this.cacheService.get('UIConfiguration').environmentContext;
513                 var environmentContext:string =(<Service>this.$scope.component).environmentContext;
514                 // In creation new service OR check outing old service without environmentContext parameter - set default value
515                 if(this.isCreateModeAvailable(environmentContext)){
516                     (<Service>this.$scope.component).environmentContext = this.$scope.environmentContextObj.defaultValue;
517                 }
518             }
519         };
520
521         this.$scope.validateField = (field:any):boolean => {
522             if (field && field.$dirty && field.$invalid) {
523                 return true;
524             }
525             return false;
526         };
527
528         this.$scope.openOnBoardingModal = ():void => {
529             if(this.$scope.component.vspArchived) return;
530             let csarUUID = (<Resource>this.$scope.component).csarUUID;
531             let csarVersion = (<Resource>this.$scope.component).csarVersion;
532             this.importVSPService.openOnboardingModal(csarUUID, csarVersion).subscribe((result) => {
533                 this.ComponentFactory.getComponentWithMetadataFromServer(result.type.toUpperCase(), result.previousComponent.uniqueId).then(
534                     (component:Component)=> {
535                     if (result.componentCsar && component.isResource()){
536                         this.cacheService.set(PREVIOUS_CSAR_COMPONENT, angular.copy(component));
537                         component = this.ComponentFactory.updateComponentFromCsar(result.componentCsar, <Resource>component);
538                     }
539                     this.$scope.setComponent(component);
540                     this.$scope.save();
541                     this.setImportedFileText();
542                 }, ()=> {
543                     // ERROR
544                 });
545             })
546         };
547
548         this.$scope.updateIcon = ():void => {
549             this.ModalsHandler.openUpdateIconModal(this.$scope.component).then((isDirty:boolean)=> {
550                 if(isDirty && !this.$scope.isCreateMode()){
551                     this.setUnsavedChanges(true);
552                 }
553             }, ()=> {
554                 // ERROR
555             });
556         };
557
558         this.$scope.possibleToUpdateIcon = ():boolean => {
559             if(this.$scope.componentCategories.selectedCategory && (!this.$scope.component.isResource() || this.$scope.component.vendorName) && !this.$scope.component.isAlreadyCertified()){
560                 return true;
561             }else{
562                 return false;
563             }
564         }
565
566         this.$scope.validateName = (isInit:boolean):void => {
567             if (isInit === undefined) {
568                 isInit = false;
569             }
570
571             let name = this.$scope.component.name;
572             if (!name || name === "") {
573                 if (this.$scope.editForm
574                     && this.$scope.editForm["componentName"]
575                     && this.$scope.editForm["componentName"].$error) {
576
577                     // Clear the error name already exists
578                     this.$scope.editForm["componentName"].$setValidity('nameExist', true);
579                 }
580
581                 return;
582             }
583             
584             let subtype:string = ComponentType.RESOURCE == this.$scope.componentType ? this.$scope.component.getComponentSubType() : undefined;
585             if (subtype == "SRVC") {
586                 subtype = "VF"
587             }
588
589             const onFailed = (response) => {
590                 // console.info('onFaild', response);
591                 // this.$scope.isLoading = false;
592             };
593
594             const onSuccess = (validation:IValidate) => {
595                 this.$scope.editForm['componentName'].$setValidity('nameExist', validation.isValid);
596                 if (validation.isValid) {
597                     // update breadcrumb after changing name
598                     this.updateComponentNameInBreadcrumbs();
599                 }
600             };
601
602             if (isInit) {
603                 // When page is init after update
604                 if (this.$scope.component.name !== this.$scope.originComponent.name) {
605                     if (!(this.$scope.componentType === ComponentType.RESOURCE && (<Resource>this.$scope.component).csarUUID !== undefined)
606                     ) {
607                         this.$scope.component.validateName(name, subtype).then(onSuccess, onFailed);
608                     }
609                 }
610             } else {
611                 // Validating on change (has debounce)
612                 if (this.$scope.editForm
613                     && this.$scope.editForm["componentName"]
614                     && this.$scope.editForm["componentName"].$error
615                     && !this.$scope.editForm["componentName"].$error.pattern
616                     && (!this.$scope.originComponent.name || this.$scope.component.name.toUpperCase() !== this.$scope.originComponent.name.toUpperCase())
617                 ) {
618                     if (!(this.$scope.componentType === ComponentType.RESOURCE && (this.$scope.component as Resource).csarUUID !== undefined)
619                     ) {
620                         this.$scope.component.validateName(name, subtype).then(onSuccess, onFailed);
621                     }
622                 } else if (this.$scope.editForm && this.$scope.originComponent.name && this.$scope.component.name.toUpperCase() === this.$scope.originComponent.name.toUpperCase()) {
623                     // Clear the error
624                     this.$scope.editForm['componentName'].$setValidity('nameExist', true);
625                 }
626             }
627         };
628
629
630         this.EventListenerService.registerObserverCallback(EVENTS.ON_LIFECYCLE_CHANGE_WITH_SAVE, (nextState) => {
631             if (this.$state.current.data.unsavedChanges && this.$scope.isValidForm) {
632                 this.$scope.save().then(() => {
633                     this.$scope.handleChangeLifecycleState(nextState);
634                 }, () => {
635                     console.error('Save failed, unable to change lifecycle state to ' + nextState);
636                 });
637             } else if(!this.$scope.isValidForm){
638                 console.error('Form is not valid');
639             } else {
640                 let newCsarVersion:string;
641                 if(this.$scope.unsavedFile) {
642                     newCsarVersion = (this.$scope.component as Resource).csarVersion;
643                 }
644                 if(this.$stateParams.componentCsar && !this.$scope.isCreateMode()) {
645                     const onError = (): void => {
646                         if (this.$scope.component.lifecycleState === 'NOT_CERTIFIED_CHECKIN') {
647                             this.$scope.revert();
648                         }
649                     };
650                     this.$scope.handleChangeLifecycleState(nextState, newCsarVersion, onError);
651
652                 } else {
653                     this.$scope.handleChangeLifecycleState(nextState, newCsarVersion);
654                 }
655             }
656         });
657
658         this.$scope.revert = ():void => {
659             // in state of import file leave the file in place
660
661             this.$scope.setComponent(this.ComponentFactory.createComponent(this.$scope.originComponent));
662
663             if (this.$scope.component.isResource() && this.$scope.restoreFile) {
664                 (this.$scope.component as Resource).importedFile = angular.copy(this.$scope.restoreFile);
665             }
666
667             this.setImportedFileText();
668             this.$scope.updateBreadcrumbs(this.$scope.component); // update on workspace
669
670             this.$scope.componentCategories.selectedCategory = this.$scope.originComponent.selectedCategory;
671             this.setUnsavedChanges(false);
672             this.$scope.updateUnsavedFileFlag(false);
673             this.$scope.editForm.$setPristine();
674         };
675
676         this.$scope.onImportFileChange = () => {
677
678             if( !this.$scope.restoreFile && this.$scope.editForm.fileElement.value && this.$scope.editForm.fileElement.value.filename || // if file started empty but we have added a new one
679                 this.$scope.restoreFile && !angular.equals(this.$scope.restoreFile, this.$scope.editForm.fileElement.value)){ // or file was swapped for a new one
680                 this.$scope.updateUnsavedFileFlag(true);
681             } else {
682                 this.$scope.updateUnsavedFileFlag(false);
683                 this.$scope.editForm.fileElement.$setPristine();
684             }
685         };
686
687         this.$scope.$watchCollection('component.name', (newData: any): void => {
688             this.$scope.validateName(false);
689         });
690
691         // Notify the parent if this step valid or not.
692         this.$scope.$watch('editForm.$valid', (newVal, oldVal) => {
693             this.$scope.setValidState(newVal);
694         });
695
696         this.$scope.$watch('editForm.$dirty', (newVal, oldVal) => {
697             if (newVal && !this.$scope.isCreateMode()) {
698                 this.setUnsavedChanges(true);
699             }
700
701         });
702
703         this.$scope.onCategoryChange = (): void => {
704             this.$scope.component.selectedCategory = this.$scope.componentCategories.selectedCategory;
705             this.$scope.component.categories = this.convertCategoryStringToOneArray();
706             this.$scope.component.icon = DEFAULT_ICON;
707             if (this.$scope.component.categories[0].metadataKeys) {
708                 for (let metadataKey of this.$scope.component.categories[0].metadataKeys) {
709                     if (!this.$scope.component.categorySpecificMetadata[metadataKey.name]) {
710                         this.$scope.component.categorySpecificMetadata[metadataKey.name] = metadataKey.defaultValue ? metadataKey.defaultValue : "";
711                    }
712                 }
713             }
714             if (this.$scope.component.categories[0].subcategories && this.$scope.component.categories[0].subcategories[0].metadataKeys) {
715                 for (let metadataKey of this.$scope.component.categories[0].subcategories[0].metadataKeys) {
716                     if (!this.$scope.component.categorySpecificMetadata[metadataKey.name]) {
717                         this.$scope.component.categorySpecificMetadata[metadataKey.name] = metadataKey.defaultValue ? metadataKey.defaultValue : "";
718                    }
719                 }
720             }
721             if (this.$scope.componentType === ComponentType.SERVICE && this.$scope.component.categories[0]) {
722                     let modelName : string = this.$scope.component.model ? this.$scope.component.model : null;
723                     this.elementService.getCategoryBasetypes(this.$scope.component.categories[0].name, modelName).subscribe((data: BaseTypeResponse[]) => {
724                 
725                     if(this.$scope.isCreateMode()){
726                         this.$scope.baseTypes = []
727                         this.$scope.baseTypeVersions = []
728                         data.forEach(baseType => this.$scope.baseTypes.push(baseType.toscaResourceName));
729                         data[0].versions.reverse().forEach(version => this.$scope.baseTypeVersions.push(version));
730                         this.$scope.component.derivedFromGenericType = data[0].toscaResourceName;
731                         this.$scope.component.derivedFromGenericVersion = data[0].versions[0];
732                     } else {
733                         var isValidForBaseType:boolean = false;
734                         data.forEach(baseType => {if (!this.$scope.component.derivedFromGenericType || baseType.toscaResourceName === this.$scope.component.derivedFromGenericType){
735                             isValidForBaseType = true;
736                         };});
737                         this.$scope.editForm['category'].$setValidity('validForBaseType', isValidForBaseType);
738                     }
739                 });
740             }   
741         };
742
743         this.$scope.onEcompGeneratedNamingChange = (): void => {
744             if (!(this.$scope.component as Service).ecompGeneratedNaming) {
745                 (this.$scope.component as Service).namingPolicy = '';
746             }
747         };
748
749         this.$scope.onBaseTypeChange = (): void => {
750                 let modelName : string = this.$scope.component.model ? this.$scope.component.model : null;
751             this.elementService.getCategoryBasetypes(this.$scope.component.categories[0].name, modelName).subscribe((data: BaseTypeResponse[]) => {
752                      this.$scope.baseTypeVersions = []
753                      data.forEach(baseType => {
754                              if(baseType.toscaResourceName === this.$scope.component.derivedFromGenericType) {
755                                      baseType.versions.reverse().forEach(version => this.$scope.baseTypeVersions.push(version));
756                              this.$scope.component.derivedFromGenericVersion = baseType.versions[0];
757                              };
758                      });
759              })
760         };
761
762         this.$scope.onModelChange = (): void => {
763             if (this.$scope.componentType === ComponentType.SERVICE && this.$scope.component && this.$scope.component.categories) {
764                 let modelName = this.$scope.component.model ? this.$scope.component.model : null;
765                 this.elementService.getCategoryBasetypes(this.$scope.component.categories[0].name, modelName).subscribe((data: BaseTypeResponse[]) => {
766                     this.$scope.baseTypes = []
767                     this.$scope.baseTypeVersions = []
768                     data.forEach(baseType => this.$scope.baseTypes.push(baseType.toscaResourceName));
769                     data[0].versions.reverse().forEach(version => this.$scope.baseTypeVersions.push(version));
770                     this.$scope.component.derivedFromGenericType = data[0].toscaResourceName;
771                     this.$scope.component.derivedFromGenericVersion = data[0].versions[0];
772                 });
773             }
774         };
775
776         this.$scope.onVendorNameChange = (oldVendorName: string): void => {
777             if (this.$scope.component.icon === oldVendorName) {
778                 this.$scope.component.icon = DEFAULT_ICON;
779             }
780         };
781         this.EventListenerService.registerObserverCallback(EVENTS.ON_LIFECYCLE_CHANGE, this.$scope.reload);
782
783
784         this.$scope.isMetadataKeyMandatory = (key: string): boolean => {
785             let metadataKey = this.getMetadataKey(this.$scope.component.categories, key);
786             return metadataKey && metadataKey.mandatory;
787         }
788
789         this.$scope.getMetadataKeyValidValues = (key: string): string[] => {
790             let metadataKey = this.getMetadataKey(this.$scope.component.categories, key);
791             if (metadataKey) {
792                 return metadataKey.validValues;
793             }
794             return [];  
795         }
796
797         this.$scope.isMetadataKeyForComponentCategory = (key: string): boolean => {
798             return this.getMetadataKey(this.$scope.component.categories, key) != null;
799         }
800
801         this.$scope.isCategoryServiceMetadataKey = (key: string): boolean => {
802             return this.isServiceMetadataKey(key);
803         }
804
805         this.$scope.isMetadataKeyForComponentCategoryService = (key: string, attribute: string): boolean => {
806             let metadatakey = this.getMetadataKey(this.$scope.component.categories, key);
807             if (metadatakey && (!this.$scope.component[attribute] || !metadatakey.validValues.find(v => v === this.$scope.component[attribute]))) {
808                 this.$scope.component[attribute] = metadatakey.defaultValue;
809             }
810             return metadatakey != null;
811          }
812     }
813
814     private setUnsavedChanges = (hasChanges: boolean): void => {
815         this.$state.current.data.unsavedChanges = hasChanges;
816     }
817
818     private getMetadataKey(categories: IMainCategory[], key: string) : IMetadataKey {
819         let metadataKey = this.getSubcategoryMetadataKey(this.$scope.component.categories, key);
820         if (!metadataKey){
821             return this.getCategoryMetadataKey(this.$scope.component.categories, key);
822         }
823         return metadataKey;
824     }
825
826     private getSubcategoryMetadataKey(categories: IMainCategory[], key: string) : IMetadataKey {
827             if (categories[0].subcategories && categories[0].subcategories[0].metadataKeys && categories[0].subcategories[0].metadataKeys.some(metadataKey => metadataKey.name == key)) {
828             return categories[0].subcategories[0].metadataKeys.find(metadataKey => metadataKey.name == key);
829         }
830         return null;
831     }
832
833     private getCategoryMetadataKey(categories: IMainCategory[], key: string) : IMetadataKey {
834             if (categories[0].metadataKeys && categories[0].metadataKeys.some(metadataKey => metadataKey.name == key)) {
835             return categories[0].metadataKeys.find(metadataKey => metadataKey.name == key);
836         }
837         return null;
838     }
839
840     private isServiceMetadataKey(key: string) : boolean {
841         return CATEGORY_SERVICE_METADATA_KEYS.indexOf(key) > -1;
842     }
843
844 }
845