]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts
Fix ng select in admin
[github/Chocobozzz/PeerTube.git] / client / src / app / +admin / config / edit-custom-config / edit-custom-config.component.ts
CommitLineData
ccc00cb2 1import { forkJoin } from 'rxjs'
45e0d669 2import { ViewportScroller } from '@angular/common'
67ed6552
C
3import { AfterViewChecked, Component, OnInit, ViewChild } from '@angular/core'
4import { ConfigService } from '@app/+admin/config/shared/config.service'
5import { Notifier } from '@app/core'
6import { ServerService } from '@app/core/server/server.service'
52c4976f 7import {
7ed1edbb
C
8 ADMIN_EMAIL_VALIDATOR,
9 CACHE_CAPTIONS_SIZE_VALIDATOR,
10 CACHE_PREVIEWS_SIZE_VALIDATOR,
11 INDEX_URL_VALIDATOR,
12 INSTANCE_NAME_VALIDATOR,
13 INSTANCE_SHORT_DESCRIPTION_VALIDATOR,
14 SEARCH_INDEX_URL_VALIDATOR,
15 SERVICES_TWITTER_USERNAME_VALIDATOR,
16 SIGNUP_LIMIT_VALIDATOR,
17 TRANSCODING_THREADS_VALIDATOR
18} from '@app/shared/form-validators/custom-config-validators'
19import { USER_VIDEO_QUOTA_DAILY_VALIDATOR, USER_VIDEO_QUOTA_VALIDATOR } from '@app/shared/form-validators/user-validators'
20import { FormReactive, FormValidatorService, SelectOptionsItem } from '@app/shared/shared-forms'
45c6bcf3 21import { NgbNav } from '@ng-bootstrap/ng-bootstrap'
67ed6552 22import { CustomConfig, ServerConfig } from '@shared/models'
16a173bb 23import { pairwise } from 'rxjs/operators'
fd206f0b
C
24
25@Component({
26 selector: 'my-edit-custom-config',
27 templateUrl: './edit-custom-config.component.html',
28 styleUrls: [ './edit-custom-config.component.scss' ]
29})
45e0d669 30export class EditCustomConfigComponent extends FormReactive implements OnInit, AfterViewChecked {
45c6bcf3
C
31 // FIXME: use built-in router
32 @ViewChild('nav') nav: NgbNav
45e0d669
RK
33
34 initDone = false
bee0abff 35 customConfig: CustomConfig
bee0abff 36
46db9430 37 resolutions: { id: string, label: string, description?: string }[] = []
c6c0fa6c 38 liveResolutions: { id: string, label: string, description?: string }[] = []
3827c3b3 39 transcodingThreadOptions: { label: string, value: number }[] = []
fb719404 40 liveMaxDurationOptions: { label: string, value: number }[] = []
fd206f0b 41
52c4976f
C
42 languageItems: SelectOptionsItem[] = []
43 categoryItems: SelectOptionsItem[] = []
ccc00cb2 44
16a173bb
C
45 signupAlertMessage: string
46
ba430d75
C
47 private serverConfig: ServerConfig
48
fd206f0b 49 constructor (
45e0d669 50 private viewportScroller: ViewportScroller,
d18d6478 51 protected formValidatorService: FormValidatorService,
f8b2c1b4 52 private notifier: Notifier,
fd206f0b 53 private configService: ConfigService,
66357162 54 private serverService: ServerService
fd206f0b
C
55 ) {
56 super()
3827c3b3
C
57
58 this.resolutions = [
2fa9c40e 59 {
5c7d6508 60 id: '0p',
66357162
C
61 label: $localize`Audio-only`,
62 description: $localize`A <code>.mp4</code> that keeps the original audio track, with no video`
5c7d6508 63 },
00aa1f0d
C
64 {
65 id: '240p',
66357162 66 label: $localize`240p`
00aa1f0d
C
67 },
68 {
69 id: '360p',
66357162 70 label: $localize`360p`
00aa1f0d
C
71 },
72 {
73 id: '480p',
66357162 74 label: $localize`480p`
00aa1f0d
C
75 },
76 {
77 id: '720p',
66357162 78 label: $localize`720p`
00aa1f0d
C
79 },
80 {
81 id: '1080p',
66357162 82 label: $localize`1080p`
00aa1f0d
C
83 },
84 {
85 id: '2160p',
66357162 86 label: $localize`2160p`
00aa1f0d 87 }
3827c3b3
C
88 ]
89
c6c0fa6c
C
90 this.liveResolutions = this.resolutions.filter(r => r.id !== '0p')
91
3827c3b3 92 this.transcodingThreadOptions = [
66357162 93 { value: 0, label: $localize`Auto (via ffmpeg)` },
3827c3b3
C
94 { value: 1, label: '1' },
95 { value: 2, label: '2' },
96 { value: 4, label: '4' },
97 { value: 8, label: '8' }
98 ]
fb719404
C
99
100 this.liveMaxDurationOptions = [
210856a7 101 { value: null, label: $localize`No limit` },
fb719404
C
102 { value: 1000 * 3600, label: $localize`1 hour` },
103 { value: 1000 * 3600 * 3, label: $localize`3 hours` },
104 { value: 1000 * 3600 * 5, label: $localize`5 hours` },
105 { value: 1000 * 3600 * 10, label: $localize`10 hours` }
106 ]
fd206f0b
C
107 }
108
41a676db 109 get videoQuotaOptions () {
3827c3b3 110 return this.configService.videoQuotaOptions
41a676db
C
111 }
112
113 get videoQuotaDailyOptions () {
3827c3b3 114 return this.configService.videoQuotaDailyOptions
41a676db
C
115 }
116
7cd4d2ba 117 get availableThemes () {
ba430d75 118 return this.serverConfig.theme.registered
ffb321be 119 .map(t => t.name)
7cd4d2ba
C
120 }
121
ea5cdc11
RK
122 getTotalTranscodingThreads () {
123 const transcodingEnabled = this.form.value['transcoding']['enabled']
124 const transcodingThreads = this.form.value['transcoding']['threads']
125 const liveTranscodingEnabled = this.form.value['live']['transcoding']['enabled']
126 const liveTranscodingThreads = this.form.value['live']['transcoding']['threads']
127
128 // checks whether all enabled method are on fixed values and not on auto (= 0)
129 let noneOnAuto = !transcodingEnabled || +transcodingThreads > 0
130 noneOnAuto &&= !liveTranscodingEnabled || +liveTranscodingThreads > 0
131
132 // count total of fixed value, repalcing auto by a single thread (knowing it will display "at least")
133 let value = 0
134 if (transcodingEnabled) value += +transcodingThreads || 1
135 if (liveTranscodingEnabled) value += +liveTranscodingThreads || 1
136
137 return {
138 value,
139 atMost: noneOnAuto, // auto switches everything to a least estimation since ffmpeg will take as many threads as possible
140 unit: value > 1
141 ? $localize`threads`
142 : $localize`thread`
143 }
144 }
145
fd206f0b 146 getResolutionKey (resolution: string) {
3866f1a0 147 return 'transcoding.resolutions.' + resolution
fd206f0b
C
148 }
149
d18d6478 150 ngOnInit () {
ba430d75
C
151 this.serverConfig = this.serverService.getTmpConfig()
152 this.serverService.getConfig()
fb719404
C
153 .subscribe(config => {
154 this.serverConfig = config
155 })
ba430d75 156
3866f1a0
C
157 const formGroupData: { [key in keyof CustomConfig ]: any } = {
158 instance: {
7ed1edbb
C
159 name: INSTANCE_NAME_VALIDATOR,
160 shortDescription: INSTANCE_SHORT_DESCRIPTION_VALIDATOR,
3866f1a0 161 description: null,
ccc00cb2 162
f8802489 163 isNSFW: false,
3866f1a0 164 defaultNSFWPolicy: null,
ccc00cb2
C
165
166 terms: null,
167 codeOfConduct: null,
8ae03c37
C
168
169 creationReason: null,
ccc00cb2
C
170 moderationInformation: null,
171 administrator: null,
172 maintenanceLifetime: null,
173 businessModel: null,
174
be04c6fd
C
175 hardwareInformation: null,
176
ccc00cb2
C
177 categories: null,
178 languages: null,
179
180 defaultClientRoute: null,
181
3866f1a0
C
182 customizations: {
183 javascript: null,
184 css: null
185 }
186 },
7cd4d2ba
C
187 theme: {
188 default: null
189 },
3866f1a0
C
190 services: {
191 twitter: {
7ed1edbb 192 username: SERVICES_TWITTER_USERNAME_VALIDATOR,
3866f1a0
C
193 whitelisted: null
194 }
195 },
196 cache: {
197 previews: {
7ed1edbb 198 size: CACHE_PREVIEWS_SIZE_VALIDATOR
3866f1a0
C
199 },
200 captions: {
7ed1edbb 201 size: CACHE_CAPTIONS_SIZE_VALIDATOR
3866f1a0
C
202 }
203 },
204 signup: {
205 enabled: null,
7ed1edbb 206 limit: SIGNUP_LIMIT_VALIDATOR,
3866f1a0
C
207 requiresEmailVerification: null
208 },
209 import: {
210 videos: {
211 http: {
212 enabled: null
213 },
214 torrent: {
215 enabled: null
216 }
217 }
218 },
219 admin: {
7ed1edbb 220 email: ADMIN_EMAIL_VALIDATOR
3866f1a0
C
221 },
222 contactForm: {
223 enabled: null
224 },
225 user: {
7ed1edbb
C
226 videoQuota: USER_VIDEO_QUOTA_VALIDATOR,
227 videoQuotaDaily: USER_VIDEO_QUOTA_DAILY_VALIDATOR
3866f1a0
C
228 },
229 transcoding: {
230 enabled: null,
7ed1edbb 231 threads: TRANSCODING_THREADS_VALIDATOR,
3866f1a0 232 allowAdditionalExtensions: null,
536598cf 233 allowAudioFiles: null,
5d9e4eaa
C
234 resolutions: {},
235 hls: {
236 enabled: null
5a71acd2
C
237 },
238 webtorrent: {
239 enabled: null
5d9e4eaa 240 }
7ccddd7b 241 },
c6c0fa6c
C
242 live: {
243 enabled: null,
244
fb719404 245 maxDuration: null,
a056ca48
C
246 maxInstanceLives: null,
247 maxUserLives: null,
fb719404
C
248 allowReplay: null,
249
c6c0fa6c
C
250 transcoding: {
251 enabled: null,
252 threads: TRANSCODING_THREADS_VALIDATOR,
253 resolutions: {}
254 }
255 },
7ccddd7b
JM
256 autoBlacklist: {
257 videos: {
258 ofUsers: {
259 enabled: null
260 }
261 }
0dc64777
C
262 },
263 followers: {
264 instance: {
265 enabled: null,
266 manualApproval: null
267 }
e1b49ee5
C
268 },
269 followings: {
270 instance: {
271 autoFollowBack: {
272 enabled: null
273 },
274 autoFollowIndex: {
275 enabled: null,
7ed1edbb 276 indexUrl: INDEX_URL_VALIDATOR
e1b49ee5
C
277 }
278 }
72c33e71
C
279 },
280 broadcastMessage: {
281 enabled: null,
282 level: null,
283 dismissable: null,
284 message: null
5fb2e288
C
285 },
286 search: {
287 remoteUri: {
288 users: null,
289 anonymous: null
290 },
291 searchIndex: {
292 enabled: null,
7ed1edbb 293 url: SEARCH_INDEX_URL_VALIDATOR,
5fb2e288
C
294 disableLocalSearch: null,
295 isDefaultSearch: null
296 }
3866f1a0 297 }
fd206f0b
C
298 }
299
3866f1a0
C
300 const defaultValues = {
301 transcoding: {
302 resolutions: {}
c6c0fa6c
C
303 },
304 live: {
305 transcoding: {
306 resolutions: {}
307 }
3866f1a0
C
308 }
309 }
c6c0fa6c 310
fd206f0b 311 for (const resolution of this.resolutions) {
00aa1f0d
C
312 defaultValues.transcoding.resolutions[resolution.id] = 'false'
313 formGroupData.transcoding.resolutions[resolution.id] = null
fd206f0b
C
314 }
315
c6c0fa6c
C
316 for (const resolution of this.liveResolutions) {
317 defaultValues.live.transcoding.resolutions[resolution.id] = 'false'
318 formGroupData.live.transcoding.resolutions[resolution.id] = null
319 }
320
d18d6478 321 this.buildForm(formGroupData)
04cda1d7 322 this.loadForm()
16a173bb 323
04cda1d7 324 this.checkTranscodingFields()
16a173bb 325 this.checkSignupField()
fd206f0b
C
326 }
327
45e0d669
RK
328 ngAfterViewChecked () {
329 if (!this.initDone) {
330 this.initDone = true
331 this.gotoAnchor()
332 }
333 }
334
fd206f0b 335 isTranscodingEnabled () {
3866f1a0 336 return this.form.value['transcoding']['enabled'] === true
fd206f0b
C
337 }
338
c6c0fa6c
C
339 isLiveEnabled () {
340 return this.form.value['live']['enabled'] === true
341 }
342
343 isLiveTranscodingEnabled () {
344 return this.form.value['live']['transcoding']['enabled'] === true
345 }
346
fd206f0b 347 isSignupEnabled () {
3866f1a0 348 return this.form.value['signup']['enabled'] === true
fd206f0b
C
349 }
350
5fb2e288
C
351 isSearchIndexEnabled () {
352 return this.form.value['search']['searchIndex']['enabled'] === true
353 }
354
4ee6a8b1
C
355 isAutoFollowIndexEnabled () {
356 return this.form.value['followings']['instance']['autoFollowIndex']['enabled'] === true
357 }
358
1f30a185 359 async formValidated () {
210856a7
C
360 const value: CustomConfig = this.form.getRawValue()
361
362 // Transform "null" to null
363 const maxDuration = value.live.maxDuration as any
364 if (maxDuration === 'null') value.live.maxDuration = null
365
366 this.configService.updateCustomConfig(value)
fd206f0b
C
367 .subscribe(
368 res => {
369 this.customConfig = res
370
371 // Reload general configuration
ba430d75 372 this.serverService.resetConfig()
fd206f0b
C
373
374 this.updateForm()
66b16caf 375
66357162 376 this.notifier.success($localize`Configuration updated.`)
fd206f0b
C
377 },
378
f8b2c1b4 379 err => this.notifier.error(err.message)
fd206f0b
C
380 )
381 }
382
45e0d669 383 gotoAnchor () {
45c6bcf3 384 const hashToNav = {
45e0d669
RK
385 'customizations': 'advanced-configuration'
386 }
387 const hash = window.location.hash.replace('#', '')
388
45c6bcf3
C
389 if (hash && Object.keys(hashToNav).includes(hash)) {
390 this.nav.select(hashToNav[hash])
45e0d669
RK
391 setTimeout(() => this.viewportScroller.scrollToAnchor(hash), 100)
392 }
393 }
394
fb719404
C
395 hasConsistentOptions () {
396 if (this.hasLiveAllowReplayConsistentOptions()) return true
397
398 return false
399 }
400
401 hasLiveAllowReplayConsistentOptions () {
402 if (this.isTranscodingEnabled() === false && this.isLiveEnabled() && this.form.value['live']['allowReplay'] === true) {
403 return false
404 }
405
406 return true
407 }
408
fd206f0b 409 private updateForm () {
3866f1a0 410 this.form.patchValue(this.customConfig)
fd206f0b 411 }
04cda1d7
C
412
413 private loadForm () {
414 forkJoin([
415 this.configService.getCustomConfig(),
416 this.serverService.getVideoLanguages(),
417 this.serverService.getVideoCategories()
418 ]).subscribe(
419 ([ config, languages, categories ]) => {
420 this.customConfig = config
421
52c4976f
C
422 this.languageItems = languages.map(l => ({ label: l.label, id: l.id }))
423 this.categoryItems = categories.map(l => ({ label: l.label, id: l.id + '' }))
04cda1d7
C
424
425 this.updateForm()
426 // Force form validation
427 this.forceCheck()
428 },
429
430 err => this.notifier.error(err.message)
431 )
432 }
433
434 private checkTranscodingFields () {
435 const hlsControl = this.form.get('transcoding.hls.enabled')
436 const webtorrentControl = this.form.get('transcoding.webtorrent.enabled')
437
438 webtorrentControl.valueChanges
439 .subscribe(newValue => {
440 if (newValue === false && !hlsControl.disabled) {
441 hlsControl.disable()
442 }
443
444 if (newValue === true && !hlsControl.enabled) {
445 hlsControl.enable()
446 }
447 })
448
449 hlsControl.valueChanges
450 .subscribe(newValue => {
451 if (newValue === false && !webtorrentControl.disabled) {
452 webtorrentControl.disable()
453 }
454
455 if (newValue === true && !webtorrentControl.enabled) {
456 webtorrentControl.enable()
457 }
458 })
459 }
16a173bb
C
460
461 private checkSignupField () {
462 const signupControl = this.form.get('signup.enabled')
463
464 signupControl.valueChanges
465 .pipe(pairwise())
466 .subscribe(([ oldValue, newValue ]) => {
467 if (oldValue !== true && newValue === true) {
468 // tslint:disable:max-line-length
469 this.signupAlertMessage = $localize`You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.`
470
471 this.form.patchValue({
472 autoBlacklist: {
473 videos: {
474 ofUsers: {
475 enabled: true
476 }
477 }
478 }
479 })
480 }
481 })
482 }
fd206f0b 483}