Fix new data types not found in UI
[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 import { DataTypesService } from "app/services";
30
31 export interface IResourceService extends IComponentService {
32     updateResourceGroupProperties(uniqueId:string, groupId:string, properties:Array<PropertyModel>):ng.IPromise<Array<PropertyModel>>
33 }
34
35 export class ResourceService extends ComponentService implements IResourceService {
36
37     static '$inject' = [
38         'Restangular',
39         'sdcConfig',
40         'Sdc.Services.SharingService',
41         'Sdc.Services.DataTypesService',
42         '$q',
43         '$base64'
44     ];
45
46     constructor(protected restangular:restangular.IElement,
47                 protected sdcConfig:IAppConfigurtaion,
48                 protected sharingService:SharingService,
49                 protected dataTypeService:DataTypesService,
50                 protected $q:ng.IQService,
51                 protected $base64:any
52                 ) {
53         super(restangular, sdcConfig, sharingService, dataTypeService, $q, $base64);
54
55         this.restangular = restangular.one("resources");
56     }
57
58     createComponentObject = (component:Component):Component => {
59         return new Resource(this, this.$q, <Resource>component);
60     };
61
62
63     updateResourceGroupProperties = (uniqueId:string, groupId:string, properties:Array<PropertyModel>):ng.IPromise<Array<PropertyModel>> => {
64         let defer = this.$q.defer<Array<PropertyModel>>();
65         this.restangular.one(uniqueId).one("groups").one(groupId).one('properties').customPUT(JSON.stringify(properties)).then((updatesProperties:any) => {
66             let propertiesArray:Array<PropertyModel> = new Array<PropertyModel>();
67             _.forEach(updatesProperties, (propertyObj:PropertyModel) => {
68                 propertiesArray.push(new PropertyModel(propertyObj));
69             });
70             defer.resolve(propertiesArray);
71         }, (err)=> {
72             defer.reject(err);
73         });
74         return defer.promise;
75     };
76 }