aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/services/sdc.service.ts
blob: d4eba260a40962c22f78ea498515d79acbc7fb3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import 'rxjs/add/operator/map';
import { Constants } from '../shared/utils/constants';
import { VidConfiguration } from '../configuration/vid.configuration';

@Injectable()
export class SdcService {


  constructor (private http: HttpClient) {
  }

  public getServicesModels(): any {
    let pathQuery: string = Constants.Path.SERVICES_DIST_STATUS_PATH + VidConfiguration.ASDC_MODEL_STATUS;

    if ( VidConfiguration.ASDC_MODEL_STATUS === Constants.Status.ALL) {
      pathQuery = Constants.Path.SERVICES_PATH;
    }

    return this.http.get(pathQuery);
  }

  getService(uuid: string) {
    return this.http.get(Constants.Path.SERVICES_PATH + uuid);
  }

}