mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 19:42:24 +02:00
109 lines
3.2 KiB
TypeScript
109 lines
3.2 KiB
TypeScript
import { Component, OnDestroy, OnInit } from '@angular/core'
|
|
import { PeerTubePlugin } from '@shared/models/plugins/peertube-plugin.model'
|
|
import { I18n } from '@ngx-translate/i18n-polyfill'
|
|
import { PluginApiService } from '@app/+admin/plugins/shared/plugin-api.service'
|
|
import { Notifier } from '@app/core'
|
|
import { ActivatedRoute } from '@angular/router'
|
|
import { Subscription } from 'rxjs'
|
|
import { map, switchMap } from 'rxjs/operators'
|
|
import { BuildFormArgument, FormReactive, FormValidatorService } from '@app/shared'
|
|
import { RegisterServerSettingOptions } from '@shared/models/plugins/register-server-setting.model'
|
|
|
|
@Component({
|
|
selector: 'my-plugin-show-installed',
|
|
templateUrl: './plugin-show-installed.component.html',
|
|
styleUrls: [ './plugin-show-installed.component.scss' ]
|
|
})
|
|
export class PluginShowInstalledComponent extends FormReactive implements OnInit, OnDestroy {
|
|
plugin: PeerTubePlugin
|
|
registeredSettings: RegisterServerSettingOptions[] = []
|
|
pluginTypeLabel: string
|
|
|
|
private sub: Subscription
|
|
|
|
constructor (
|
|
protected formValidatorService: FormValidatorService,
|
|
private i18n: I18n,
|
|
private pluginService: PluginApiService,
|
|
private notifier: Notifier,
|
|
private route: ActivatedRoute
|
|
) {
|
|
super()
|
|
}
|
|
|
|
ngOnInit () {
|
|
this.sub = this.route.params.subscribe(
|
|
routeParams => {
|
|
const npmName = routeParams['npmName']
|
|
|
|
this.loadPlugin(npmName)
|
|
}
|
|
)
|
|
}
|
|
|
|
ngOnDestroy () {
|
|
if (this.sub) this.sub.unsubscribe()
|
|
}
|
|
|
|
formValidated () {
|
|
const settings = this.form.value
|
|
|
|
this.pluginService.updatePluginSettings(this.plugin.name, this.plugin.type, settings)
|
|
.subscribe(
|
|
() => {
|
|
this.notifier.success(this.i18n('Settings updated.'))
|
|
},
|
|
|
|
err => this.notifier.error(err.message)
|
|
)
|
|
}
|
|
|
|
hasRegisteredSettings () {
|
|
return Array.isArray(this.registeredSettings) && this.registeredSettings.length !== 0
|
|
}
|
|
|
|
private loadPlugin (npmName: string) {
|
|
this.pluginService.getPlugin(npmName)
|
|
.pipe(switchMap(plugin => {
|
|
return this.pluginService.getPluginRegisteredSettings(plugin.name, plugin.type)
|
|
.pipe(map(data => ({ plugin, registeredSettings: data.registeredSettings })))
|
|
}))
|
|
.subscribe(
|
|
({ plugin, registeredSettings }) => {
|
|
this.plugin = plugin
|
|
this.registeredSettings = registeredSettings
|
|
|
|
this.pluginTypeLabel = this.pluginService.getPluginTypeLabel(this.plugin.type)
|
|
|
|
this.buildSettingsForm()
|
|
},
|
|
|
|
err => this.notifier.error(err.message)
|
|
)
|
|
}
|
|
|
|
private buildSettingsForm () {
|
|
const buildOptions: BuildFormArgument = {}
|
|
const settingsValues: any = {}
|
|
|
|
for (const setting of this.registeredSettings) {
|
|
buildOptions[ setting.name ] = null
|
|
settingsValues[ setting.name ] = this.getSetting(setting.name)
|
|
}
|
|
|
|
this.buildForm(buildOptions)
|
|
|
|
this.form.patchValue(settingsValues)
|
|
}
|
|
|
|
private getSetting (name: string) {
|
|
const settings = this.plugin.settings
|
|
|
|
if (settings && settings[name]) return settings[name]
|
|
|
|
const registered = this.registeredSettings.find(r => r.name === name)
|
|
|
|
return registered.default
|
|
}
|
|
|
|
}
|