Catalog alignment
[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 * as _ from "lodash";
26 import {IComponentService, ComponentService} from "./component-service";
27 import {PropertyModel, IAppConfigurtaion, Resource, Component} from "../../models";
28 import {SharingService} from "app/services-ng2";
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     ];
43
44     constructor(protected restangular:restangular.IElement,
45                 protected sdcConfig:IAppConfigurtaion,
46                 protected sharingService:SharingService,
47                 protected $q:ng.IQService,
48                 protected $base64:any
49                 ) {
50         super(restangular, sdcConfig, sharingService, $q, $base64);
51
52         this.restangular = restangular.one("resources");
53     }
54
55     createComponentObject = (component:Component):Component => {
56         return new Resource(this, this.$q, <Resource>component);
57     };
58
59
60     updateResourceGroupProperties = (uniqueId:string, groupId:string, properties:Array<PropertyModel>):ng.IPromise<Array<PropertyModel>> => {
61         let defer = this.$q.defer<Array<PropertyModel>>();
62         this.restangular.one(uniqueId).one("groups").one(groupId).one('properties').customPUT(JSON.stringify(properties)).then((updatesProperties:any) => {
63             let propertiesArray:Array<PropertyModel> = new Array<PropertyModel>();
64             _.forEach(updatesProperties, (propertyObj:PropertyModel) => {
65                 propertiesArray.push(new PropertyModel(propertyObj));
66             });
67             defer.resolve(propertiesArray);
68         }, (err)=> {
69             defer.reject(err);
70         });
71         return defer.promise;
72     };
73 }