Sync Integ to Master
[sdc.git] / catalog-ui / src / app / services / components / service-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 /**
22  * Created by obarda on 2/4/2016.
23  */
24 'use strict';
25 import * as _ from "lodash";
26 import {IComponentService, ComponentService} from "./component-service";
27 import {Distribution, DistributionComponent, Service, PropertyModel, Component, IAppConfigurtaion} from "app/models";
28 import {SharingService} from "../sharing-service";
29 import {EventBusService} from "../../ng2/services/event-bus.service";
30
31 export interface IServiceService extends IComponentService {
32     getDistributionsList(uuid:string):ng.IPromise<Array<Distribution>>;
33     getDistributionComponents(distributionId:string):ng.IPromise<Array<DistributionComponent>>;
34     markAsDeployed(serviceId:string, distributionId:string):ng.IPromise<any>;
35     updateGroupInstanceProperties(serviceId:string, resourceInstanceId:string, groupInstanceId:string, groupInstanceProperties:Array<PropertyModel>):ng.IPromise<Array<PropertyModel>>;
36 }
37
38 export class ServiceService extends ComponentService implements IServiceService {
39
40     static '$inject' = [
41         'Restangular',
42         'sdcConfig',
43         'Sdc.Services.SharingService',
44         '$q',
45         '$base64'
46     ];
47
48     public distribution:string = "distribution";
49
50     constructor(protected restangular:restangular.IElement,
51                 protected sdcConfig:IAppConfigurtaion,
52                 protected sharingService:SharingService,
53                 protected $q:ng.IQService,
54                 protected $base64:any,
55                 protected eventBusService:EventBusService) {
56         super(restangular, sdcConfig, sharingService, $q, $base64, eventBusService);
57
58         this.restangular = restangular.one("services");
59     }
60
61     getDistributionsList = (uuid:string):ng.IPromise<Array<Distribution>> => {
62         let defer = this.$q.defer<Array<Distribution>>();
63         this.restangular.one(uuid).one("distribution").get().then((distributions:any) => {
64             defer.resolve(<Array<Distribution>> distributions.distributionStatusOfServiceList);
65         }, (err)=> {
66             defer.reject(err);
67         });
68         return defer.promise;
69     };
70
71     getDistributionComponents = (distributionId:string):ng.IPromise<Array<DistributionComponent>> => {
72         let defer = this.$q.defer<Array<DistributionComponent>>();
73         this.restangular.one("distribution").one(distributionId).get().then((distributions:any) => {
74             defer.resolve(<Array<DistributionComponent>> distributions.distributionStatusList);
75         }, (err)=> {
76             defer.reject(err);
77         });
78         return defer.promise;
79     };
80
81     markAsDeployed = (serviceId:string, distributionId:string):ng.IPromise<any> => {
82         let defer = this.$q.defer<any>();
83         this.restangular.one(serviceId).one("distribution").one(distributionId).one("markDeployed").customPOST().then((result:any) => {
84             defer.resolve(result);
85         }, (err)=> {
86
87             defer.reject(err);
88         });
89         return defer.promise;
90     };
91
92     createComponentObject = (component:Component):Component => {
93         return new Service(this, this.$q, <Service>component);
94     };
95
96     updateGroupInstanceProperties = (serviceId:string, resourceInstanceId:string, groupInstanceId:string, groupInstanceProperties:Array<PropertyModel>):ng.IPromise<Array<PropertyModel>> => {
97         let defer = this.$q.defer<Array<PropertyModel>>();
98         this.restangular.one(serviceId).one("resourceInstance").one(resourceInstanceId).one('groupInstance').one(groupInstanceId).customPUT(JSON.stringify(groupInstanceProperties)).then((updatedProperties:any) => {
99             let propertiesArray:Array<PropertyModel> = new Array<PropertyModel>();
100             _.forEach(updatedProperties, (propertyObj:PropertyModel) => {
101                 propertiesArray.push(new PropertyModel(propertyObj));
102             });
103             defer.resolve(propertiesArray);
104         }, (err)=> {
105             defer.reject(err);
106         });
107         return defer.promise;
108     };
109 }