]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts
Add delete/manual approval instance followers in client
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / config / edit-custom-config / edit-custom-config.component.ts
CommitLineData
fd206f0b 1import { Component, OnInit } from '@angular/core'
fd206f0b
C
2import { ConfigService } from '@app/+admin/config/shared/config.service'
3import { ServerService } from '@app/core/server/server.service'
e309822b 4import { CustomConfigValidatorsService, FormReactive, UserValidatorsService } from '@app/shared'
f8b2c1b4 5import { Notifier } from '@app/core'
09cababd 6import { CustomConfig } from '../../../../../../shared/models/server/custom-config.model'
b1d40cff 7import { I18n } from '@ngx-translate/i18n-polyfill'
0dc64777 8import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
fd206f0b
C
9
10@Component({
11 selector: 'my-edit-custom-config',
12 templateUrl: './edit-custom-config.component.html',
13 styleUrls: [ './edit-custom-config.component.scss' ]
14})
15export class EditCustomConfigComponent extends FormReactive implements OnInit {
bee0abff 16 customConfig: CustomConfig
bee0abff 17
3827c3b3
C
18 resolutions: string[] = []
19 transcodingThreadOptions: { label: string, value: number }[] = []
fd206f0b 20
fd206f0b 21 constructor (
d18d6478 22 protected formValidatorService: FormValidatorService,
e309822b
C
23 private customConfigValidatorsService: CustomConfigValidatorsService,
24 private userValidatorsService: UserValidatorsService,
f8b2c1b4 25 private notifier: Notifier,
fd206f0b 26 private configService: ConfigService,
1f30a185 27 private serverService: ServerService,
b1d40cff 28 private i18n: I18n
fd206f0b
C
29 ) {
30 super()
3827c3b3
C
31
32 this.resolutions = [
33 this.i18n('240p'),
34 this.i18n('360p'),
35 this.i18n('480p'),
36 this.i18n('720p'),
37 this.i18n('1080p')
38 ]
39
40 this.transcodingThreadOptions = [
41 { value: 0, label: this.i18n('Auto (via ffmpeg)') },
42 { value: 1, label: '1' },
43 { value: 2, label: '2' },
44 { value: 4, label: '4' },
45 { value: 8, label: '8' }
46 ]
fd206f0b
C
47 }
48
41a676db 49 get videoQuotaOptions () {
3827c3b3 50 return this.configService.videoQuotaOptions
41a676db
C
51 }
52
53 get videoQuotaDailyOptions () {
3827c3b3 54 return this.configService.videoQuotaDailyOptions
41a676db
C
55 }
56
fd206f0b 57 getResolutionKey (resolution: string) {
3866f1a0 58 return 'transcoding.resolutions.' + resolution
fd206f0b
C
59 }
60
d18d6478 61 ngOnInit () {
3866f1a0
C
62 const formGroupData: { [key in keyof CustomConfig ]: any } = {
63 instance: {
64 name: this.customConfigValidatorsService.INSTANCE_NAME,
65 shortDescription: this.customConfigValidatorsService.INSTANCE_SHORT_DESCRIPTION,
66 description: null,
67 terms: null,
68 defaultClientRoute: null,
f8802489 69 isNSFW: false,
3866f1a0
C
70 defaultNSFWPolicy: null,
71 customizations: {
72 javascript: null,
73 css: null
74 }
75 },
76 services: {
77 twitter: {
78 username: this.customConfigValidatorsService.SERVICES_TWITTER_USERNAME,
79 whitelisted: null
80 }
81 },
82 cache: {
83 previews: {
84 size: this.customConfigValidatorsService.CACHE_PREVIEWS_SIZE
85 },
86 captions: {
87 size: this.customConfigValidatorsService.CACHE_CAPTIONS_SIZE
88 }
89 },
90 signup: {
91 enabled: null,
92 limit: this.customConfigValidatorsService.SIGNUP_LIMIT,
93 requiresEmailVerification: null
94 },
95 import: {
96 videos: {
97 http: {
98 enabled: null
99 },
100 torrent: {
101 enabled: null
102 }
103 }
104 },
105 admin: {
106 email: this.customConfigValidatorsService.ADMIN_EMAIL
107 },
108 contactForm: {
109 enabled: null
110 },
111 user: {
112 videoQuota: this.userValidatorsService.USER_VIDEO_QUOTA,
113 videoQuotaDaily: this.userValidatorsService.USER_VIDEO_QUOTA_DAILY
114 },
115 transcoding: {
116 enabled: null,
117 threads: this.customConfigValidatorsService.TRANSCODING_THREADS,
118 allowAdditionalExtensions: null,
119 resolutions: {}
7ccddd7b
JM
120 },
121 autoBlacklist: {
122 videos: {
123 ofUsers: {
124 enabled: null
125 }
126 }
0dc64777
C
127 },
128 followers: {
129 instance: {
130 enabled: null,
131 manualApproval: null
132 }
3866f1a0 133 }
fd206f0b
C
134 }
135
3866f1a0
C
136 const defaultValues = {
137 transcoding: {
138 resolutions: {}
139 }
140 }
fd206f0b 141 for (const resolution of this.resolutions) {
3866f1a0
C
142 defaultValues.transcoding.resolutions[resolution] = 'false'
143 formGroupData.transcoding.resolutions[resolution] = null
fd206f0b
C
144 }
145
d18d6478 146 this.buildForm(formGroupData)
fd206f0b
C
147
148 this.configService.getCustomConfig()
149 .subscribe(
150 res => {
151 this.customConfig = res
152
153 this.updateForm()
d63fd4f7
C
154 // Force form validation
155 this.forceCheck()
fd206f0b
C
156 },
157
f8b2c1b4 158 err => this.notifier.error(err.message)
fd206f0b
C
159 )
160 }
161
162 isTranscodingEnabled () {
3866f1a0 163 return this.form.value['transcoding']['enabled'] === true
fd206f0b
C
164 }
165
166 isSignupEnabled () {
3866f1a0 167 return this.form.value['signup']['enabled'] === true
fd206f0b
C
168 }
169
1f30a185 170 async formValidated () {
3866f1a0 171 this.configService.updateCustomConfig(this.form.value)
fd206f0b
C
172 .subscribe(
173 res => {
174 this.customConfig = res
175
176 // Reload general configuration
177 this.serverService.loadConfig()
178
179 this.updateForm()
66b16caf 180
f8b2c1b4 181 this.notifier.success(this.i18n('Configuration updated.'))
fd206f0b
C
182 },
183
f8b2c1b4 184 err => this.notifier.error(err.message)
fd206f0b
C
185 )
186 }
187
188 private updateForm () {
3866f1a0 189 this.form.patchValue(this.customConfig)
fd206f0b
C
190 }
191
192}