]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/plugins/plugin-manager.ts
Revert "Fix context menu when watching a playlist"
[github/Chocobozzz/PeerTube.git] / server / lib / plugins / plugin-manager.ts
CommitLineData
bae93037 1import decache from 'decache'
74fd2643 2import * as express from 'express'
67ed6552
C
3import { createReadStream, createWriteStream } from 'fs'
4import { outputFile, readJSON } from 'fs-extra'
f023a19c 5import { basename, join } from 'path'
67ed6552
C
6import { MOAuthTokenUser, MUser } from '@server/types/models'
7import { RegisterServerHookOptions } from '@shared/models/plugins/register-server-hook.model'
8import { getHookType, internalRunHook } from '../../../shared/core-utils/plugins/hooks'
d75db01f
C
9import {
10 ClientScript,
11 PluginPackageJson,
12 PluginTranslationPaths as PackagePluginTranslations
13} from '../../../shared/models/plugins/plugin-package-json.model'
67ed6552 14import { PluginTranslation } from '../../../shared/models/plugins/plugin-translation.model'
345da516 15import { PluginType } from '../../../shared/models/plugins/plugin.type'
5e2b2e27 16import { ServerHook, ServerHookName } from '../../../shared/models/plugins/server-hook.model'
67ed6552
C
17import { isLibraryCodeValid, isPackageJSONValid } from '../../helpers/custom-validators/plugins'
18import { logger } from '../../helpers/logger'
19import { CONFIG } from '../../initializers/config'
20import { PLUGIN_GLOBAL_CSS_PATH } from '../../initializers/constants'
21import { PluginModel } from '../../models/server/plugin'
22import { PluginLibrary, RegisterServerAuthExternalOptions, RegisterServerAuthPassOptions, RegisterServerOptions } from '../../types/plugins'
a8b666e9 23import { ClientHtml } from '../client-html'
1896bca0 24import { RegisterHelpers } from './register-helpers'
67ed6552 25import { installNpmPlugin, installNpmPluginFromDisk, removeNpmPlugin } from './yarn'
67baf647 26import { getCompleteLocale } from '@shared/core-utils'
345da516
C
27
28export interface RegisteredPlugin {
b5f919ac 29 npmName: string
345da516
C
30 name: string
31 version: string
32 description: string
33 peertubeEngine: string
34
35 type: PluginType
36
37 path: string
38
39 staticDirs: { [name: string]: string }
2c053942 40 clientScripts: { [name: string]: ClientScript }
345da516
C
41
42 css: string[]
43
44 // Only if this is a plugin
1896bca0 45 registerHelpers?: RegisterHelpers
345da516
C
46 unregister?: Function
47}
48
49export interface HookInformationValue {
b5f919ac 50 npmName: string
345da516
C
51 pluginName: string
52 handler: Function
53 priority: number
54}
55
d75db01f 56type PluginLocalesTranslations = {
a1587156 57 [locale: string]: PluginTranslation
d75db01f
C
58}
59
b4055e1c 60export class PluginManager implements ServerHook {
345da516
C
61
62 private static instance: PluginManager
63
a1587156 64 private registeredPlugins: { [name: string]: RegisteredPlugin } = {}
7fed6375 65
a1587156 66 private hooks: { [name: string]: HookInformationValue[] } = {}
d75db01f 67 private translations: PluginLocalesTranslations = {}
345da516
C
68
69 private constructor () {
70 }
71
ad91e700 72 // ###################### Getters ######################
345da516 73
6702a1b2
C
74 isRegistered (npmName: string) {
75 return !!this.getRegisteredPluginOrTheme(npmName)
76 }
77
b5f919ac
C
78 getRegisteredPluginOrTheme (npmName: string) {
79 return this.registeredPlugins[npmName]
7cd4d2ba
C
80 }
81
e1c55031 82 getRegisteredPluginByShortName (name: string) {
b5f919ac
C
83 const npmName = PluginModel.buildNpmName(name, PluginType.PLUGIN)
84 const registered = this.getRegisteredPluginOrTheme(npmName)
7cd4d2ba
C
85
86 if (!registered || registered.type !== PluginType.PLUGIN) return undefined
87
88 return registered
345da516
C
89 }
90
e1c55031 91 getRegisteredThemeByShortName (name: string) {
b5f919ac
C
92 const npmName = PluginModel.buildNpmName(name, PluginType.THEME)
93 const registered = this.getRegisteredPluginOrTheme(npmName)
345da516
C
94
95 if (!registered || registered.type !== PluginType.THEME) return undefined
96
97 return registered
98 }
99
18a6f04c 100 getRegisteredPlugins () {
7cd4d2ba
C
101 return this.getRegisteredPluginsOrThemes(PluginType.PLUGIN)
102 }
103
104 getRegisteredThemes () {
105 return this.getRegisteredPluginsOrThemes(PluginType.THEME)
18a6f04c
C
106 }
107
7fed6375
C
108 getIdAndPassAuths () {
109 return this.getRegisteredPlugins()
ebefc902
C
110 .map(p => ({
111 npmName: p.npmName,
112 name: p.name,
113 version: p.version,
1896bca0 114 idAndPassAuths: p.registerHelpers.getIdAndPassAuths()
ebefc902 115 }))
7fed6375
C
116 .filter(v => v.idAndPassAuths.length !== 0)
117 }
118
119 getExternalAuths () {
120 return this.getRegisteredPlugins()
ebefc902
C
121 .map(p => ({
122 npmName: p.npmName,
123 name: p.name,
124 version: p.version,
1896bca0 125 externalAuths: p.registerHelpers.getExternalAuths()
ebefc902
C
126 }))
127 .filter(v => v.externalAuths.length !== 0)
7fed6375
C
128 }
129
b5f919ac 130 getRegisteredSettings (npmName: string) {
7fed6375
C
131 const result = this.getRegisteredPluginOrTheme(npmName)
132 if (!result || result.type !== PluginType.PLUGIN) return []
5e2b2e27 133
1896bca0 134 return result.registerHelpers.getSettings()
5e2b2e27
C
135 }
136
137 getRouter (npmName: string) {
7fed6375
C
138 const result = this.getRegisteredPluginOrTheme(npmName)
139 if (!result || result.type !== PluginType.PLUGIN) return null
5e2b2e27 140
1896bca0 141 return result.registerHelpers.getRouter()
ad91e700
C
142 }
143
d75db01f
C
144 getTranslations (locale: string) {
145 return this.translations[locale] || {}
146 }
147
e307e4fc
C
148 async isTokenValid (token: MOAuthTokenUser, type: 'access' | 'refresh') {
149 const auth = this.getAuth(token.User.pluginAuth, token.authName)
150 if (!auth) return true
151
152 if (auth.hookTokenValidity) {
153 try {
154 const { valid } = await auth.hookTokenValidity({ token, type })
155
156 if (valid === false) {
157 logger.info('Rejecting %s token validity from auth %s of plugin %s', type, token.authName, token.User.pluginAuth)
158 }
159
160 return valid
161 } catch (err) {
162 logger.warn('Cannot run check token validity from auth %s of plugin %s.', token.authName, token.User.pluginAuth, { err })
163 return true
164 }
165 }
166
167 return true
168 }
169
a5896799
C
170 // ###################### External events ######################
171
74fd2643 172 async onLogout (npmName: string, authName: string, user: MUser, req: express.Request) {
a5896799
C
173 const auth = this.getAuth(npmName, authName)
174
175 if (auth?.onLogout) {
176 logger.info('Running onLogout function from auth %s of plugin %s', authName, npmName)
177
178 try {
74fd2643
C
179 // Force await, in case or onLogout returns a promise
180 const result = await auth.onLogout(user, req)
181
182 return typeof result === 'string'
183 ? result
184 : undefined
a5896799
C
185 } catch (err) {
186 logger.warn('Cannot run onLogout function from auth %s of plugin %s.', authName, npmName, { err })
187 }
188 }
74fd2643
C
189
190 return undefined
a5896799
C
191 }
192
24a79240 193 async onSettingsChanged (name: string, settings: any) {
a5896799
C
194 const registered = this.getRegisteredPluginByShortName(name)
195 if (!registered) {
196 logger.error('Cannot find plugin %s to call on settings changed.', name)
197 }
198
1896bca0 199 for (const cb of registered.registerHelpers.getOnSettingsChangedCallbacks()) {
a5896799 200 try {
24a79240 201 await cb(settings)
a5896799
C
202 } catch (err) {
203 logger.error('Cannot run on settings changed callback for %s.', registered.npmName, { err })
204 }
205 }
206 }
207
ad91e700
C
208 // ###################### Hooks ######################
209
a1587156 210 async runHook<T> (hookName: ServerHookName, result?: T, params?: any): Promise<T> {
89cd1275 211 if (!this.hooks[hookName]) return Promise.resolve(result)
dba85a1e 212
b4055e1c 213 const hookType = getHookType(hookName)
18a6f04c
C
214
215 for (const hook of this.hooks[hookName]) {
89cd1275
C
216 logger.debug('Running hook %s of plugin %s.', hookName, hook.npmName)
217
218 result = await internalRunHook(hook.handler, hookType, result, params, err => {
18a6f04c 219 logger.error('Cannot run hook %s of plugin %s.', hookName, hook.pluginName, { err })
b4055e1c 220 })
18a6f04c
C
221 }
222
223 return result
224 }
225
ad91e700
C
226 // ###################### Registration ######################
227
228 async registerPluginsAndThemes () {
229 await this.resetCSSGlobalFile()
230
231 const plugins = await PluginModel.listEnabledPluginsAndThemes()
232
233 for (const plugin of plugins) {
234 try {
235 await this.registerPluginOrTheme(plugin)
236 } catch (err) {
587568e1
C
237 // Try to unregister the plugin
238 try {
239 await this.unregister(PluginModel.buildNpmName(plugin.name, plugin.type))
240 } catch {
241 // we don't care if we cannot unregister it
242 }
243
ad91e700
C
244 logger.error('Cannot register plugin %s, skipping.', plugin.name, { err })
245 }
246 }
247
248 this.sortHooksByPriority()
249 }
250
b5f919ac
C
251 // Don't need the plugin type since themes cannot register server code
252 async unregister (npmName: string) {
253 logger.info('Unregister plugin %s.', npmName)
254
255 const plugin = this.getRegisteredPluginOrTheme(npmName)
345da516
C
256
257 if (!plugin) {
b5f919ac 258 throw new Error(`Unknown plugin ${npmName} to unregister`)
345da516
C
259 }
260
60cfd4cb
C
261 delete this.registeredPlugins[plugin.npmName]
262
d75db01f
C
263 this.deleteTranslations(plugin.npmName)
264
b5f919ac
C
265 if (plugin.type === PluginType.PLUGIN) {
266 await plugin.unregister()
345da516 267
b5f919ac
C
268 // Remove hooks of this plugin
269 for (const key of Object.keys(this.hooks)) {
98da1a7b 270 this.hooks[key] = this.hooks[key].filter(h => h.npmName !== npmName)
b5f919ac 271 }
2c053942 272
1896bca0 273 const store = plugin.registerHelpers
5e2b2e27 274 store.reinitVideoConstants(plugin.npmName)
1896bca0 275 store.reinitTranscodingProfilesAndEncoders(plugin.npmName)
5e2b2e27 276
b5f919ac
C
277 logger.info('Regenerating registered plugin CSS to global file.')
278 await this.regeneratePluginGlobalCSS()
2c053942 279 }
345da516
C
280 }
281
ad91e700
C
282 // ###################### Installation ######################
283
284 async install (toInstall: string, version?: string, fromDisk = false) {
f023a19c 285 let plugin: PluginModel
b5f919ac 286 let npmName: string
f023a19c
C
287
288 logger.info('Installing plugin %s.', toInstall)
289
290 try {
291 fromDisk
292 ? await installNpmPluginFromDisk(toInstall)
293 : await installNpmPlugin(toInstall, version)
294
b5f919ac
C
295 npmName = fromDisk ? basename(toInstall) : toInstall
296 const pluginType = PluginModel.getTypeFromNpmName(npmName)
297 const pluginName = PluginModel.normalizePluginName(npmName)
f023a19c 298
09071200 299 const packageJSON = await this.getPackageJSON(pluginName, pluginType)
9157d598
C
300
301 this.sanitizeAndCheckPackageJSONOrThrow(packageJSON, pluginType);
f023a19c
C
302
303 [ plugin ] = await PluginModel.upsert({
304 name: pluginName,
305 description: packageJSON.description,
dba85a1e 306 homepage: packageJSON.homepage,
f023a19c
C
307 type: pluginType,
308 version: packageJSON.version,
309 enabled: true,
310 uninstalled: false,
311 peertubeEngine: packageJSON.engine.peertube
312 }, { returning: true })
313 } catch (err) {
314 logger.error('Cannot install plugin %s, removing it...', toInstall, { err })
315
316 try {
b5f919ac 317 await removeNpmPlugin(npmName)
f023a19c
C
318 } catch (err) {
319 logger.error('Cannot remove plugin %s after failed installation.', toInstall, { err })
320 }
321
322 throw err
323 }
324
325 logger.info('Successful installation of plugin %s.', toInstall)
326
327 await this.registerPluginOrTheme(plugin)
b5f919ac
C
328
329 return plugin
330 }
331
8280d0c2 332 async update (toUpdate: string, fromDisk = false) {
b5f919ac
C
333 const npmName = fromDisk ? basename(toUpdate) : toUpdate
334
335 logger.info('Updating plugin %s.', npmName)
336
8280d0c2
C
337 // Use the latest version from DB, to not upgrade to a version that does not support our PeerTube version
338 let version: string
339 if (!fromDisk) {
340 const plugin = await PluginModel.loadByNpmName(toUpdate)
341 version = plugin.latestVersion
342 }
343
b5f919ac
C
344 // Unregister old hooks
345 await this.unregister(npmName)
346
347 return this.install(toUpdate, version, fromDisk)
f023a19c
C
348 }
349
dba85a1e
C
350 async uninstall (npmName: string) {
351 logger.info('Uninstalling plugin %s.', npmName)
2c053942 352
2c053942 353 try {
b5f919ac 354 await this.unregister(npmName)
2c053942 355 } catch (err) {
b5f919ac 356 logger.warn('Cannot unregister plugin %s.', npmName, { err })
2c053942
C
357 }
358
dba85a1e 359 const plugin = await PluginModel.loadByNpmName(npmName)
2c053942 360 if (!plugin || plugin.uninstalled === true) {
dba85a1e 361 logger.error('Cannot uninstall plugin %s: it does not exist or is already uninstalled.', npmName)
2c053942
C
362 return
363 }
364
365 plugin.enabled = false
366 plugin.uninstalled = true
367
368 await plugin.save()
f023a19c 369
dba85a1e 370 await removeNpmPlugin(npmName)
2c053942 371
dba85a1e 372 logger.info('Plugin %s uninstalled.', npmName)
f023a19c
C
373 }
374
ad91e700
C
375 // ###################### Private register ######################
376
345da516 377 private async registerPluginOrTheme (plugin: PluginModel) {
b5f919ac
C
378 const npmName = PluginModel.buildNpmName(plugin.name, plugin.type)
379
380 logger.info('Registering plugin or theme %s.', npmName)
345da516 381
09071200 382 const packageJSON = await this.getPackageJSON(plugin.name, plugin.type)
f023a19c 383 const pluginPath = this.getPluginPath(plugin.name, plugin.type)
345da516 384
9157d598 385 this.sanitizeAndCheckPackageJSONOrThrow(packageJSON, plugin.type)
345da516
C
386
387 let library: PluginLibrary
1896bca0 388 let registerHelpers: RegisterHelpers
345da516 389 if (plugin.type === PluginType.PLUGIN) {
7fed6375
C
390 const result = await this.registerPlugin(plugin, pluginPath, packageJSON)
391 library = result.library
1896bca0 392 registerHelpers = result.registerStore
345da516
C
393 }
394
2c053942
C
395 const clientScripts: { [id: string]: ClientScript } = {}
396 for (const c of packageJSON.clientScripts) {
397 clientScripts[c.script] = c
398 }
399
a1587156 400 this.registeredPlugins[npmName] = {
b5f919ac 401 npmName,
345da516
C
402 name: plugin.name,
403 type: plugin.type,
404 version: plugin.version,
405 description: plugin.description,
406 peertubeEngine: plugin.peertubeEngine,
407 path: pluginPath,
408 staticDirs: packageJSON.staticDirs,
2c053942 409 clientScripts,
345da516 410 css: packageJSON.css,
1896bca0 411 registerHelpers: registerHelpers || undefined,
345da516
C
412 unregister: library ? library.unregister : undefined
413 }
d75db01f
C
414
415 await this.addTranslations(plugin, npmName, packageJSON.translations)
345da516
C
416 }
417
418 private async registerPlugin (plugin: PluginModel, pluginPath: string, packageJSON: PluginPackageJson) {
b5f919ac
C
419 const npmName = PluginModel.buildNpmName(plugin.name, plugin.type)
420
09071200
C
421 // Delete cache if needed
422 const modulePath = join(pluginPath, packageJSON.library)
09d535ef 423 decache(modulePath)
09071200 424 const library: PluginLibrary = require(modulePath)
f023a19c 425
345da516
C
426 if (!isLibraryCodeValid(library)) {
427 throw new Error('Library code is not valid (miss register or unregister function)')
428 }
429
7fed6375
C
430 const { registerOptions, registerStore } = this.getRegisterHelpers(npmName, plugin)
431 library.register(registerOptions)
32fe0013 432 .catch(err => logger.error('Cannot register plugin %s.', npmName, { err }))
345da516 433
b5f919ac 434 logger.info('Add plugin %s CSS to global file.', npmName)
345da516
C
435
436 await this.addCSSToGlobalFile(pluginPath, packageJSON.css)
437
7fed6375 438 return { library, registerStore }
345da516
C
439 }
440
d75db01f
C
441 // ###################### Translations ######################
442
443 private async addTranslations (plugin: PluginModel, npmName: string, translationPaths: PackagePluginTranslations) {
444 for (const locale of Object.keys(translationPaths)) {
445 const path = translationPaths[locale]
446 const json = await readJSON(join(this.getPluginPath(plugin.name, plugin.type), path))
447
67baf647 448 const completeLocale = getCompleteLocale(locale)
d75db01f 449
67baf647
C
450 if (!this.translations[completeLocale]) this.translations[completeLocale] = {}
451 this.translations[completeLocale][npmName] = json
452
453 logger.info('Added locale %s of plugin %s.', completeLocale, npmName)
d75db01f
C
454 }
455 }
456
457 private deleteTranslations (npmName: string) {
458 for (const locale of Object.keys(this.translations)) {
459 delete this.translations[locale][npmName]
460
461 logger.info('Deleted locale %s of plugin %s.', locale, npmName)
462 }
463 }
464
ad91e700 465 // ###################### CSS ######################
345da516 466
2c053942 467 private resetCSSGlobalFile () {
3e753302
C
468 ClientHtml.invalidCache()
469
2c053942
C
470 return outputFile(PLUGIN_GLOBAL_CSS_PATH, '')
471 }
472
345da516
C
473 private async addCSSToGlobalFile (pluginPath: string, cssRelativePaths: string[]) {
474 for (const cssPath of cssRelativePaths) {
475 await this.concatFiles(join(pluginPath, cssPath), PLUGIN_GLOBAL_CSS_PATH)
476 }
a8b666e9
C
477
478 ClientHtml.invalidCache()
345da516
C
479 }
480
481 private concatFiles (input: string, output: string) {
482 return new Promise<void>((res, rej) => {
2c053942
C
483 const inputStream = createReadStream(input)
484 const outputStream = createWriteStream(output, { flags: 'a' })
345da516
C
485
486 inputStream.pipe(outputStream)
487
488 inputStream.on('end', () => res())
489 inputStream.on('error', err => rej(err))
490 })
491 }
492
ad91e700
C
493 private async regeneratePluginGlobalCSS () {
494 await this.resetCSSGlobalFile()
495
1198edf4 496 for (const plugin of this.getRegisteredPlugins()) {
ad91e700
C
497 await this.addCSSToGlobalFile(plugin.path, plugin.css)
498 }
499 }
500
501 // ###################### Utils ######################
502
503 private sortHooksByPriority () {
504 for (const hookName of Object.keys(this.hooks)) {
505 this.hooks[hookName].sort((a, b) => {
506 return b.priority - a.priority
507 })
508 }
509 }
510
f023a19c
C
511 private getPackageJSON (pluginName: string, pluginType: PluginType) {
512 const pluginPath = join(this.getPluginPath(pluginName, pluginType), 'package.json')
513
09071200 514 return readJSON(pluginPath) as Promise<PluginPackageJson>
f023a19c
C
515 }
516
517 private getPluginPath (pluginName: string, pluginType: PluginType) {
b5f919ac 518 const npmName = PluginModel.buildNpmName(pluginName, pluginType)
f023a19c 519
b5f919ac 520 return join(CONFIG.STORAGE.PLUGINS_DIR, 'node_modules', npmName)
f023a19c
C
521 }
522
e307e4fc
C
523 private getAuth (npmName: string, authName: string) {
524 const plugin = this.getRegisteredPluginOrTheme(npmName)
525 if (!plugin || plugin.type !== PluginType.PLUGIN) return null
526
1896bca0
C
527 let auths: (RegisterServerAuthPassOptions | RegisterServerAuthExternalOptions)[] = plugin.registerHelpers.getIdAndPassAuths()
528 auths = auths.concat(plugin.registerHelpers.getExternalAuths())
9107d791
C
529
530 return auths.find(a => a.authName === authName)
e307e4fc
C
531 }
532
ad91e700 533 // ###################### Private getters ######################
2c053942 534
7cd4d2ba
C
535 private getRegisteredPluginsOrThemes (type: PluginType) {
536 const plugins: RegisteredPlugin[] = []
537
b5f919ac 538 for (const npmName of Object.keys(this.registeredPlugins)) {
a1587156 539 const plugin = this.registeredPlugins[npmName]
7cd4d2ba
C
540 if (plugin.type !== type) continue
541
542 plugins.push(plugin)
543 }
544
545 return plugins
546 }
547
32fe0013
C
548 // ###################### Generate register helpers ######################
549
7fed6375
C
550 private getRegisterHelpers (
551 npmName: string,
552 plugin: PluginModel
1896bca0 553 ): { registerStore: RegisterHelpers, registerOptions: RegisterServerOptions } {
5e2b2e27 554 const onHookAdded = (options: RegisterServerHookOptions) => {
32fe0013
C
555 if (!this.hooks[options.target]) this.hooks[options.target] = []
556
557 this.hooks[options.target].push({
5e2b2e27 558 npmName: npmName,
32fe0013
C
559 pluginName: plugin.name,
560 handler: options.handler,
561 priority: options.priority || 0
562 })
563 }
564
1896bca0 565 const registerHelpers = new RegisterHelpers(npmName, plugin, onHookAdded.bind(this))
32fe0013 566
7fed6375 567 return {
1896bca0
C
568 registerStore: registerHelpers,
569 registerOptions: registerHelpers.buildRegisterHelpers()
7fed6375 570 }
ee286591
C
571 }
572
9157d598
C
573 private sanitizeAndCheckPackageJSONOrThrow (packageJSON: PluginPackageJson, pluginType: PluginType) {
574 if (!packageJSON.staticDirs) packageJSON.staticDirs = {}
575 if (!packageJSON.css) packageJSON.css = []
576 if (!packageJSON.clientScripts) packageJSON.clientScripts = []
577 if (!packageJSON.translations) packageJSON.translations = {}
578
579 const { result: packageJSONValid, badFields } = isPackageJSONValid(packageJSON, pluginType)
580 if (!packageJSONValid) {
581 const formattedFields = badFields.map(f => `"${f}"`)
a1587156 582 .join(', ')
9157d598
C
583
584 throw new Error(`PackageJSON is invalid (invalid fields: ${formattedFields}).`)
585 }
586 }
587
345da516
C
588 static get Instance () {
589 return this.instance || (this.instance = new this())
590 }
591}