Add events hub notify calls
[sdc.git] / catalog-ui / src / app / services / components / resource-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 {IComponentService, ComponentService} from "./component-service";
26 import {PropertyModel, IAppConfigurtaion, Resource, Component} from "../../models";
27 import {SharingService} from "../sharing-service";
28 import {EventBusService} from "../../ng2/services/event-bus.service";
29
30 export interface IResourceService extends IComponentService {
31     updateResourceGroupProperties(uniqueId:string, groupId:string, properties:Array<PropertyModel>):ng.IPromise<Array<PropertyModel>>
32 }
33
34 export class ResourceService extends ComponentService implements IResourceService {
35
36     static '$inject' = [
37         'Restangular',
38         'sdcConfig',
39         'Sdc.Services.SharingService',
40         '$q',
41         '$base64',
42         'EventBusService'
43     ];
44
45     constructor(protected restangular:restangular.IElement,
46                 protected sdcConfig:IAppConfigurtaion,
47                 protected sharingService:SharingService,
48                 protected $q:ng.IQService,
49                 protected $base64:any,
50                 protected eventBusService:EventBusService
51                 ) {
52         super(restangular, sdcConfig, sharingService, $q, $base64, eventBusService);
53
54         this.restangular = restangular.one("resources");
55     }
56
57     createComponentObject = (component:Component):Component => {
58         return new Resource(this, this.$q, <Resource>component);
59     };
60
61
62     updateResourceGroupProperties = (uniqueId:string, groupId:string, properties:Array<PropertyModel>):ng.IPromise<Array<PropertyModel>> => {
63         let defer = this.$q.defer<Array<PropertyModel>>();
64         this.restangular.one(uniqueId).one("groups").one(groupId).one('properties').customPUT(JSON.stringify(properties)).then((updatesProperties:any) => {
65             let propertiesArray:Array<PropertyModel> = new Array<PropertyModel>();
66             _.forEach(updatesProperties, (propertyObj:PropertyModel) => {
67                 propertiesArray.push(new PropertyModel(propertyObj));
68             });
69             defer.resolve(propertiesArray);
70         }, (err)=> {
71             defer.reject(err);
72         });
73         return defer.promise;
74     };
75 }