X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fcore%2Fplugins%2Fplugin.service.ts;h=bb9125fe1ff2abfc107deaa511c99aff2c49e02f;hb=fb3c9e2bf5b45d6d283cea4d55cc0d49eb58e3cb;hp=14310f093670b053039a68d33ee3c68ae990d5f7;hpb=93cae47925e4dd68b7d34a41927b2740b4fab1b4;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/core/plugins/plugin.service.ts b/client/src/app/core/plugins/plugin.service.ts index 14310f093..bb9125fe1 100644 --- a/client/src/app/core/plugins/plugin.service.ts +++ b/client/src/app/core/plugins/plugin.service.ts @@ -1,201 +1,280 @@ -import { Injectable } from '@angular/core' -import { Router } from '@angular/router' -import { ServerConfigPlugin } from '@shared/models' +import { firstValueFrom, Observable, of } from 'rxjs' +import { catchError, map, shareReplay } from 'rxjs/operators' +import { HttpClient } from '@angular/common/http' +import { Inject, Injectable, LOCALE_ID, NgZone } from '@angular/core' +import { VideoEditType } from '@app/+videos/+video-edit/shared/video-edit.type' +import { AuthService } from '@app/core/auth' +import { Notifier } from '@app/core/notification' +import { MarkdownService } from '@app/core/renderer' +import { RestExtractor } from '@app/core/rest' import { ServerService } from '@app/core/server/server.service' -import { ClientScript } from '@shared/models/plugins/plugin-package-json.model' +import { getDevLocale, isOnDevLocale } from '@app/helpers' +import { CustomModalComponent } from '@app/modal/custom-modal.component' +import { PluginInfo, PluginsManager } from '@root-helpers/plugins-manager' +import { getCompleteLocale, isDefaultLocale, peertubeTranslate } from '@shared/core-utils/i18n' +import { + ClientHook, + ClientHookName, + PluginClientScope, + PluginTranslation, + PluginType, + PublicServerSetting, + RegisterClientFormFieldOptions, + RegisterClientRouteOptions, + RegisterClientSettingsScriptOptions, + RegisterClientVideoFieldOptions, + ServerConfigPlugin +} from '@shared/models' import { environment } from '../../../environments/environment' -import { RegisterHookOptions } from '@shared/models/plugins/register-hook.model' -import { ReplaySubject } from 'rxjs' -import { first, shareReplay } from 'rxjs/operators' -import { getHookType, internalRunHook } from '@shared/core-utils/plugins/hooks' -import { ClientHook, ClientHookName } from '@shared/models/plugins/client-hook.model' -import { PluginClientScope } from '@shared/models/plugins/plugin-client-scope.type' - -interface HookStructValue extends RegisterHookOptions { - plugin: ServerConfigPlugin - clientScript: ClientScript -} - -type PluginInfo = { - plugin: ServerConfigPlugin - clientScript: ClientScript - isTheme: boolean +import { RegisterClientHelpers } from '../../../types/register-client-option.model' + +type FormFields = { + video: { + pluginInfo: PluginInfo + commonOptions: RegisterClientFormFieldOptions + videoFormOptions: RegisterClientVideoFieldOptions + }[] } @Injectable() export class PluginService implements ClientHook { - pluginsBuilt = new ReplaySubject(1) + private static BASE_PLUGIN_API_URL = environment.apiUrl + '/api/v1/plugins' + private static BASE_PLUGIN_URL = environment.apiUrl + '/plugins' - pluginsLoaded: { [ scope in PluginClientScope ]: ReplaySubject } = { - common: new ReplaySubject(1), - 'video-watch': new ReplaySubject(1) - } + translationsObservable: Observable - private plugins: ServerConfigPlugin[] = [] - private scopes: { [ scopeName: string ]: PluginInfo[] } = {} - private loadedScripts: { [ script: string ]: boolean } = {} - private loadedScopes: PluginClientScope[] = [] + customModal: CustomModalComponent - private hooks: { [ name: string ]: HookStructValue[] } = {} + private formFields: FormFields = { + video: [] + } + private settingsScripts: { [ npmName: string ]: RegisterClientSettingsScriptOptions } = {} + private clientRoutes: { [ route: string ]: RegisterClientRouteOptions } = {} + + private pluginsManager: PluginsManager constructor ( - private router: Router, - private server: ServerService + private authService: AuthService, + private notifier: Notifier, + private markdownRenderer: MarkdownService, + private server: ServerService, + private zone: NgZone, + private authHttp: HttpClient, + private restExtractor: RestExtractor, + @Inject(LOCALE_ID) private localeId: string ) { + this.loadTranslations() + + this.pluginsManager = new PluginsManager({ + peertubeHelpersFactory: this.buildPeerTubeHelpers.bind(this), + onFormFields: this.onFormFields.bind(this), + onSettingsScripts: this.onSettingsScripts.bind(this), + onClientRoute: this.onClientRoute.bind(this) + }) } initializePlugins () { - this.server.configLoaded - .subscribe(() => { - this.plugins = this.server.getConfig().plugin.registered + this.pluginsManager.loadPluginsList(this.server.getHTMLConfig()) - this.buildScopeStruct() + this.pluginsManager.ensurePluginsAreLoaded('common') + } - this.pluginsBuilt.next(true) - }) + initializeCustomModal (customModal: CustomModalComponent) { + this.customModal = customModal } - ensurePluginsAreBuilt () { - return this.pluginsBuilt.asObservable() - .pipe(first(), shareReplay()) - .toPromise() + runHook (hookName: ClientHookName, result?: T, params?: any): Promise { + return this.zone.runOutsideAngular(() => { + return this.pluginsManager.runHook(hookName, result, params) + }) } ensurePluginsAreLoaded (scope: PluginClientScope) { - return this.pluginsLoaded[scope].asObservable() - .pipe(first(), shareReplay()) - .toPromise() + return this.pluginsManager.ensurePluginsAreLoaded(scope) } - addPlugin (plugin: ServerConfigPlugin, isTheme = false) { - const pathPrefix = this.getPluginPathPrefix(isTheme) - - for (const key of Object.keys(plugin.clientScripts)) { - const clientScript = plugin.clientScripts[key] - - for (const scope of clientScript.scopes) { - if (!this.scopes[scope]) this.scopes[scope] = [] + reloadLoadedScopes () { + return this.pluginsManager.reloadLoadedScopes() + } - this.scopes[scope].push({ - plugin, - clientScript: { - script: environment.apiUrl + `${pathPrefix}/${plugin.name}/${plugin.version}/client-scripts/${clientScript.script}`, - scopes: clientScript.scopes - }, - isTheme - }) + getPluginsManager () { + return this.pluginsManager + } - this.loadedScripts[clientScript.script] = false - } - } + addPlugin (plugin: ServerConfigPlugin, isTheme = false) { + return this.pluginsManager.addPlugin(plugin, isTheme) } removePlugin (plugin: ServerConfigPlugin) { - for (const key of Object.keys(this.scopes)) { - this.scopes[key] = this.scopes[key].filter(o => o.plugin.name !== plugin.name) - } + return this.pluginsManager.removePlugin(plugin) } - async reloadLoadedScopes () { - for (const scope of this.loadedScopes) { - await this.loadPluginsByScope(scope, true) - } + nameToNpmName (name: string, type: PluginType) { + const prefix = type === PluginType.PLUGIN + ? 'peertube-plugin-' + : 'peertube-theme-' + + return prefix + name } - async loadPluginsByScope (scope: PluginClientScope, isReload = false) { - try { - await this.ensurePluginsAreBuilt() + getRegisteredVideoFormFields (type: VideoEditType) { + return this.formFields.video.filter(f => f.videoFormOptions.type === type) + } - if (!isReload) this.loadedScopes.push(scope) + getRegisteredSettingsScript (npmName: string) { + return this.settingsScripts[npmName] + } - const toLoad = this.scopes[ scope ] - if (!Array.isArray(toLoad)) return + getRegisteredClientRoute (route: string) { + return this.clientRoutes[route] + } - const promises: Promise[] = [] - for (const pluginInfo of toLoad) { - const clientScript = pluginInfo.clientScript + getAllRegisteredClientRoutes () { + return Object.keys(this.clientRoutes) + } - if (this.loadedScripts[ clientScript.script ]) continue + async translateSetting (npmName: string, setting: RegisterClientFormFieldOptions) { + for (const key of [ 'label', 'html', 'descriptionHTML' ]) { + if (setting[key]) setting[key] = await this.translateBy(npmName, setting[key]) + } - promises.push(this.loadPlugin(pluginInfo)) + if (Array.isArray(setting.options)) { + const newOptions = [] - this.loadedScripts[ clientScript.script ] = true + for (const o of setting.options) { + newOptions.push({ + value: o.value, + label: await this.translateBy(npmName, o.label) + }) } - await Promise.all(promises) - - this.pluginsLoaded[scope].next(true) - } catch (err) { - console.error('Cannot load plugins by scope %s.', scope, err) + setting.options = newOptions } } - async runHook (hookName: ClientHookName, result?: T, params?: any): Promise { - if (!this.hooks[hookName]) return Promise.resolve(result) - - const hookType = getHookType(hookName) + translateBy (npmName: string, toTranslate: string) { + const obs = this.translationsObservable + .pipe( + map(allTranslations => allTranslations[npmName]), + map(translations => peertubeTranslate(toTranslate, translations)) + ) - for (const hook of this.hooks[hookName]) { - console.log('Running hook %s of plugin %s.', hookName, hook.plugin.name) - - result = await internalRunHook(hook.handler, hookType, result, params, err => { - console.error('Cannot run hook %s of script %s of plugin %s.', hookName, hook.clientScript.script, hook.plugin.name, err) - }) - } - - return result + return firstValueFrom(obs) } - private loadPlugin (pluginInfo: PluginInfo) { - const { plugin, clientScript } = pluginInfo - - const registerHook = (options: RegisterHookOptions) => { - if (!this.hooks[options.target]) this.hooks[options.target] = [] - - this.hooks[options.target].push({ - plugin, - clientScript, - target: options.target, - handler: options.handler, - priority: options.priority || 0 - }) - } - - const peertubeHelpers = this.buildPeerTubeHelpers(pluginInfo) - - console.log('Loading script %s of plugin %s.', clientScript.script, plugin.name) - - return import(/* webpackIgnore: true */ clientScript.script) - .then(script => script.register({ registerHook, peertubeHelpers })) - .then(() => this.sortHooksByPriority()) + private onFormFields ( + pluginInfo: PluginInfo, + commonOptions: RegisterClientFormFieldOptions, + videoFormOptions: RegisterClientVideoFieldOptions + ) { + this.formFields.video.push({ + pluginInfo, + commonOptions, + videoFormOptions + }) } - private buildScopeStruct () { - for (const plugin of this.plugins) { - this.addPlugin(plugin) - } + private onSettingsScripts (pluginInfo: PluginInfo, options: RegisterClientSettingsScriptOptions) { + this.settingsScripts[pluginInfo.plugin.npmName] = options } - private sortHooksByPriority () { - for (const hookName of Object.keys(this.hooks)) { - this.hooks[hookName].sort((a, b) => { - return b.priority - a.priority - }) - } + private onClientRoute (options: RegisterClientRouteOptions) { + const route = options.route.startsWith('/') + ? options.route + : `/${options.route}` + + this.clientRoutes[route] = options } - private buildPeerTubeHelpers (pluginInfo: PluginInfo) { + private buildPeerTubeHelpers (pluginInfo: PluginInfo): RegisterClientHelpers { const { plugin } = pluginInfo + const npmName = pluginInfo.plugin.npmName return { getBaseStaticRoute: () => { - const pathPrefix = this.getPluginPathPrefix(pluginInfo.isTheme) + const pathPrefix = PluginsManager.getPluginPathPrefix(pluginInfo.isTheme) return environment.apiUrl + `${pathPrefix}/${plugin.name}/${plugin.version}/static` + }, + + getBaseRouterRoute: () => { + const pathPrefix = PluginsManager.getPluginPathPrefix(pluginInfo.isTheme) + return environment.apiUrl + `${pathPrefix}/${plugin.name}/${plugin.version}/router` + }, + + getBasePluginClientPath: () => { + return '/p' + }, + + getSettings: () => { + const path = PluginService.BASE_PLUGIN_API_URL + '/' + npmName + '/public-settings' + + const obs = this.authHttp.get(path) + .pipe( + map(p => p.publicSettings), + catchError(res => this.restExtractor.handleError(res)) + ) + + return firstValueFrom(obs) + }, + + getServerConfig: () => { + const obs = this.server.getConfig() + .pipe(catchError(res => this.restExtractor.handleError(res))) + + return firstValueFrom(obs) + }, + + isLoggedIn: () => { + return this.authService.isLoggedIn() + }, + + getAuthHeader: () => { + if (!this.authService.isLoggedIn()) return undefined + + const value = this.authService.getRequestHeaderValue() + return { Authorization: value } + }, + + notifier: { + info: (text: string, title?: string, timeout?: number) => this.zone.run(() => this.notifier.info(text, title, timeout)), + error: (text: string, title?: string, timeout?: number) => this.zone.run(() => this.notifier.error(text, title, timeout)), + success: (text: string, title?: string, timeout?: number) => this.zone.run(() => this.notifier.success(text, title, timeout)) + }, + + showModal: (input: { + title: string + content: string + close?: boolean + cancel?: { value: string, action?: () => void } + confirm?: { value: string, action?: () => void } + }) => { + this.zone.run(() => this.customModal.show(input)) + }, + + markdownRenderer: { + textMarkdownToHTML: (textMarkdown: string) => { + return this.markdownRenderer.textMarkdownToHTML(textMarkdown) + }, + + enhancedMarkdownToHTML: (enhancedMarkdown: string) => { + return this.markdownRenderer.enhancedMarkdownToHTML(enhancedMarkdown) + } + }, + + translate: (value: string) => { + return this.translateBy(npmName, value) } } } - private getPluginPathPrefix (isTheme: boolean) { - return isTheme ? '/themes' : '/plugins' + private loadTranslations () { + const completeLocale = isOnDevLocale() ? getDevLocale() : getCompleteLocale(this.localeId) + + // Default locale, nothing to translate + if (isDefaultLocale(completeLocale)) this.translationsObservable = of({}).pipe(shareReplay()) + + this.translationsObservable = this.authHttp + .get(PluginService.BASE_PLUGIN_URL + '/translations/' + completeLocale + '.json') + .pipe(shareReplay()) } }