blob: a255dcff347b447324cc5e08dbbad26bfad2b08c [file] [log] [blame]
Michael Landodd603392017-07-12 00:54:52 +03001/*-
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
Michael Landoed64b5e2017-06-09 03:19:04 +030021'use strict';
22import {Product, Service, IApi, IAppConfigurtaion, Resource, Component} from "../models";
23import {SharingService} from "./sharing-service";
24import {ComponentFactory} from "../utils/component-factory";
25import {CacheService} from "./cache-service";
26
27interface IEntityService {
28 getAllComponents():ng.IPromise<Array<Component>>;
29}
30
31interface IComponentsArray {
32 services:Array<Service>;
33 resources:Array<Resource>;
34 products:Array<Product>;
35}
36
37export 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)
53 .then((response:any) => {
54 let followedResponse: IComponentsArray = response.data;
55 let componentsList:Array<Component> = new Array();
56
57 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.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 followedResponse.products.forEach((productResponse:Product) => {
70
71 let component:Product = this.ComponentFactory.createProduct(productResponse);
72 componentsList.push(component);
73 this.sharingService.addUuidValue(component.uniqueId, component.uuid);
74 });
75
76 this.cacheService.set('breadcrumbsComponents', componentsList);
77 defer.resolve(componentsList);
78 },(responce) => {
79 defer.reject(responce);
80 });
81 return defer.promise;
82 };
83
84 getAllComponents = ():ng.IPromise<Array<Component>> => {
85 let defer = this.$q.defer<Array<Component>>();
86 this.$http.get(this.api.root + this.api.GET_element)
87 .then((response:any) => {
88 let componentResponse:IComponentsArray = response.data;
89 let componentsList:Array<Component> = [];
90
91 componentResponse.services && componentResponse.services.forEach((serviceResponse:Service) => {
92 let component:Service = this.ComponentFactory.createService(serviceResponse);
93 componentsList.push(component);
94 this.sharingService.addUuidValue(component.uniqueId, component.uuid);
95 });
96
97 componentResponse.resources && componentResponse.resources.forEach((resourceResponse:Resource) => {
98 let component:Resource = this.ComponentFactory.createResource(resourceResponse);
99 componentsList.push(component);
100 this.sharingService.addUuidValue(component.uniqueId, component.uuid);
101 });
102
103 componentResponse.products && componentResponse.products.forEach((productsResponse:Product) => {
104 let component:Product = this.ComponentFactory.createProduct(productsResponse);
105 componentsList.push(component);
106 this.sharingService.addUuidValue(component.uniqueId, component.uuid);
107 });
108 this.cacheService.set('breadcrumbsComponents', componentsList);
109 defer.resolve(componentsList);
110 });
111
112 return defer.promise;
113 };
114}