Consumer service
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / services / ei / consumer.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 { ConsumerStatus, JobInfo } from '@interfaces/consumer.types';
25
26 /**
27  * Services for calling the EI endpoints.
28  */
29 @Injectable({
30     providedIn: 'root'
31 })
32 export class ConsumerService {
33
34     private basePath = '/data-consumer/v1';
35     readonly jobsPath = 'info-jobs';
36     readonly consumerStatusPath = 'status';
37
38     private buildPath(...args: any[]) {
39         let result = this.basePath;
40         args.forEach(part => {
41             result = result + '/' + part;
42         });
43         return result;
44     }
45
46     constructor(private httpClient: HttpClient) {
47         // injects to variable httpClient
48     }
49
50     getJobIds(): Observable<string[]> {
51         const url = this.buildPath(this.jobsPath);
52         return this.httpClient.get<string[]>(url);
53     }
54
55     getJobInfo(infoJobId: string): Observable<JobInfo> {
56         const url = this.buildPath(this.jobsPath, infoJobId);
57         return this.httpClient.get<JobInfo>(url);
58     }
59
60     getConsumerStatus(infoJobId: string): Observable<ConsumerStatus> {
61         const url = this.buildPath(this.jobsPath, infoJobId, this.consumerStatusPath);
62         return this.httpClient.get<ConsumerStatus>(url);
63     }
64 }