X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Flib%2Fplugins%2Fplugin-manager.ts;h=73f7a71ceafee1627ac2c435d59def472555d059;hb=7024e9120b381b5b3201212f5a18f5cdc14e15ff;hp=8127992b59315d45a727a9608e26b07c525b2437;hpb=9157d5981f6840bfa06652ad8fd16754c6fd679d;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/lib/plugins/plugin-manager.ts b/server/lib/plugins/plugin-manager.ts index 8127992b5..73f7a71ce 100644 --- a/server/lib/plugins/plugin-manager.ts +++ b/server/lib/plugins/plugin-manager.ts @@ -55,30 +55,30 @@ export interface HookInformationValue { } type AlterableVideoConstant = 'language' | 'licence' | 'category' -type VideoConstant = { [ key in number | string ]: string } +type VideoConstant = { [key in number | string]: string } type UpdatedVideoConstant = { - [ name in AlterableVideoConstant ]: { - [ npmName: string ]: { - added: { key: number | string, label: string }[], + [name in AlterableVideoConstant]: { + [npmName: string]: { + added: { key: number | string, label: string }[] deleted: { key: number | string, label: string }[] } } } type PluginLocalesTranslations = { - [ locale: string ]: PluginTranslation + [locale: string]: PluginTranslation } export class PluginManager implements ServerHook { private static instance: PluginManager - private registeredPlugins: { [ name: string ]: RegisteredPlugin } = {} - private settings: { [ name: string ]: RegisterServerSettingOptions[] } = {} - private hooks: { [ name: string ]: HookInformationValue[] } = {} + private registeredPlugins: { [name: string]: RegisteredPlugin } = {} + private settings: { [name: string]: RegisterServerSettingOptions[] } = {} + private hooks: { [name: string]: HookInformationValue[] } = {} private translations: PluginLocalesTranslations = {} - private updatedVideoConstants: UpdatedVideoConstant = { + private readonly updatedVideoConstants: UpdatedVideoConstant = { language: {}, licence: {}, category: {} @@ -133,7 +133,7 @@ export class PluginManager implements ServerHook { // ###################### Hooks ###################### - async runHook (hookName: ServerHookName, result?: T, params?: any): Promise { + async runHook (hookName: ServerHookName, result?: T, params?: any): Promise { if (!this.hooks[hookName]) return Promise.resolve(result) const hookType = getHookType(hookName) @@ -194,7 +194,7 @@ export class PluginManager implements ServerHook { // Remove hooks of this plugin for (const key of Object.keys(this.hooks)) { - this.hooks[key] = this.hooks[key].filter(h => h.pluginName !== npmName) + this.hooks[key] = this.hooks[key].filter(h => h.npmName !== npmName) } this.reinitVideoConstants(plugin.npmName) @@ -312,7 +312,7 @@ export class PluginManager implements ServerHook { clientScripts[c.script] = c } - this.registeredPlugins[ npmName ] = { + this.registeredPlugins[npmName] = { npmName, name: plugin.name, type: plugin.type, @@ -438,7 +438,7 @@ export class PluginManager implements ServerHook { const plugins: RegisteredPlugin[] = [] for (const npmName of Object.keys(this.registeredPlugins)) { - const plugin = this.registeredPlugins[ npmName ] + const plugin = this.registeredPlugins[npmName] if (plugin.type !== type) continue plugins.push(plugin) @@ -518,11 +518,11 @@ export class PluginManager implements ServerHook { } } - private addConstant (parameters: { - npmName: string, - type: AlterableVideoConstant, - obj: VideoConstant, - key: T, + private addConstant (parameters: { + npmName: string + type: AlterableVideoConstant + obj: VideoConstant + key: T label: string }) { const { npmName, type, obj, key, label } = parameters @@ -545,10 +545,10 @@ export class PluginManager implements ServerHook { return true } - private deleteConstant (parameters: { - npmName: string, - type: AlterableVideoConstant, - obj: VideoConstant, + private deleteConstant (parameters: { + npmName: string + type: AlterableVideoConstant + obj: VideoConstant key: T }) { const { npmName, type, obj, key } = parameters @@ -604,7 +604,7 @@ export class PluginManager implements ServerHook { const { result: packageJSONValid, badFields } = isPackageJSONValid(packageJSON, pluginType) if (!packageJSONValid) { const formattedFields = badFields.map(f => `"${f}"`) - .join(', ') + .join(', ') throw new Error(`PackageJSON is invalid (invalid fields: ${formattedFields}).`) }