2c4571d50b556cc4e171286f635ed23d2d5d3815
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / services / ei / producer.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 { JobInfo, ProducerStatus, ProducerRegistrationInfo } from '@interfaces/producer.types';
25
26 /**
27  * Services for calling the EI endpoints.
28  */
29 @Injectable({
30     providedIn: 'root'
31 })
32 export class ProducerService {
33
34     private basePath = '/data-producer/v1';
35     readonly jobsPath = 'info-jobs';
36     readonly producersPath = 'info-producers';
37     readonly producerStatusPath = '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.producersPath);
53         return this.httpClient.get<string[]>(url);
54     }
55
56     getJobsForProducer(producerId: string): Observable<JobInfo[]> {
57         const url = this.buildPath(this.producersPath, producerId, this.jobsPath);
58         return this.httpClient.get<JobInfo[]>(url);
59     }
60
61     getProducer(producerId: string): Observable<ProducerRegistrationInfo> {
62         const url = this.buildPath(this.producersPath, producerId);
63         return this.httpClient.get<ProducerRegistrationInfo>(url);
64     }
65
66     getProducerStatus(producerId: string): Observable<ProducerStatus> {
67         const url = this.buildPath(this.producersPath, producerId, this.producerStatusPath);
68         return this.httpClient.get<ProducerStatus>(url);
69     }
70 }