summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/api/configuration.service.ts
blob: 5bad098c9afe4dba8af56a378a80c9ce8ef406a1 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';

import { ConfigFormCreateRequestModel } from '~/app/ceph/cluster/configuration/configuration-form/configuration-form-create-request.model';

@Injectable({
  providedIn: 'root'
})
export class ConfigurationService {
  constructor(private http: HttpClient) {}

  private findValue(config: any, section: string) {
    if (!config.value) {
      return undefined;
    }
    return config.value.find((v: any) => v.section === section);
  }

  getValue(config: any, section: string) {
    let val = this.findValue(config, section);
    if (!val) {
      const indexOfDot = section.indexOf('.');
      if (indexOfDot !== -1) {
        val = this.findValue(config, section.substring(0, indexOfDot));
      }
    }
    if (!val) {
      val = this.findValue(config, 'global');
    }
    if (val) {
      return val.value;
    }
    return config.default;
  }

  getConfigData() {
    return this.http.get('api/cluster_conf/');
  }

  get(configOption: string) {
    return this.http.get(`api/cluster_conf/${configOption}`);
  }

  filter(configOptionNames: Array<string>) {
    return this.http.get(`api/cluster_conf/filter?names=${configOptionNames.join(',')}`);
  }

  create(configOption: ConfigFormCreateRequestModel) {
    return this.http.post('api/cluster_conf/', configOption);
  }

  delete(configOption: string, section: string) {
    return this.http.delete(`api/cluster_conf/${configOption}?section=${section}`);
  }

  bulkCreate(configOptions: object) {
    return this.http.put('api/cluster_conf/', configOptions);
  }
}