2 * ========================LICENSE_START=================================
5 * Copyright (C) 2019 AT&T Intellectual Property
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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===================================
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';
27 export class AppMgrService {
29 private component = 'appmgr';
30 private xappsPath = 'xapps';
33 private dashboardSvc: DashboardService,
34 private httpClient: HttpClient) {
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);
42 getDeployed(instanceKey: string): Observable<XMDeployedApp[]> {
43 const path = this.dashboardSvc.buildPath(this.component, instanceKey, this.xappsPath);
44 return this.httpClient.get<XMDeployedApp[]>(path);
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' });
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' });
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);
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' });