Consider component model when retrieving capability types
[sdc.git] / catalog-ui / src / app / ng2 / services / tosca-types.service.ts
1 /*!
2  * Copyright © 2016-2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
13  * or implied. See the License for the specific language governing
14  * permissions and limitations under the License.
15  */
16
17 import {HttpClient} from '@angular/common/http';
18 import {Inject, Injectable} from '@angular/core';
19 import {Response} from '@angular/http';
20 import {
21   CapabilityTypeModel,
22   CapabilityTypesMap,
23   IComponentsArray,
24   NodeTypesMap,
25   RelationshipTypesMap
26 } from 'app/models';
27 import {Observable} from 'rxjs/Observable';
28 import {ISdcConfig, SdcConfigToken} from '../config/sdc-config.config';
29 import 'rxjs/add/operator/toPromise';
30
31 declare var angular: angular.IAngularStatic;
32
33 @Injectable()
34 export class ToscaTypesServiceNg2 {
35
36   protected baseUrl;
37
38   constructor(protected http: HttpClient, @Inject(SdcConfigToken) sdcConfig: ISdcConfig) {
39     this.baseUrl = sdcConfig.api.root + sdcConfig.api.component_api_root;
40   }
41
42   async fetchRelationshipTypes(modelName: string): Promise<RelationshipTypesMap> {
43     if(modelName) {
44       return this.http.get<RelationshipTypesMap>(this.baseUrl + 'relationshipTypes', {params: {model: modelName}}).toPromise();
45     }
46     return this.http.get<RelationshipTypesMap>(this.baseUrl + 'relationshipTypes').toPromise();
47   }
48
49   async fetchNodeTypes(): Promise<NodeTypesMap> {
50     return this.http.get<NodeTypesMap>(this.baseUrl + 'nodeTypes').toPromise();
51   }
52
53     async fetchCapabilityTypes(modelName: string): Promise<CapabilityTypesMap> {
54     if(modelName) {
55       return this.http.get<CapabilityTypesMap>(this.baseUrl + 'capabilityTypes', {params: {model: modelName}}).toPromise();
56     }
57     return this.http.get<CapabilityTypesMap>(this.baseUrl + 'capabilityTypes').toPromise();
58     }
59 }
60