PeerTube/client/src/app/+admin/config/edit-custom-config/edit-custom-config.componen...

187 lines
4.9 KiB
TypeScript
Raw Normal View History

import { Component, OnInit } from '@angular/core'
import { ConfigService } from '@app/+admin/config/shared/config.service'
import { ServerService } from '@app/core/server/server.service'
2018-06-05 15:01:45 +02:00
import { CustomConfigValidatorsService, FormReactive, UserValidatorsService } from '@app/shared'
import { Notifier } from '@app/core'
2018-02-28 18:04:46 +01:00
import { CustomConfig } from '../../../../../../shared/models/server/custom-config.model'
2018-06-04 16:21:17 +02:00
import { I18n } from '@ngx-translate/i18n-polyfill'
2018-06-05 10:58:45 +02:00
import { BuildFormDefaultValues, FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
@Component({
selector: 'my-edit-custom-config',
templateUrl: './edit-custom-config.component.html',
styleUrls: [ './edit-custom-config.component.scss' ]
})
export class EditCustomConfigComponent extends FormReactive implements OnInit {
customConfig: CustomConfig
2018-09-26 14:46:54 +02:00
resolutions: string[] = []
transcodingThreadOptions: { label: string, value: number }[] = []
constructor (
2018-06-05 10:58:45 +02:00
protected formValidatorService: FormValidatorService,
2018-06-05 15:01:45 +02:00
private customConfigValidatorsService: CustomConfigValidatorsService,
private userValidatorsService: UserValidatorsService,
private notifier: Notifier,
private configService: ConfigService,
private serverService: ServerService,
2018-06-04 16:21:17 +02:00
private i18n: I18n
) {
super()
2018-09-26 14:46:54 +02:00
this.resolutions = [
this.i18n('240p'),
this.i18n('360p'),
this.i18n('480p'),
this.i18n('720p'),
this.i18n('1080p')
]
this.transcodingThreadOptions = [
{ value: 0, label: this.i18n('Auto (via ffmpeg)') },
{ value: 1, label: '1' },
{ value: 2, label: '2' },
{ value: 4, label: '4' },
{ value: 8, label: '8' }
]
}
2018-08-28 17:39:29 +02:00
get videoQuotaOptions () {
2018-09-26 14:46:54 +02:00
return this.configService.videoQuotaOptions
2018-08-28 17:39:29 +02:00
}
get videoQuotaDailyOptions () {
2018-09-26 14:46:54 +02:00
return this.configService.videoQuotaDailyOptions
2018-08-28 17:39:29 +02:00
}
getResolutionKey (resolution: string) {
return 'transcoding.resolutions.' + resolution
}
2018-06-05 10:58:45 +02:00
ngOnInit () {
const formGroupData: { [key in keyof CustomConfig ]: any } = {
instance: {
name: this.customConfigValidatorsService.INSTANCE_NAME,
shortDescription: this.customConfigValidatorsService.INSTANCE_SHORT_DESCRIPTION,
description: null,
terms: null,
defaultClientRoute: null,
2019-02-20 15:36:43 +01:00
isNSFW: false,
defaultNSFWPolicy: null,
customizations: {
javascript: null,
css: null
}
},
services: {
twitter: {
username: this.customConfigValidatorsService.SERVICES_TWITTER_USERNAME,
whitelisted: null
}
},
cache: {
previews: {
size: this.customConfigValidatorsService.CACHE_PREVIEWS_SIZE
},
captions: {
size: this.customConfigValidatorsService.CACHE_CAPTIONS_SIZE
}
},
signup: {
enabled: null,
limit: this.customConfigValidatorsService.SIGNUP_LIMIT,
requiresEmailVerification: null
},
import: {
videos: {
http: {
enabled: null
},
torrent: {
enabled: null
}
}
},
admin: {
email: this.customConfigValidatorsService.ADMIN_EMAIL
},
contactForm: {
enabled: null
},
user: {
videoQuota: this.userValidatorsService.USER_VIDEO_QUOTA,
videoQuotaDaily: this.userValidatorsService.USER_VIDEO_QUOTA_DAILY
},
transcoding: {
enabled: null,
threads: this.customConfigValidatorsService.TRANSCODING_THREADS,
allowAdditionalExtensions: null,
resolutions: {}
},
autoBlacklist: {
videos: {
ofUsers: {
enabled: null
}
}
}
}
const defaultValues = {
transcoding: {
resolutions: {}
}
}
for (const resolution of this.resolutions) {
defaultValues.transcoding.resolutions[resolution] = 'false'
formGroupData.transcoding.resolutions[resolution] = null
}
2018-06-05 10:58:45 +02:00
this.buildForm(formGroupData)
this.configService.getCustomConfig()
.subscribe(
res => {
this.customConfig = res
this.updateForm()
2018-03-23 09:31:42 +01:00
// Force form validation
this.forceCheck()
},
err => this.notifier.error(err.message)
)
}
isTranscodingEnabled () {
return this.form.value['transcoding']['enabled'] === true
}
isSignupEnabled () {
return this.form.value['signup']['enabled'] === true
}
async formValidated () {
this.configService.updateCustomConfig(this.form.value)
.subscribe(
res => {
this.customConfig = res
// Reload general configuration
this.serverService.loadConfig()
this.updateForm()
this.notifier.success(this.i18n('Configuration updated.'))
},
err => this.notifier.error(err.message)
)
}
private updateForm () {
this.form.patchValue(this.customConfig)
}
}