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