Reorganize dashboard into subfolders
[portal/ric-dashboard.git] / dashboard / webapp-frontend / src / app / services / app-mgr / app-mgr.service.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property
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 import { HttpClient, HttpResponse } from '@angular/common/http';
21 import { Injectable } from '@angular/core';
22 import { Observable } from 'rxjs';
23 import { XMDeployableApp, XMDeployedApp, XMXappInfo } from '../../interfaces/app-mgr.types';
24 import { DashboardService } from '../dashboard/dashboard.service';
25
26 @Injectable()
27 export class AppMgrService {
28
29   private component = 'appmgr';
30   private xappsPath = 'xapps';
31
32   constructor(
33     private dashboardSvc: DashboardService,
34     private httpClient: HttpClient) {
35   }
36
37   getDeployable(instanceKey: string): Observable<XMDeployableApp[]> {
38     const path = this.dashboardSvc.buildPath(this.component, instanceKey, this.xappsPath, 'list');
39     return this.httpClient.get<XMDeployableApp[]>(path);
40   }
41
42   getDeployed(instanceKey: string): Observable<XMDeployedApp[]> {
43     const path = this.dashboardSvc.buildPath(this.component, instanceKey, this.xappsPath);
44     return this.httpClient.get<XMDeployedApp[]>(path);
45   }
46
47   deployXapp(instanceKey: string, name: string): Observable<HttpResponse<Object>> {
48     const xappInfo: XMXappInfo = { name: name };
49     const path = this.dashboardSvc.buildPath(this.component, instanceKey, this.xappsPath);
50     return this.httpClient.post(path, xappInfo, { observe: 'response' });
51   }
52
53   undeployXapp(instanceKey: string, name: string): Observable<HttpResponse<Object>> {
54     const path = this.dashboardSvc.buildPath(this.component, instanceKey, this.xappsPath, name);
55     return this.httpClient.delete(path, { observe: 'response' });
56   }
57
58   getConfig(instanceKey: string): Observable<any[]> {
59     // For demo purpose, pull example config from local
60     return this.httpClient.get<any[]>('/assets/mockdata/config.json');
61     // Once Xapp manager contains layout, should call backend to get xapp config
62     // const path = this.dashboardSvc.buildPath(this.component, instanceKey, 'config');
63     // return this.httpClient.get<any[]>(path);
64   }
65
66   putConfig(instanceKey: string, config: any): Observable<HttpResponse<Object>> {
67     const path = this.dashboardSvc.buildPath(this.component, instanceKey, 'config');
68     return this.httpClient.put(path, config, { observe: 'response' });
69   }
70
71 }