Improved test coverage in front end
[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 { map } from 'rxjs/operators';
25 import { EIJob, EIProducer } from '../../interfaces/ei.types';
26 import { ControlpanelSuccessTransport } from '../../interfaces/controlpanel.types';
27
28 /**
29  * Services for calling the EI endpoints.
30  */
31 @Injectable({
32     providedIn: 'root'
33 })
34 export class EIService {
35
36     private basePath = 'api/enrichment';
37     eiJobPath = 'eijobs';
38     eiProducerPath = 'eiproducers';
39
40     private buildPath(...args: any[]) {
41         let result = this.basePath;
42         args.forEach(part => {
43             result = result + '/' + part;
44         });
45         return result;
46     }
47
48     constructor(private httpClient: HttpClient) {
49         // injects to variable httpClient
50     }
51
52     getEIJobs(): Observable<EIJob[]> {
53         const url = this.buildPath(this.eiJobPath);
54         return this.httpClient.get<EIJob[]>(url);
55     }
56
57     getEIProducers(): Observable<EIProducer[]> {
58         const url = this.buildPath(this.eiProducerPath);
59         return this.httpClient.get<EIProducer[]>(url);
60     }
61 }