bb429e384aef0c450b78a5c12bfc8c1c656483bb
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / services / ei / ei.service.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 Nordix Foundation
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 import { Injectable } from '@angular/core';
22 import { HttpClient } from '@angular/common/http';
23 import { Observable } from 'rxjs';
24 import { EIJob, EIProducer, ProducerStatus, ProducerRegistrationInfo } from '../../interfaces/ei.types';
25
26 /**
27  * Services for calling the EI endpoints.
28  */
29 @Injectable({
30     providedIn: 'root'
31 })
32 export class EIService {
33
34     private basePath = '/ei-producer/v1';
35     readonly eiJobsPath = 'eijobs';
36     readonly eiProducersPath = 'eiproducers';
37     readonly eiProducerStatusPath = 'status';
38
39     private buildPath(...args: any[]) {
40         let result = this.basePath;
41         args.forEach(part => {
42             result = result + '/' + part;
43         });
44         return result;
45     }
46
47     constructor(private httpClient: HttpClient) {
48         // injects to variable httpClient
49     }
50
51     getProducerIds(): Observable<string[]> {
52         const url = this.buildPath(this.eiProducersPath);
53         return this.httpClient.get<string[]>(url);
54     }
55
56     getJobsForProducer(producerId: string): Observable<EIJob[]> {
57         const url = this.buildPath(this.eiProducersPath, producerId, this.eiJobsPath);
58         return this.httpClient.get<EIJob[]>(url);
59     }
60
61     getProducer(producerId: string): Observable<ProducerRegistrationInfo> {
62         const url = this.buildPath(this.eiProducersPath, producerId);
63         return this.httpClient.get<ProducerRegistrationInfo>(url);
64     }
65
66     getProducerStatus(producerId: string): Observable<ProducerStatus> {
67         const url = this.buildPath(this.eiProducersPath, producerId, this.eiProducerStatusPath);
68         return this.httpClient.get<ProducerStatus>(url);
69     }
70
71     getEIProducers(): Observable<EIProducer[]> {
72         const url = this.buildPath(this.eiProducersPath);
73         return this.httpClient.get<EIProducer[]>(url);
74     }
75 }