Catalog alignment
[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(): Promise<RelationshipTypesMap> {
43         return this.http.get<RelationshipTypesMap>(this.baseUrl + 'relationshipTypes').toPromise();
44     }
45
46     async fetchNodeTypes(): Promise<NodeTypesMap> {
47         return this.http.get<NodeTypesMap>(this.baseUrl + 'nodeTypes').toPromise();
48     }
49
50     async fetchCapabilityTypes(): Promise<CapabilityTypesMap>{
51         return this.http.get<CapabilityTypesMap>(this.baseUrl + 'capabilityTypes').toPromise();
52     }
53 }
54