X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fcore%2Fplugins%2Fplugin.service.ts;h=bfd5ba4ccd6629f4c8462e9149a3d4bca84979a7;hb=72f611ca1549d711f8cbf5dd08a3f1562a32fabb;hp=54dba5e178b5ee8095bb57ec58cd74a65335f0fc;hpb=e62f03ae0412f4efa62917d8741bc1a39e8ed7fc;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 54dba5e17..bfd5ba4cc 100644 --- a/client/src/app/core/plugins/plugin.service.ts +++ b/client/src/app/core/plugins/plugin.service.ts @@ -1,5 +1,5 @@ -import { Observable, of, ReplaySubject } from 'rxjs' -import { catchError, first, map, shareReplay } from 'rxjs/operators' +import { 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' @@ -10,7 +10,7 @@ import { RestExtractor } from '@app/core/rest' import { ServerService } from '@app/core/server/server.service' import { getDevLocale, isOnDevLocale } from '@app/helpers' import { CustomModalComponent } from '@app/modal/custom-modal.component' -import { FormFields, Hooks, loadPlugin, PluginInfo, runHook } from '@root-helpers/plugins' +import { PluginInfo, PluginsManager } from '@root-helpers/plugins-manager' import { getCompleteLocale, isDefaultLocale, peertubeTranslate } from '@shared/core-utils/i18n' import { ClientHook, @@ -19,42 +19,38 @@ import { PluginTranslation, PluginType, PublicServerSetting, + RegisterClientFormFieldOptions, + RegisterClientSettingsScript, + RegisterClientVideoFieldOptions, ServerConfigPlugin } from '@shared/models' import { environment } from '../../../environments/environment' import { RegisterClientHelpers } from '../../../types/register-client-option.model' +type FormFields = { + video: { + commonOptions: RegisterClientFormFieldOptions + videoFormOptions: RegisterClientVideoFieldOptions + }[] +} + @Injectable() export class PluginService implements ClientHook { private static BASE_PLUGIN_API_URL = environment.apiUrl + '/api/v1/plugins' private static BASE_PLUGIN_URL = environment.apiUrl + '/plugins' - pluginsBuilt = new ReplaySubject(1) - - pluginsLoaded: { [ scope in PluginClientScope ]: ReplaySubject } = { - common: new ReplaySubject(1), - search: new ReplaySubject(1), - 'video-watch': new ReplaySubject(1), - signup: new ReplaySubject(1), - login: new ReplaySubject(1), - 'video-edit': new ReplaySubject(1), - embed: new ReplaySubject(1) - } - translationsObservable: Observable customModal: CustomModalComponent - private plugins: ServerConfigPlugin[] = [] - private scopes: { [ scopeName: string ]: PluginInfo[] } = {} - private loadedScripts: { [ script: string ]: boolean } = {} - private loadedScopes: PluginClientScope[] = [] - private loadingScopes: { [id in PluginClientScope]?: boolean } = {} + private helpers: { [ npmName: string ]: RegisterClientHelpers } = {} - private hooks: Hooks = {} private formFields: FormFields = { video: [] } + private settingsScripts: { [ npmName: string ]: RegisterClientSettingsScript } = {} + + private pluginsManager: PluginsManager constructor ( private authService: AuthService, @@ -67,116 +63,48 @@ export class PluginService implements ClientHook { @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) + }) } initializePlugins () { - this.server.getConfig() - .subscribe(config => { - this.plugins = config.plugin.registered + this.pluginsManager.loadPluginsList(this.server.getHTMLConfig()) - this.buildScopeStruct() - - this.pluginsBuilt.next(true) - }) + this.pluginsManager.ensurePluginsAreLoaded('common') } 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) { - this.loadPluginsByScope(scope) - - return this.pluginsLoaded[scope].asObservable() - .pipe(first(), shareReplay()) - .toPromise() - } - - 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] = [] - - this.scopes[scope].push({ - plugin, - clientScript: { - script: `${pathPrefix}/${plugin.name}/${plugin.version}/client-scripts/${clientScript.script}`, - scopes: clientScript.scopes - }, - pluginType: isTheme ? PluginType.THEME : PluginType.PLUGIN, - isTheme - }) - - this.loadedScripts[clientScript.script] = false - } - } + return this.pluginsManager.ensurePluginsAreLoaded(scope) } - removePlugin (plugin: ServerConfigPlugin) { - for (const key of Object.keys(this.scopes)) { - this.scopes[key] = this.scopes[key].filter(o => o.plugin.name !== plugin.name) - } + reloadLoadedScopes () { + return this.pluginsManager.reloadLoadedScopes() } - async reloadLoadedScopes () { - for (const scope of this.loadedScopes) { - await this.loadPluginsByScope(scope, true) - } + getPluginsManager () { + return this.pluginsManager } - async loadPluginsByScope (scope: PluginClientScope, isReload = false) { - if (this.loadingScopes[scope]) return - if (!isReload && this.loadedScopes.includes(scope)) return - - this.loadingScopes[scope] = true - - try { - await this.ensurePluginsAreBuilt() - - if (!isReload) this.loadedScopes.push(scope) - - const toLoad = this.scopes[ scope ] - if (!Array.isArray(toLoad)) { - this.loadingScopes[scope] = false - this.pluginsLoaded[scope].next(true) - - return - } - - const promises: Promise[] = [] - for (const pluginInfo of toLoad) { - const clientScript = pluginInfo.clientScript - - if (this.loadedScripts[ clientScript.script ]) continue - - promises.push(this.loadPlugin(pluginInfo)) - - this.loadedScripts[ clientScript.script ] = true - } - - await Promise.all(promises) - - this.pluginsLoaded[scope].next(true) - this.loadingScopes[scope] = false - } catch (err) { - console.error('Cannot load plugins by scope %s.', scope, err) - } + addPlugin (plugin: ServerConfigPlugin, isTheme = false) { + return this.pluginsManager.addPlugin(plugin, isTheme) } - runHook (hookName: ClientHookName, result?: T, params?: any): Promise { - return this.zone.runOutsideAngular(() => { - return runHook(this.hooks, hookName, result, params) - }) + removePlugin (plugin: ServerConfigPlugin) { + return this.pluginsManager.removePlugin(plugin) } nameToNpmName (name: string, type: PluginType) { @@ -187,31 +115,35 @@ export class PluginService implements ClientHook { return prefix + name } - pluginTypeFromNpmName (npmName: string) { - return npmName.startsWith('peertube-plugin-') - ? PluginType.PLUGIN - : PluginType.THEME - } - getRegisteredVideoFormFields (type: VideoEditType) { return this.formFields.video.filter(f => f.videoFormOptions.type === type) } - private loadPlugin (pluginInfo: PluginInfo) { - return this.zone.runOutsideAngular(() => { - return loadPlugin({ - hooks: this.hooks, - formFields: this.formFields, - pluginInfo, - peertubeHelpersFactory: pluginInfo => this.buildPeerTubeHelpers(pluginInfo) - }) - }) + getRegisteredSettingsScript (npmName: string) { + return this.settingsScripts[npmName] } - private buildScopeStruct () { - for (const plugin of this.plugins) { - this.addPlugin(plugin) + translateBy (npmName: string, toTranslate: string) { + const helpers = this.helpers[npmName] + if (!helpers) { + console.error('Unknown helpers to translate %s from %s.', toTranslate, npmName) + return toTranslate } + + return helpers.translate(toTranslate) + } + + private onFormFields (commonOptions: RegisterClientFormFieldOptions, videoFormOptions: RegisterClientVideoFieldOptions) { + this.formFields.video.push({ + commonOptions, + videoFormOptions + }) + } + + private onSettingsScripts (pluginInfo: PluginInfo, options: RegisterClientSettingsScript) { + const npmName = this.nameToNpmName(pluginInfo.plugin.name, pluginInfo.pluginType) + + this.settingsScripts[npmName] = options } private buildPeerTubeHelpers (pluginInfo: PluginInfo): RegisterClientHelpers { @@ -220,10 +152,15 @@ export class PluginService implements ClientHook { 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` + }, + getSettings: () => { const path = PluginService.BASE_PLUGIN_API_URL + '/' + npmName + '/public-settings' @@ -245,6 +182,13 @@ export class PluginService implements ClientHook { 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.notifier.info(text, title, timeout), error: (text: string, title?: string, timeout?: number) => this.notifier.error(text, title, timeout), @@ -290,8 +234,4 @@ export class PluginService implements ClientHook { .get(PluginService.BASE_PLUGIN_URL + '/translations/' + completeLocale + '.json') .pipe(shareReplay()) } - - private getPluginPathPrefix (isTheme: boolean) { - return isTheme ? '/themes' : '/plugins' - } }