907c3258d13b49580430551d07fd4cc8f17b17b9
[portal/ric-dashboard.git] / webapp-frontend / src / app / services / ac-xapp / ac-xapp.service.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property and Nokia
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 { ACAdmissionIntervalControl, ACAdmissionIntervalControlAck } from '../../interfaces/ac-xapp.types';
26 import { DashboardSuccessTransport } from '../../interfaces/dashboard.types';
27
28 /**
29  * Services for calling the Dashboard's AC endpoints.
30  */
31 @Injectable({
32   providedIn: 'root'
33 })
34 export class ACXappService {
35
36   private basePath = 'api/xapp/ac';
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   /**
51    * Gets version details
52    * @returns Observable that should yield a String
53    */
54   getVersion(): Observable<string> {
55     const url = this.buildPath('version');
56     return this.httpClient.get<DashboardSuccessTransport>(url).pipe(
57       // Extract the string here
58       map(res => res['data'])
59     );
60   }
61
62   /**
63    * Puts admission control parameters.
64    * @param policy an instance of ACAdmissionIntervalControl
65    * @returns Observable that should yield a response code, no data
66    */
67   putPolicy(policy: ACAdmissionIntervalControl): Observable<any> {
68     const url = this.buildPath('catime');
69     return this.httpClient.put<ACAdmissionIntervalControlAck>(url, policy, { observe: 'response' });
70   }
71
72 }