Sync Integ to Master
[sdc.git] / catalog-ui / src / app / services / entity-service.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 { Service, IApi, IAppConfigurtaion, Resource, Component} from "../models";
23 import {SharingService} from "./sharing-service";
24 import {ComponentFactory} from "../utils/component-factory";
25 import {CacheService} from "./cache-service";
26 import {ResourceType} from "app/utils";
27
28 interface IEntityService {
29     getAllComponents():ng.IPromise<Array<Component>>;
30 }
31
32 interface IComponentsArray {
33     services:Array<Service>;
34     resources:Array<Resource>;
35 }
36
37 export class EntityService implements IEntityService {
38     static '$inject' = ['$http', '$q', 'sdcConfig', 'Sdc.Services.SharingService', 'ComponentFactory', 'Sdc.Services.CacheService'];
39     private api:IApi;
40
41     constructor(private $http:ng.IHttpService,
42                 private $q:ng.IQService,
43                 private sdcConfig:IAppConfigurtaion,
44                 private sharingService:SharingService,
45                 private ComponentFactory:ComponentFactory,
46                 private cacheService:CacheService) {
47         this.api = sdcConfig.api;
48     }
49
50     getCatalog = ():ng.IPromise<Array<Component>> => {
51         let defer = this.$q.defer<Array<Component>>();
52         this.$http.get(this.api.root + this.api.GET_catalog, {params: {excludeTypes: [ResourceType.VFCMT, ResourceType.CONFIGURATION]}})
53             .then((response:any) => {
54                 let followedResponse: IComponentsArray =  response.data;
55                 let componentsList:Array<Component> = new Array();
56
57                 followedResponse.services && followedResponse.services.forEach((serviceResponse:Service) => {
58                     let component:Service = this.ComponentFactory.createService(serviceResponse); // new Service(serviceResponse);
59                     componentsList.push(component);
60                     this.sharingService.addUuidValue(component.uniqueId, component.uuid);
61                 });
62
63                 followedResponse.resources && followedResponse.resources.forEach((resourceResponse:Resource) => {
64                     let component:Resource = this.ComponentFactory.createResource(resourceResponse);
65                     componentsList.push(component);
66                     this.sharingService.addUuidValue(component.uniqueId, component.uuid);
67                 });
68
69                 this.cacheService.set('breadcrumbsComponents', componentsList);
70                 defer.resolve(componentsList);
71             },(responce) => {
72                 defer.reject(responce);
73             });
74         return defer.promise;
75     };
76
77     getAllComponents = ():ng.IPromise<Array<Component>> => {
78         let defer = this.$q.defer<Array<Component>>();
79         this.$http.get(this.api.root + this.api.GET_element)
80             .then((response:any) => {
81                 let componentResponse:IComponentsArray = response.data;
82                 let componentsList:Array<Component> = [];
83
84                 componentResponse.services && componentResponse.services.forEach((serviceResponse:Service) => {
85                     let component:Service = this.ComponentFactory.createService(serviceResponse);
86                     componentsList.push(component);
87                     this.sharingService.addUuidValue(component.uniqueId, component.uuid);
88                 });
89
90                 componentResponse.resources && componentResponse.resources.forEach((resourceResponse:Resource) => {
91                     let component:Resource = this.ComponentFactory.createResource(resourceResponse);
92                     componentsList.push(component);
93                     this.sharingService.addUuidValue(component.uniqueId, component.uuid);
94                 });
95                 
96                 this.cacheService.set('breadcrumbsComponents', componentsList);
97                 defer.resolve(componentsList);
98             });
99
100         return defer.promise;
101     };
102 }