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

294 lines
7.3 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'
import { FormValidatorService } from '@app/shared/forms/form-validators/form-validator.service'
2019-08-23 15:23:27 +02:00
import { SelectItem } from 'primeng/api'
import { forkJoin } from 'rxjs'
2019-12-18 15:31:54 +01:00
import { ServerConfig } from '@shared/models'
@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
resolutions: { id: string, label: string, description?: string }[] = []
2018-09-26 14:46:54 +02:00
transcodingThreadOptions: { label: string, value: number }[] = []
2019-08-23 15:23:27 +02:00
languageItems: SelectItem[] = []
categoryItems: SelectItem[] = []
2019-12-18 15:31:54 +01:00
private serverConfig: ServerConfig
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 = [
2019-11-27 10:13:31 +01:00
{
id: '0p',
label: this.i18n('Audio-only'),
description: this.i18n('A <code>.mp4</code> that keeps the original audio track, with no video')
},
{
id: '240p',
label: this.i18n('240p')
},
{
id: '360p',
label: this.i18n('360p')
},
{
id: '480p',
label: this.i18n('480p')
},
{
id: '720p',
label: this.i18n('720p')
},
{
id: '1080p',
label: this.i18n('1080p')
},
{
id: '2160p',
label: this.i18n('2160p')
}
2018-09-26 14:46:54 +02:00
]
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
}
2019-07-09 11:45:19 +02:00
get availableThemes () {
2019-12-18 15:31:54 +01:00
return this.serverConfig.theme.registered
2019-07-10 14:06:19 +02:00
.map(t => t.name)
2019-07-09 11:45:19 +02:00
}
getResolutionKey (resolution: string) {
return 'transcoding.resolutions.' + resolution
}
2018-06-05 10:58:45 +02:00
ngOnInit () {
2019-12-18 15:31:54 +01:00
this.serverConfig = this.serverService.getTmpConfig()
this.serverService.getConfig()
.subscribe(config => this.serverConfig = config)
const formGroupData: { [key in keyof CustomConfig ]: any } = {
instance: {
name: this.customConfigValidatorsService.INSTANCE_NAME,
shortDescription: this.customConfigValidatorsService.INSTANCE_SHORT_DESCRIPTION,
description: null,
2019-08-23 15:23:27 +02:00
2019-02-20 15:36:43 +01:00
isNSFW: false,
defaultNSFWPolicy: null,
2019-08-23 15:23:27 +02:00
terms: null,
codeOfConduct: null,
2019-09-03 09:49:04 +02:00
creationReason: null,
2019-08-23 15:23:27 +02:00
moderationInformation: null,
administrator: null,
maintenanceLifetime: null,
businessModel: null,
hardwareInformation: null,
2019-08-23 15:23:27 +02:00
categories: null,
languages: null,
defaultClientRoute: null,
customizations: {
javascript: null,
css: null
}
},
2019-07-09 11:45:19 +02:00
theme: {
default: 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,
2019-05-16 16:55:34 +02:00
allowAudioFiles: null,
resolutions: {},
hls: {
enabled: null
2019-11-21 17:01:24 +01:00
},
webtorrent: {
enabled: null
}
},
autoBlacklist: {
videos: {
ofUsers: {
enabled: null
}
}
},
followers: {
instance: {
enabled: null,
manualApproval: null
}
2019-09-04 14:30:34 +02:00
},
followings: {
instance: {
autoFollowBack: {
enabled: null
},
autoFollowIndex: {
enabled: null,
indexUrl: this.customConfigValidatorsService.INDEX_URL
}
}
}
}
const defaultValues = {
transcoding: {
resolutions: {}
}
}
for (const resolution of this.resolutions) {
defaultValues.transcoding.resolutions[resolution.id] = 'false'
formGroupData.transcoding.resolutions[resolution.id] = null
}
2018-06-05 10:58:45 +02:00
this.buildForm(formGroupData)
2019-08-23 15:23:27 +02:00
forkJoin([
this.configService.getCustomConfig(),
2019-12-18 15:31:54 +01:00
this.serverService.getVideoLanguages(),
this.serverService.getVideoCategories()
2019-08-23 15:23:27 +02:00
]).subscribe(
2019-12-18 15:31:54 +01:00
([ config, languages, categories ]) => {
2019-08-23 15:23:27 +02:00
this.customConfig = config
2019-08-23 15:23:27 +02:00
this.languageItems = languages.map(l => ({ label: l.label, value: l.id }))
this.categoryItems = categories.map(l => ({ label: l.label, value: l.id }))
this.updateForm()
// 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)
2019-12-18 15:31:54 +01:00
.pipe(
)
.subscribe(
res => {
this.customConfig = res
// Reload general configuration
2019-12-18 15:31:54 +01:00
this.serverService.resetConfig()
this.updateForm()
this.notifier.success(this.i18n('Configuration updated.'))
},
err => this.notifier.error(err.message)
)
}
2019-08-23 15:23:27 +02:00
getSelectedLanguageLabel () {
return this.i18n('{{\'{0} languages selected')
}
getDefaultLanguageLabel () {
return this.i18n('No language')
}
getSelectedCategoryLabel () {
return this.i18n('{{\'{0} categories selected')
}
getDefaultCategoryLabel () {
return this.i18n('No category')
}
private updateForm () {
this.form.patchValue(this.customConfig)
}
}