aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/config/shared/config.service.ts
blob: 80f495b41b782258742555fd8885f685847efcd2 (plain) (blame)
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
60
61
62
63
64
65
66
67
68
69
70
import { catchError } from 'rxjs/operators'
import { HttpClient } from '@angular/common/http'
import { Injectable } from '@angular/core'
import { RestExtractor } from '@app/core'
import { CustomConfig } from '@shared/models'
import { SelectOptionsItem } from '../../../../types/select-options-item.model'
import { environment } from '../../../../environments/environment'

@Injectable()
export class ConfigService {
  private static BASE_APPLICATION_URL = environment.apiUrl + '/api/v1/config'

  videoQuotaOptions: SelectOptionsItem[] = []
  videoQuotaDailyOptions: SelectOptionsItem[] = []
  transcodingThreadOptions: SelectOptionsItem[] = []

  constructor (
    private authHttp: HttpClient,
    private restExtractor: RestExtractor
  ) {
    this.videoQuotaOptions = [
      { id: -1, label: $localize`Unlimited` },
      { id: 0, label: $localize`None - no upload possible` },
      { id: 100 * 1024 * 1024, label: $localize`100MB` },
      { id: 500 * 1024 * 1024, label: $localize`500MB` },
      { id: 1024 * 1024 * 1024, label: $localize`1GB` },
      { id: 5 * 1024 * 1024 * 1024, label: $localize`5GB` },
      { id: 20 * 1024 * 1024 * 1024, label: $localize`20GB` },
      { id: 50 * 1024 * 1024 * 1024, label: $localize`50GB` },
      { id: 100 * 1024 * 1024 * 1024, label: $localize`100GB` },
      { id: 200 * 1024 * 1024 * 1024, label: $localize`200GB` },
      { id: 500 * 1024 * 1024 * 1024, label: $localize`500GB` }
    ]

    this.videoQuotaDailyOptions = [
      { id: -1, label: $localize`Unlimited` },
      { id: 0, label: $localize`None - no upload possible` },
      { id: 10 * 1024 * 1024, label: $localize`10MB` },
      { id: 50 * 1024 * 1024, label: $localize`50MB` },
      { id: 100 * 1024 * 1024, label: $localize`100MB` },
      { id: 500 * 1024 * 1024, label: $localize`500MB` },
      { id: 2 * 1024 * 1024 * 1024, label: $localize`2GB` },
      { id: 5 * 1024 * 1024 * 1024, label: $localize`5GB` },
      { id: 10 * 1024 * 1024 * 1024, label: $localize`10GB` },
      { id: 20 * 1024 * 1024 * 1024, label: $localize`20GB` },
      { id: 50 * 1024 * 1024 * 1024, label: $localize`50GB` }
    ]

    this.transcodingThreadOptions = [
      { id: 0, label: $localize`Auto (via ffmpeg)` },
      { id: 1, label: '1' },
      { id: 2, label: '2' },
      { id: 4, label: '4' },
      { id: 8, label: '8' },
      { id: 12, label: '12' },
      { id: 16, label: '16' },
      { id: 32, label: '32' }
    ]
  }

  getCustomConfig () {
    return this.authHttp.get<CustomConfig>(ConfigService.BASE_APPLICATION_URL + '/custom')
               .pipe(catchError(res => this.restExtractor.handleError(res)))
  }

  updateCustomConfig (data: CustomConfig) {
    return this.authHttp.put<CustomConfig>(ConfigService.BASE_APPLICATION_URL + '/custom', data)
               .pipe(catchError(res => this.restExtractor.handleError(res)))
  }
}