X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Badmin%2Fconfig%2Fedit-custom-config%2Fedit-custom-config.component.ts;h=04b0175a732e8fb1811cd966b100cbfe86513685;hb=e1a570abff3ebf375433e58e7362d56bd32d4cd8;hp=a9f72d7dbdd45e52534f206d1d366edbb2d63dd7;hpb=ead64cdf8d917fa0d6a20271e42378f38e5f2407;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts index a9f72d7db..04b0175a7 100644 --- a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts +++ b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts @@ -1,7 +1,9 @@ + +import omit from 'lodash-es/omit' import { forkJoin } from 'rxjs' -import { pairwise } from 'rxjs/operators' -import { ViewportScroller } from '@angular/common' -import { AfterViewChecked, Component, OnInit, ViewChild } from '@angular/core' +import { SelectOptionsItem } from 'src/types/select-options-item.model' +import { Component, OnInit } from '@angular/core' +import { ActivatedRoute, Router } from '@angular/router' import { ConfigService } from '@app/+admin/config/shared/config.service' import { Notifier } from '@app/core' import { ServerService } from '@app/core/server/server.service' @@ -13,169 +15,58 @@ import { INDEX_URL_VALIDATOR, INSTANCE_NAME_VALIDATOR, INSTANCE_SHORT_DESCRIPTION_VALIDATOR, + MAX_INSTANCE_LIVES_VALIDATOR, + MAX_LIVE_DURATION_VALIDATOR, + MAX_USER_LIVES_VALIDATOR, SEARCH_INDEX_URL_VALIDATOR, SERVICES_TWITTER_USERNAME_VALIDATOR, SIGNUP_LIMIT_VALIDATOR, + SIGNUP_MINIMUM_AGE_VALIDATOR, TRANSCODING_THREADS_VALIDATOR } from '@app/shared/form-validators/custom-config-validators' import { USER_VIDEO_QUOTA_DAILY_VALIDATOR, USER_VIDEO_QUOTA_VALIDATOR } from '@app/shared/form-validators/user-validators' -import { FormReactive, FormValidatorService, SelectOptionsItem } from '@app/shared/shared-forms' -import { NgbNav } from '@ng-bootstrap/ng-bootstrap' -import { CustomConfig, ServerConfig } from '@shared/models' +import { FormReactive, FormValidatorService } from '@app/shared/shared-forms' +import { CustomPageService } from '@app/shared/shared-main/custom-page' +import { CustomConfig, CustomPage, HTMLServerConfig } from '@shared/models' +import { EditConfigurationService } from './edit-configuration.service' + +type ComponentCustomConfig = CustomConfig & { + instanceCustomHomepage: CustomPage +} @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, AfterViewChecked { - // FIXME: use built-in router - @ViewChild('nav') nav: NgbNav +export class EditCustomConfigComponent extends FormReactive implements OnInit { + activeNav: string - initDone = false - customConfig: CustomConfig + customConfig: ComponentCustomConfig + serverConfig: HTMLServerConfig - resolutions: { id: string, label: string, description?: string }[] = [] - liveResolutions: { id: string, label: string, description?: string }[] = [] - - transcodingThreadOptions: SelectOptionsItem[] = [] - liveMaxDurationOptions: SelectOptionsItem[] = [] + homepage: CustomPage languageItems: SelectOptionsItem[] = [] categoryItems: SelectOptionsItem[] = [] - signupAlertMessage: string - - private serverConfig: ServerConfig - constructor ( - private viewportScroller: ViewportScroller, + private router: Router, + private route: ActivatedRoute, protected formValidatorService: FormValidatorService, private notifier: Notifier, private configService: ConfigService, - private serverService: ServerService + private customPage: CustomPageService, + private serverService: ServerService, + private editConfigurationService: EditConfigurationService ) { super() - - this.resolutions = [ - { - id: '0p', - label: $localize`Audio-only`, - description: $localize`A .mp4 that keeps the original audio track, with no video` - }, - { - id: '240p', - label: $localize`240p` - }, - { - id: '360p', - label: $localize`360p` - }, - { - id: '480p', - label: $localize`480p` - }, - { - id: '720p', - label: $localize`720p` - }, - { - id: '1080p', - label: $localize`1080p` - }, - { - id: '1440p', - label: $localize`1440p` - }, - { - id: '2160p', - label: $localize`2160p` - } - ] - - this.liveResolutions = this.resolutions.filter(r => r.id !== '0p') - - this.transcodingThreadOptions = [ - { id: 0, label: $localize`Auto (via ffmpeg)` }, - { id: 1, label: '1' }, - { id: 2, label: '2' }, - { id: 4, label: '4' }, - { id: 8, label: '8' }, - { id: 12, label: '12' }, - { id: 16, label: '16' }, - { id: 32, label: '32' } - ] - - this.liveMaxDurationOptions = [ - { id: -1, label: $localize`No limit` }, - { id: 1000 * 3600, label: $localize`1 hour` }, - { id: 1000 * 3600 * 3, label: $localize`3 hours` }, - { id: 1000 * 3600 * 5, label: $localize`5 hours` }, - { id: 1000 * 3600 * 10, label: $localize`10 hours` } - ] - } - - get videoQuotaOptions () { - return this.configService.videoQuotaOptions - } - - get videoQuotaDailyOptions () { - return this.configService.videoQuotaDailyOptions - } - - get availableThemes () { - return this.serverConfig.theme.registered - .map(t => t.name) - } - - get liveRTMPPort () { - return this.serverConfig.live.rtmp.port - } - - getAvailableTranscodingProfile (type: 'live' | 'vod') { - const profiles = type === 'live' - ? this.serverConfig.live.transcoding.availableProfiles - : this.serverConfig.transcoding.availableProfiles - - return profiles.map(p => ({ id: p, label: p })) - } - - getTotalTranscodingThreads () { - const transcodingEnabled = this.form.value['transcoding']['enabled'] - const transcodingThreads = this.form.value['transcoding']['threads'] - const liveTranscodingEnabled = this.form.value['live']['transcoding']['enabled'] - const liveTranscodingThreads = this.form.value['live']['transcoding']['threads'] - - // checks whether all enabled method are on fixed values and not on auto (= 0) - let noneOnAuto = !transcodingEnabled || +transcodingThreads > 0 - noneOnAuto &&= !liveTranscodingEnabled || +liveTranscodingThreads > 0 - - // count total of fixed value, repalcing auto by a single thread (knowing it will display "at least") - let value = 0 - if (transcodingEnabled) value += +transcodingThreads || 1 - if (liveTranscodingEnabled) value += +liveTranscodingThreads || 1 - - return { - value, - atMost: noneOnAuto, // auto switches everything to a least estimation since ffmpeg will take as many threads as possible - unit: value > 1 - ? $localize`threads` - : $localize`thread` - } - } - - getResolutionKey (resolution: string) { - return 'transcoding.resolutions.' + resolution } ngOnInit () { - this.serverConfig = this.serverService.getTmpConfig() - this.serverService.getConfig() - .subscribe(config => { - this.serverConfig = config - }) + this.serverConfig = this.serverService.getHTMLConfig() - const formGroupData: { [key in keyof CustomConfig ]: any } = { + const formGroupData: { [key in keyof ComponentCustomConfig ]: any } = { instance: { name: INSTANCE_NAME_VALIDATOR, shortDescription: INSTANCE_SHORT_DESCRIPTION_VALIDATOR, @@ -220,12 +111,16 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit, A }, captions: { size: CACHE_CAPTIONS_SIZE_VALIDATOR + }, + torrents: { + size: CACHE_CAPTIONS_SIZE_VALIDATOR } }, signup: { enabled: null, limit: SIGNUP_LIMIT_VALIDATOR, - requiresEmailVerification: null + requiresEmailVerification: null, + minimumAge: SIGNUP_MINIMUM_AGE_VALIDATOR }, import: { videos: { @@ -274,9 +169,9 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit, A live: { enabled: null, - maxDuration: null, - maxInstanceLives: null, - maxUserLives: null, + maxDuration: MAX_LIVE_DURATION_VALIDATOR, + maxInstanceLives: MAX_INSTANCE_LIVES_VALIDATOR, + maxUserLives: MAX_USER_LIVES_VALIDATOR, allowReplay: null, transcoding: { @@ -327,6 +222,10 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit, A disableLocalSearch: null, isDefaultSearch: null } + }, + + instanceCustomHomepage: { + content: null } } @@ -341,88 +240,57 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit, A } } - for (const resolution of this.resolutions) { + for (const resolution of this.editConfigurationService.getVODResolutions()) { defaultValues.transcoding.resolutions[resolution.id] = 'false' formGroupData.transcoding.resolutions[resolution.id] = null } - for (const resolution of this.liveResolutions) { + for (const resolution of this.editConfigurationService.getLiveResolutions()) { defaultValues.live.transcoding.resolutions[resolution.id] = 'false' formGroupData.live.transcoding.resolutions[resolution.id] = null } this.buildForm(formGroupData) - this.loadForm() - - this.checkTranscodingFields() - this.checkSignupField() - } - ngAfterViewChecked () { - if (!this.initDone) { - this.initDone = true - this.gotoAnchor() + if (this.route.snapshot.fragment) { + this.onNavChange(this.route.snapshot.fragment) } - } - - isTranscodingEnabled () { - return this.form.value['transcoding']['enabled'] === true - } - - isLiveEnabled () { - return this.form.value['live']['enabled'] === true - } - isLiveTranscodingEnabled () { - return this.form.value['live']['transcoding']['enabled'] === true - } - - isSignupEnabled () { - return this.form.value['signup']['enabled'] === true - } - - isSearchIndexEnabled () { - return this.form.value['search']['searchIndex']['enabled'] === true - } - - isAutoFollowIndexEnabled () { - return this.form.value['followings']['instance']['autoFollowIndex']['enabled'] === true + this.loadConfigAndUpdateForm() + this.loadCategoriesAndLanguages() + if (!this.serverConfig.allowEdits) { + this.form.disable() + } } - trendingVideosAlgorithmsEnabledIncludes (algorithm: string) { - return this.form.value['trending']['videos']['algorithms']['enabled'].find((e: string) => e === algorithm) - } + formValidated () { + const value: ComponentCustomConfig = this.form.getRawValue() - async formValidated () { - const value: CustomConfig = this.form.getRawValue() + forkJoin([ + this.configService.updateCustomConfig(omit(value, 'instanceCustomHomepage')), + this.customPage.updateInstanceHomepage(value.instanceCustomHomepage.content) + ]) + .subscribe({ + next: ([ resConfig ]) => { + const instanceCustomHomepage = { + content: value.instanceCustomHomepage.content + } - this.configService.updateCustomConfig(value) - .subscribe( - res => { - this.customConfig = res + this.customConfig = { ...resConfig, instanceCustomHomepage } // Reload general configuration this.serverService.resetConfig() + .subscribe(config => { + this.serverConfig = config + }) this.updateForm() this.notifier.success($localize`Configuration updated.`) }, - err => this.notifier.error(err.message) - ) - } - - gotoAnchor () { - const hashToNav = { - 'customizations': 'advanced-configuration' - } - const hash = window.location.hash.replace('#', '') - - if (hash && Object.keys(hashToNav).includes(hash)) { - this.nav.select(hashToNav[hash]) - setTimeout(() => this.viewportScroller.scrollToAnchor(hash), 100) - } + error: err => this.notifier.error(err.message) + }) } hasConsistentOptions () { @@ -432,85 +300,74 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit, A } hasLiveAllowReplayConsistentOptions () { - if (this.isTranscodingEnabled() === false && this.isLiveEnabled() && this.form.value['live']['allowReplay'] === true) { + if ( + this.editConfigurationService.isTranscodingEnabled(this.form) === false && + this.editConfigurationService.isLiveEnabled(this.form) && + this.form.value['live']['allowReplay'] === true + ) { return false } return true } + onNavChange (newActiveNav: string) { + this.activeNav = newActiveNav + + this.router.navigate([], { fragment: this.activeNav }) + } + + grabAllErrors (errorObjectArg?: any) { + const errorObject = errorObjectArg || this.formErrors + + let acc: string[] = [] + + for (const key of Object.keys(errorObject)) { + const value = errorObject[key] + if (!value) continue + + if (typeof value === 'string') { + acc.push(value) + } else { + acc = acc.concat(this.grabAllErrors(value)) + } + } + + return acc + } + private updateForm () { this.form.patchValue(this.customConfig) } - private loadForm () { + private loadConfigAndUpdateForm () { forkJoin([ this.configService.getCustomConfig(), - this.serverService.getVideoLanguages(), - this.serverService.getVideoCategories() - ]).subscribe( - ([ config, languages, categories ]) => { - this.customConfig = config - - this.languageItems = languages.map(l => ({ label: l.label, id: l.id })) - this.categoryItems = categories.map(l => ({ label: l.label, id: l.id + '' })) + this.customPage.getInstanceHomepage() + ]).subscribe({ + next: ([ config, homepage ]) => { + this.customConfig = { ...config, instanceCustomHomepage: homepage } this.updateForm() // Force form validation this.forceCheck() }, - err => this.notifier.error(err.message) - ) + error: err => this.notifier.error(err.message) + }) } - private checkTranscodingFields () { - const hlsControl = this.form.get('transcoding.hls.enabled') - const webtorrentControl = this.form.get('transcoding.webtorrent.enabled') - - webtorrentControl.valueChanges - .subscribe(newValue => { - if (newValue === false && !hlsControl.disabled) { - hlsControl.disable() - } - - if (newValue === true && !hlsControl.enabled) { - hlsControl.enable() - } - }) - - hlsControl.valueChanges - .subscribe(newValue => { - if (newValue === false && !webtorrentControl.disabled) { - webtorrentControl.disable() - } - - if (newValue === true && !webtorrentControl.enabled) { - webtorrentControl.enable() - } - }) - } + private loadCategoriesAndLanguages () { + forkJoin([ + this.serverService.getVideoLanguages(), + this.serverService.getVideoCategories() + ]).subscribe({ + next: ([ languages, categories ]) => { + this.languageItems = languages.map(l => ({ label: l.label, id: l.id })) + this.categoryItems = categories.map(l => ({ label: l.label, id: l.id + '' })) + }, - private checkSignupField () { - const signupControl = this.form.get('signup.enabled') - - signupControl.valueChanges - .pipe(pairwise()) - .subscribe(([ oldValue, newValue ]) => { - if (oldValue !== true && newValue === true) { - // tslint:disable:max-line-length - this.signupAlertMessage = $localize`You enabled signup: we automatically enabled the "Block new videos automatically" checkbox of the "Videos" section just below.` - - this.form.patchValue({ - autoBlacklist: { - videos: { - ofUsers: { - enabled: true - } - } - } - }) - } - }) + error: err => this.notifier.error(err.message) + }) } }