2020-06-23 08:10:17 -04:00
|
|
|
import { createReadStream, createWriteStream } from 'fs'
|
|
|
|
import { outputFile, readJSON } from 'fs-extra'
|
2019-07-05 09:28:49 -04:00
|
|
|
import { basename, join } from 'path'
|
2020-06-23 08:10:17 -04:00
|
|
|
import { MOAuthTokenUser, MUser } from '@server/types/models'
|
|
|
|
import { RegisterServerHookOptions } from '@shared/models/plugins/register-server-hook.model'
|
|
|
|
import { getHookType, internalRunHook } from '../../../shared/core-utils/plugins/hooks'
|
2019-07-26 08:44:50 -04:00
|
|
|
import {
|
|
|
|
ClientScript,
|
|
|
|
PluginPackageJson,
|
|
|
|
PluginTranslationPaths as PackagePluginTranslations
|
|
|
|
} from '../../../shared/models/plugins/plugin-package-json.model'
|
2020-06-23 08:10:17 -04:00
|
|
|
import { PluginTranslation } from '../../../shared/models/plugins/plugin-translation.model'
|
2019-07-05 07:54:32 -04:00
|
|
|
import { PluginType } from '../../../shared/models/plugins/plugin.type'
|
2020-04-10 09:07:54 -04:00
|
|
|
import { ServerHook, ServerHookName } from '../../../shared/models/plugins/server-hook.model'
|
2020-06-23 08:10:17 -04:00
|
|
|
import { isLibraryCodeValid, isPackageJSONValid } from '../../helpers/custom-validators/plugins'
|
|
|
|
import { logger } from '../../helpers/logger'
|
|
|
|
import { CONFIG } from '../../initializers/config'
|
|
|
|
import { PLUGIN_GLOBAL_CSS_PATH } from '../../initializers/constants'
|
|
|
|
import { PluginModel } from '../../models/server/plugin'
|
|
|
|
import { PluginLibrary, RegisterServerAuthExternalOptions, RegisterServerAuthPassOptions, RegisterServerOptions } from '../../types/plugins'
|
2019-07-23 03:48:48 -04:00
|
|
|
import { ClientHtml } from '../client-html'
|
2020-04-10 09:07:54 -04:00
|
|
|
import { RegisterHelpersStore } from './register-helpers-store'
|
2020-06-23 08:10:17 -04:00
|
|
|
import { installNpmPlugin, installNpmPluginFromDisk, removeNpmPlugin } from './yarn'
|
2019-07-05 07:54:32 -04:00
|
|
|
|
|
|
|
export interface RegisteredPlugin {
|
2019-07-12 05:39:58 -04:00
|
|
|
npmName: string
|
2019-07-05 07:54:32 -04:00
|
|
|
name: string
|
|
|
|
version: string
|
|
|
|
description: string
|
|
|
|
peertubeEngine: string
|
|
|
|
|
|
|
|
type: PluginType
|
|
|
|
|
|
|
|
path: string
|
|
|
|
|
|
|
|
staticDirs: { [name: string]: string }
|
2019-07-08 08:02:03 -04:00
|
|
|
clientScripts: { [name: string]: ClientScript }
|
2019-07-05 07:54:32 -04:00
|
|
|
|
|
|
|
css: string[]
|
|
|
|
|
|
|
|
// Only if this is a plugin
|
2020-04-22 10:07:04 -04:00
|
|
|
registerHelpersStore?: RegisterHelpersStore
|
2019-07-05 07:54:32 -04:00
|
|
|
unregister?: Function
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface HookInformationValue {
|
2019-07-12 05:39:58 -04:00
|
|
|
npmName: string
|
2019-07-05 07:54:32 -04:00
|
|
|
pluginName: string
|
|
|
|
handler: Function
|
|
|
|
priority: number
|
|
|
|
}
|
|
|
|
|
2019-07-26 08:44:50 -04:00
|
|
|
type PluginLocalesTranslations = {
|
2020-01-31 10:56:52 -05:00
|
|
|
[locale: string]: PluginTranslation
|
2019-07-26 08:44:50 -04:00
|
|
|
}
|
|
|
|
|
2019-07-18 08:28:37 -04:00
|
|
|
export class PluginManager implements ServerHook {
|
2019-07-05 07:54:32 -04:00
|
|
|
|
|
|
|
private static instance: PluginManager
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
private registeredPlugins: { [name: string]: RegisteredPlugin } = {}
|
2020-04-22 10:07:04 -04:00
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
private hooks: { [name: string]: HookInformationValue[] } = {}
|
2019-07-26 08:44:50 -04:00
|
|
|
private translations: PluginLocalesTranslations = {}
|
2019-07-05 07:54:32 -04:00
|
|
|
|
|
|
|
private constructor () {
|
|
|
|
}
|
|
|
|
|
2019-07-10 10:59:53 -04:00
|
|
|
// ###################### Getters ######################
|
2019-07-05 07:54:32 -04:00
|
|
|
|
2019-07-16 05:33:22 -04:00
|
|
|
isRegistered (npmName: string) {
|
|
|
|
return !!this.getRegisteredPluginOrTheme(npmName)
|
|
|
|
}
|
|
|
|
|
2019-07-12 05:39:58 -04:00
|
|
|
getRegisteredPluginOrTheme (npmName: string) {
|
|
|
|
return this.registeredPlugins[npmName]
|
2019-07-09 05:45:19 -04:00
|
|
|
}
|
|
|
|
|
2020-04-23 05:36:50 -04:00
|
|
|
getRegisteredPluginByShortName (name: string) {
|
2019-07-12 05:39:58 -04:00
|
|
|
const npmName = PluginModel.buildNpmName(name, PluginType.PLUGIN)
|
|
|
|
const registered = this.getRegisteredPluginOrTheme(npmName)
|
2019-07-09 05:45:19 -04:00
|
|
|
|
|
|
|
if (!registered || registered.type !== PluginType.PLUGIN) return undefined
|
|
|
|
|
|
|
|
return registered
|
2019-07-05 07:54:32 -04:00
|
|
|
}
|
|
|
|
|
2020-04-23 05:36:50 -04:00
|
|
|
getRegisteredThemeByShortName (name: string) {
|
2019-07-12 05:39:58 -04:00
|
|
|
const npmName = PluginModel.buildNpmName(name, PluginType.THEME)
|
|
|
|
const registered = this.getRegisteredPluginOrTheme(npmName)
|
2019-07-05 07:54:32 -04:00
|
|
|
|
|
|
|
if (!registered || registered.type !== PluginType.THEME) return undefined
|
|
|
|
|
|
|
|
return registered
|
|
|
|
}
|
|
|
|
|
2019-07-08 09:54:08 -04:00
|
|
|
getRegisteredPlugins () {
|
2019-07-09 05:45:19 -04:00
|
|
|
return this.getRegisteredPluginsOrThemes(PluginType.PLUGIN)
|
|
|
|
}
|
|
|
|
|
|
|
|
getRegisteredThemes () {
|
|
|
|
return this.getRegisteredPluginsOrThemes(PluginType.THEME)
|
2019-07-08 09:54:08 -04:00
|
|
|
}
|
|
|
|
|
2020-04-22 10:07:04 -04:00
|
|
|
getIdAndPassAuths () {
|
|
|
|
return this.getRegisteredPlugins()
|
2020-04-29 04:42:35 -04:00
|
|
|
.map(p => ({
|
|
|
|
npmName: p.npmName,
|
|
|
|
name: p.name,
|
|
|
|
version: p.version,
|
|
|
|
idAndPassAuths: p.registerHelpersStore.getIdAndPassAuths()
|
|
|
|
}))
|
2020-04-22 10:07:04 -04:00
|
|
|
.filter(v => v.idAndPassAuths.length !== 0)
|
|
|
|
}
|
|
|
|
|
|
|
|
getExternalAuths () {
|
|
|
|
return this.getRegisteredPlugins()
|
2020-04-29 04:42:35 -04:00
|
|
|
.map(p => ({
|
|
|
|
npmName: p.npmName,
|
|
|
|
name: p.name,
|
|
|
|
version: p.version,
|
|
|
|
externalAuths: p.registerHelpersStore.getExternalAuths()
|
|
|
|
}))
|
|
|
|
.filter(v => v.externalAuths.length !== 0)
|
2020-04-22 10:07:04 -04:00
|
|
|
}
|
|
|
|
|
2019-07-12 05:39:58 -04:00
|
|
|
getRegisteredSettings (npmName: string) {
|
2020-04-22 10:07:04 -04:00
|
|
|
const result = this.getRegisteredPluginOrTheme(npmName)
|
|
|
|
if (!result || result.type !== PluginType.PLUGIN) return []
|
2020-04-10 09:07:54 -04:00
|
|
|
|
2020-04-22 10:07:04 -04:00
|
|
|
return result.registerHelpersStore.getSettings()
|
2020-04-10 09:07:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
getRouter (npmName: string) {
|
2020-04-22 10:07:04 -04:00
|
|
|
const result = this.getRegisteredPluginOrTheme(npmName)
|
|
|
|
if (!result || result.type !== PluginType.PLUGIN) return null
|
2020-04-10 09:07:54 -04:00
|
|
|
|
2020-04-22 10:07:04 -04:00
|
|
|
return result.registerHelpersStore.getRouter()
|
2019-07-10 10:59:53 -04:00
|
|
|
}
|
|
|
|
|
2019-07-26 08:44:50 -04:00
|
|
|
getTranslations (locale: string) {
|
|
|
|
return this.translations[locale] || {}
|
|
|
|
}
|
|
|
|
|
2020-04-24 05:33:01 -04:00
|
|
|
async isTokenValid (token: MOAuthTokenUser, type: 'access' | 'refresh') {
|
|
|
|
const auth = this.getAuth(token.User.pluginAuth, token.authName)
|
|
|
|
if (!auth) return true
|
|
|
|
|
|
|
|
if (auth.hookTokenValidity) {
|
|
|
|
try {
|
|
|
|
const { valid } = await auth.hookTokenValidity({ token, type })
|
|
|
|
|
|
|
|
if (valid === false) {
|
|
|
|
logger.info('Rejecting %s token validity from auth %s of plugin %s', type, token.authName, token.User.pluginAuth)
|
|
|
|
}
|
|
|
|
|
|
|
|
return valid
|
|
|
|
} catch (err) {
|
|
|
|
logger.warn('Cannot run check token validity from auth %s of plugin %s.', token.authName, token.User.pluginAuth, { err })
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-04-30 03:28:39 -04:00
|
|
|
// ###################### External events ######################
|
|
|
|
|
|
|
|
onLogout (npmName: string, authName: string, user: MUser) {
|
|
|
|
const auth = this.getAuth(npmName, authName)
|
|
|
|
|
|
|
|
if (auth?.onLogout) {
|
|
|
|
logger.info('Running onLogout function from auth %s of plugin %s', authName, npmName)
|
|
|
|
|
|
|
|
try {
|
|
|
|
auth.onLogout(user)
|
|
|
|
} catch (err) {
|
|
|
|
logger.warn('Cannot run onLogout function from auth %s of plugin %s.', authName, npmName, { err })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onSettingsChanged (name: string, settings: any) {
|
|
|
|
const registered = this.getRegisteredPluginByShortName(name)
|
|
|
|
if (!registered) {
|
|
|
|
logger.error('Cannot find plugin %s to call on settings changed.', name)
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const cb of registered.registerHelpersStore.getOnSettingsChangedCallbacks()) {
|
|
|
|
try {
|
|
|
|
cb(settings)
|
|
|
|
} catch (err) {
|
|
|
|
logger.error('Cannot run on settings changed callback for %s.', registered.npmName, { err })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-10 10:59:53 -04:00
|
|
|
// ###################### Hooks ######################
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
async runHook<T> (hookName: ServerHookName, result?: T, params?: any): Promise<T> {
|
2019-07-19 11:30:41 -04:00
|
|
|
if (!this.hooks[hookName]) return Promise.resolve(result)
|
2019-07-11 08:40:19 -04:00
|
|
|
|
2019-07-18 08:28:37 -04:00
|
|
|
const hookType = getHookType(hookName)
|
2019-07-08 09:54:08 -04:00
|
|
|
|
|
|
|
for (const hook of this.hooks[hookName]) {
|
2019-07-19 11:30:41 -04:00
|
|
|
logger.debug('Running hook %s of plugin %s.', hookName, hook.npmName)
|
|
|
|
|
|
|
|
result = await internalRunHook(hook.handler, hookType, result, params, err => {
|
2019-07-08 09:54:08 -04:00
|
|
|
logger.error('Cannot run hook %s of plugin %s.', hookName, hook.pluginName, { err })
|
2019-07-18 08:28:37 -04:00
|
|
|
})
|
2019-07-08 09:54:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2019-07-10 10:59:53 -04:00
|
|
|
// ###################### Registration ######################
|
|
|
|
|
|
|
|
async registerPluginsAndThemes () {
|
|
|
|
await this.resetCSSGlobalFile()
|
|
|
|
|
|
|
|
const plugins = await PluginModel.listEnabledPluginsAndThemes()
|
|
|
|
|
|
|
|
for (const plugin of plugins) {
|
|
|
|
try {
|
|
|
|
await this.registerPluginOrTheme(plugin)
|
|
|
|
} catch (err) {
|
2019-07-22 05:18:22 -04:00
|
|
|
// Try to unregister the plugin
|
|
|
|
try {
|
|
|
|
await this.unregister(PluginModel.buildNpmName(plugin.name, plugin.type))
|
|
|
|
} catch {
|
|
|
|
// we don't care if we cannot unregister it
|
|
|
|
}
|
|
|
|
|
2019-07-10 10:59:53 -04:00
|
|
|
logger.error('Cannot register plugin %s, skipping.', plugin.name, { err })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.sortHooksByPriority()
|
|
|
|
}
|
|
|
|
|
2019-07-12 05:39:58 -04:00
|
|
|
// Don't need the plugin type since themes cannot register server code
|
|
|
|
async unregister (npmName: string) {
|
|
|
|
logger.info('Unregister plugin %s.', npmName)
|
|
|
|
|
|
|
|
const plugin = this.getRegisteredPluginOrTheme(npmName)
|
2019-07-05 07:54:32 -04:00
|
|
|
|
|
|
|
if (!plugin) {
|
2019-07-12 05:39:58 -04:00
|
|
|
throw new Error(`Unknown plugin ${npmName} to unregister`)
|
2019-07-05 07:54:32 -04:00
|
|
|
}
|
|
|
|
|
2019-07-18 09:56:42 -04:00
|
|
|
delete this.registeredPlugins[plugin.npmName]
|
|
|
|
|
2019-07-26 08:44:50 -04:00
|
|
|
this.deleteTranslations(plugin.npmName)
|
|
|
|
|
2019-07-12 05:39:58 -04:00
|
|
|
if (plugin.type === PluginType.PLUGIN) {
|
|
|
|
await plugin.unregister()
|
2019-07-05 07:54:32 -04:00
|
|
|
|
2019-07-12 05:39:58 -04:00
|
|
|
// Remove hooks of this plugin
|
|
|
|
for (const key of Object.keys(this.hooks)) {
|
2020-01-16 12:49:03 -05:00
|
|
|
this.hooks[key] = this.hooks[key].filter(h => h.npmName !== npmName)
|
2019-07-12 05:39:58 -04:00
|
|
|
}
|
2019-07-08 08:02:03 -04:00
|
|
|
|
2020-04-22 10:07:04 -04:00
|
|
|
const store = plugin.registerHelpersStore
|
2020-04-10 09:07:54 -04:00
|
|
|
store.reinitVideoConstants(plugin.npmName)
|
|
|
|
|
2019-07-12 05:39:58 -04:00
|
|
|
logger.info('Regenerating registered plugin CSS to global file.')
|
|
|
|
await this.regeneratePluginGlobalCSS()
|
2019-07-08 08:02:03 -04:00
|
|
|
}
|
2019-07-05 07:54:32 -04:00
|
|
|
}
|
|
|
|
|
2019-07-10 10:59:53 -04:00
|
|
|
// ###################### Installation ######################
|
|
|
|
|
|
|
|
async install (toInstall: string, version?: string, fromDisk = false) {
|
2019-07-05 09:28:49 -04:00
|
|
|
let plugin: PluginModel
|
2019-07-12 05:39:58 -04:00
|
|
|
let npmName: string
|
2019-07-05 09:28:49 -04:00
|
|
|
|
|
|
|
logger.info('Installing plugin %s.', toInstall)
|
|
|
|
|
|
|
|
try {
|
|
|
|
fromDisk
|
|
|
|
? await installNpmPluginFromDisk(toInstall)
|
|
|
|
: await installNpmPlugin(toInstall, version)
|
|
|
|
|
2019-07-12 05:39:58 -04:00
|
|
|
npmName = fromDisk ? basename(toInstall) : toInstall
|
|
|
|
const pluginType = PluginModel.getTypeFromNpmName(npmName)
|
|
|
|
const pluginName = PluginModel.normalizePluginName(npmName)
|
2019-07-05 09:28:49 -04:00
|
|
|
|
2019-07-19 08:36:04 -04:00
|
|
|
const packageJSON = await this.getPackageJSON(pluginName, pluginType)
|
2019-09-11 04:19:03 -04:00
|
|
|
|
|
|
|
this.sanitizeAndCheckPackageJSONOrThrow(packageJSON, pluginType);
|
2019-07-05 09:28:49 -04:00
|
|
|
|
|
|
|
[ plugin ] = await PluginModel.upsert({
|
|
|
|
name: pluginName,
|
|
|
|
description: packageJSON.description,
|
2019-07-11 08:40:19 -04:00
|
|
|
homepage: packageJSON.homepage,
|
2019-07-05 09:28:49 -04:00
|
|
|
type: pluginType,
|
|
|
|
version: packageJSON.version,
|
|
|
|
enabled: true,
|
|
|
|
uninstalled: false,
|
|
|
|
peertubeEngine: packageJSON.engine.peertube
|
|
|
|
}, { returning: true })
|
|
|
|
} catch (err) {
|
|
|
|
logger.error('Cannot install plugin %s, removing it...', toInstall, { err })
|
|
|
|
|
|
|
|
try {
|
2019-07-12 05:39:58 -04:00
|
|
|
await removeNpmPlugin(npmName)
|
2019-07-05 09:28:49 -04:00
|
|
|
} catch (err) {
|
|
|
|
logger.error('Cannot remove plugin %s after failed installation.', toInstall, { err })
|
|
|
|
}
|
|
|
|
|
|
|
|
throw err
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.info('Successful installation of plugin %s.', toInstall)
|
|
|
|
|
|
|
|
await this.registerPluginOrTheme(plugin)
|
2019-07-12 05:39:58 -04:00
|
|
|
|
|
|
|
return plugin
|
|
|
|
}
|
|
|
|
|
|
|
|
async update (toUpdate: string, version?: string, fromDisk = false) {
|
|
|
|
const npmName = fromDisk ? basename(toUpdate) : toUpdate
|
|
|
|
|
|
|
|
logger.info('Updating plugin %s.', npmName)
|
|
|
|
|
|
|
|
// Unregister old hooks
|
|
|
|
await this.unregister(npmName)
|
|
|
|
|
|
|
|
return this.install(toUpdate, version, fromDisk)
|
2019-07-05 09:28:49 -04:00
|
|
|
}
|
|
|
|
|
2019-07-11 08:40:19 -04:00
|
|
|
async uninstall (npmName: string) {
|
|
|
|
logger.info('Uninstalling plugin %s.', npmName)
|
2019-07-08 08:02:03 -04:00
|
|
|
|
|
|
|
try {
|
2019-07-12 05:39:58 -04:00
|
|
|
await this.unregister(npmName)
|
2019-07-08 08:02:03 -04:00
|
|
|
} catch (err) {
|
2019-07-12 05:39:58 -04:00
|
|
|
logger.warn('Cannot unregister plugin %s.', npmName, { err })
|
2019-07-08 08:02:03 -04:00
|
|
|
}
|
|
|
|
|
2019-07-11 08:40:19 -04:00
|
|
|
const plugin = await PluginModel.loadByNpmName(npmName)
|
2019-07-08 08:02:03 -04:00
|
|
|
if (!plugin || plugin.uninstalled === true) {
|
2019-07-11 08:40:19 -04:00
|
|
|
logger.error('Cannot uninstall plugin %s: it does not exist or is already uninstalled.', npmName)
|
2019-07-08 08:02:03 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
plugin.enabled = false
|
|
|
|
plugin.uninstalled = true
|
|
|
|
|
|
|
|
await plugin.save()
|
2019-07-05 09:28:49 -04:00
|
|
|
|
2019-07-11 08:40:19 -04:00
|
|
|
await removeNpmPlugin(npmName)
|
2019-07-08 08:02:03 -04:00
|
|
|
|
2019-07-11 08:40:19 -04:00
|
|
|
logger.info('Plugin %s uninstalled.', npmName)
|
2019-07-05 09:28:49 -04:00
|
|
|
}
|
|
|
|
|
2019-07-10 10:59:53 -04:00
|
|
|
// ###################### Private register ######################
|
|
|
|
|
2019-07-05 07:54:32 -04:00
|
|
|
private async registerPluginOrTheme (plugin: PluginModel) {
|
2019-07-12 05:39:58 -04:00
|
|
|
const npmName = PluginModel.buildNpmName(plugin.name, plugin.type)
|
|
|
|
|
|
|
|
logger.info('Registering plugin or theme %s.', npmName)
|
2019-07-05 07:54:32 -04:00
|
|
|
|
2019-07-19 08:36:04 -04:00
|
|
|
const packageJSON = await this.getPackageJSON(plugin.name, plugin.type)
|
2019-07-05 09:28:49 -04:00
|
|
|
const pluginPath = this.getPluginPath(plugin.name, plugin.type)
|
2019-07-05 07:54:32 -04:00
|
|
|
|
2019-09-11 04:19:03 -04:00
|
|
|
this.sanitizeAndCheckPackageJSONOrThrow(packageJSON, plugin.type)
|
2019-07-05 07:54:32 -04:00
|
|
|
|
|
|
|
let library: PluginLibrary
|
2020-04-22 10:07:04 -04:00
|
|
|
let registerHelpersStore: RegisterHelpersStore
|
2019-07-05 07:54:32 -04:00
|
|
|
if (plugin.type === PluginType.PLUGIN) {
|
2020-04-22 10:07:04 -04:00
|
|
|
const result = await this.registerPlugin(plugin, pluginPath, packageJSON)
|
|
|
|
library = result.library
|
|
|
|
registerHelpersStore = result.registerStore
|
2019-07-05 07:54:32 -04:00
|
|
|
}
|
|
|
|
|
2019-07-08 08:02:03 -04:00
|
|
|
const clientScripts: { [id: string]: ClientScript } = {}
|
|
|
|
for (const c of packageJSON.clientScripts) {
|
|
|
|
clientScripts[c.script] = c
|
|
|
|
}
|
|
|
|
|
2020-01-31 10:56:52 -05:00
|
|
|
this.registeredPlugins[npmName] = {
|
2019-07-12 05:39:58 -04:00
|
|
|
npmName,
|
2019-07-05 07:54:32 -04:00
|
|
|
name: plugin.name,
|
|
|
|
type: plugin.type,
|
|
|
|
version: plugin.version,
|
|
|
|
description: plugin.description,
|
|
|
|
peertubeEngine: plugin.peertubeEngine,
|
|
|
|
path: pluginPath,
|
|
|
|
staticDirs: packageJSON.staticDirs,
|
2019-07-08 08:02:03 -04:00
|
|
|
clientScripts,
|
2019-07-05 07:54:32 -04:00
|
|
|
css: packageJSON.css,
|
2020-04-22 10:07:04 -04:00
|
|
|
registerHelpersStore: registerHelpersStore || undefined,
|
2019-07-05 07:54:32 -04:00
|
|
|
unregister: library ? library.unregister : undefined
|
|
|
|
}
|
2019-07-26 08:44:50 -04:00
|
|
|
|
|
|
|
await this.addTranslations(plugin, npmName, packageJSON.translations)
|
2019-07-05 07:54:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private async registerPlugin (plugin: PluginModel, pluginPath: string, packageJSON: PluginPackageJson) {
|
2019-07-12 05:39:58 -04:00
|
|
|
const npmName = PluginModel.buildNpmName(plugin.name, plugin.type)
|
|
|
|
|
2019-07-19 08:36:04 -04:00
|
|
|
// Delete cache if needed
|
|
|
|
const modulePath = join(pluginPath, packageJSON.library)
|
|
|
|
delete require.cache[modulePath]
|
|
|
|
const library: PluginLibrary = require(modulePath)
|
2019-07-05 09:28:49 -04:00
|
|
|
|
2019-07-05 07:54:32 -04:00
|
|
|
if (!isLibraryCodeValid(library)) {
|
|
|
|
throw new Error('Library code is not valid (miss register or unregister function)')
|
|
|
|
}
|
|
|
|
|
2020-04-22 10:07:04 -04:00
|
|
|
const { registerOptions, registerStore } = this.getRegisterHelpers(npmName, plugin)
|
|
|
|
library.register(registerOptions)
|
2019-07-18 10:43:41 -04:00
|
|
|
.catch(err => logger.error('Cannot register plugin %s.', npmName, { err }))
|
2019-07-05 07:54:32 -04:00
|
|
|
|
2019-07-12 05:39:58 -04:00
|
|
|
logger.info('Add plugin %s CSS to global file.', npmName)
|
2019-07-05 07:54:32 -04:00
|
|
|
|
|
|
|
await this.addCSSToGlobalFile(pluginPath, packageJSON.css)
|
|
|
|
|
2020-04-22 10:07:04 -04:00
|
|
|
return { library, registerStore }
|
2019-07-05 07:54:32 -04:00
|
|
|
}
|
|
|
|
|
2019-07-26 08:44:50 -04:00
|
|
|
// ###################### Translations ######################
|
|
|
|
|
|
|
|
private async addTranslations (plugin: PluginModel, npmName: string, translationPaths: PackagePluginTranslations) {
|
|
|
|
for (const locale of Object.keys(translationPaths)) {
|
|
|
|
const path = translationPaths[locale]
|
|
|
|
const json = await readJSON(join(this.getPluginPath(plugin.name, plugin.type), path))
|
|
|
|
|
|
|
|
if (!this.translations[locale]) this.translations[locale] = {}
|
|
|
|
this.translations[locale][npmName] = json
|
|
|
|
|
|
|
|
logger.info('Added locale %s of plugin %s.', locale, npmName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private deleteTranslations (npmName: string) {
|
|
|
|
for (const locale of Object.keys(this.translations)) {
|
|
|
|
delete this.translations[locale][npmName]
|
|
|
|
|
|
|
|
logger.info('Deleted locale %s of plugin %s.', locale, npmName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-10 10:59:53 -04:00
|
|
|
// ###################### CSS ######################
|
2019-07-05 07:54:32 -04:00
|
|
|
|
2019-07-08 08:02:03 -04:00
|
|
|
private resetCSSGlobalFile () {
|
2019-07-23 04:40:39 -04:00
|
|
|
ClientHtml.invalidCache()
|
|
|
|
|
2019-07-08 08:02:03 -04:00
|
|
|
return outputFile(PLUGIN_GLOBAL_CSS_PATH, '')
|
|
|
|
}
|
|
|
|
|
2019-07-05 07:54:32 -04:00
|
|
|
private async addCSSToGlobalFile (pluginPath: string, cssRelativePaths: string[]) {
|
|
|
|
for (const cssPath of cssRelativePaths) {
|
|
|
|
await this.concatFiles(join(pluginPath, cssPath), PLUGIN_GLOBAL_CSS_PATH)
|
|
|
|
}
|
2019-07-23 03:48:48 -04:00
|
|
|
|
|
|
|
ClientHtml.invalidCache()
|
2019-07-05 07:54:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private concatFiles (input: string, output: string) {
|
|
|
|
return new Promise<void>((res, rej) => {
|
2019-07-08 08:02:03 -04:00
|
|
|
const inputStream = createReadStream(input)
|
|
|
|
const outputStream = createWriteStream(output, { flags: 'a' })
|
2019-07-05 07:54:32 -04:00
|
|
|
|
|
|
|
inputStream.pipe(outputStream)
|
|
|
|
|
|
|
|
inputStream.on('end', () => res())
|
|
|
|
inputStream.on('error', err => rej(err))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-07-10 10:59:53 -04:00
|
|
|
private async regeneratePluginGlobalCSS () {
|
|
|
|
await this.resetCSSGlobalFile()
|
|
|
|
|
2019-08-02 04:53:36 -04:00
|
|
|
for (const plugin of this.getRegisteredPlugins()) {
|
2019-07-10 10:59:53 -04:00
|
|
|
await this.addCSSToGlobalFile(plugin.path, plugin.css)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ###################### Utils ######################
|
|
|
|
|
|
|
|
private sortHooksByPriority () {
|
|
|
|
for (const hookName of Object.keys(this.hooks)) {
|
|
|
|
this.hooks[hookName].sort((a, b) => {
|
|
|
|
return b.priority - a.priority
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-05 09:28:49 -04:00
|
|
|
private getPackageJSON (pluginName: string, pluginType: PluginType) {
|
|
|
|
const pluginPath = join(this.getPluginPath(pluginName, pluginType), 'package.json')
|
|
|
|
|
2019-07-19 08:36:04 -04:00
|
|
|
return readJSON(pluginPath) as Promise<PluginPackageJson>
|
2019-07-05 09:28:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private getPluginPath (pluginName: string, pluginType: PluginType) {
|
2019-07-12 05:39:58 -04:00
|
|
|
const npmName = PluginModel.buildNpmName(pluginName, pluginType)
|
2019-07-05 09:28:49 -04:00
|
|
|
|
2019-07-12 05:39:58 -04:00
|
|
|
return join(CONFIG.STORAGE.PLUGINS_DIR, 'node_modules', npmName)
|
2019-07-05 09:28:49 -04:00
|
|
|
}
|
|
|
|
|
2020-04-24 05:33:01 -04:00
|
|
|
private getAuth (npmName: string, authName: string) {
|
|
|
|
const plugin = this.getRegisteredPluginOrTheme(npmName)
|
|
|
|
if (!plugin || plugin.type !== PluginType.PLUGIN) return null
|
|
|
|
|
2020-04-29 03:04:42 -04:00
|
|
|
let auths: (RegisterServerAuthPassOptions | RegisterServerAuthExternalOptions)[] = plugin.registerHelpersStore.getIdAndPassAuths()
|
|
|
|
auths = auths.concat(plugin.registerHelpersStore.getExternalAuths())
|
|
|
|
|
|
|
|
return auths.find(a => a.authName === authName)
|
2020-04-24 05:33:01 -04:00
|
|
|
}
|
|
|
|
|
2019-07-10 10:59:53 -04:00
|
|
|
// ###################### Private getters ######################
|
2019-07-08 08:02:03 -04:00
|
|
|
|
2019-07-09 05:45:19 -04:00
|
|
|
private getRegisteredPluginsOrThemes (type: PluginType) {
|
|
|
|
const plugins: RegisteredPlugin[] = []
|
|
|
|
|
2019-07-12 05:39:58 -04:00
|
|
|
for (const npmName of Object.keys(this.registeredPlugins)) {
|
2020-01-31 10:56:52 -05:00
|
|
|
const plugin = this.registeredPlugins[npmName]
|
2019-07-09 05:45:19 -04:00
|
|
|
if (plugin.type !== type) continue
|
|
|
|
|
|
|
|
plugins.push(plugin)
|
|
|
|
}
|
|
|
|
|
|
|
|
return plugins
|
|
|
|
}
|
|
|
|
|
2019-07-18 10:43:41 -04:00
|
|
|
// ###################### Generate register helpers ######################
|
|
|
|
|
2020-04-22 10:07:04 -04:00
|
|
|
private getRegisterHelpers (
|
|
|
|
npmName: string,
|
|
|
|
plugin: PluginModel
|
|
|
|
): { registerStore: RegisterHelpersStore, registerOptions: RegisterServerOptions } {
|
2020-04-10 09:07:54 -04:00
|
|
|
const onHookAdded = (options: RegisterServerHookOptions) => {
|
2019-07-18 10:43:41 -04:00
|
|
|
if (!this.hooks[options.target]) this.hooks[options.target] = []
|
|
|
|
|
|
|
|
this.hooks[options.target].push({
|
2020-04-10 09:07:54 -04:00
|
|
|
npmName: npmName,
|
2019-07-18 10:43:41 -04:00
|
|
|
pluginName: plugin.name,
|
|
|
|
handler: options.handler,
|
|
|
|
priority: options.priority || 0
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-04-10 09:07:54 -04:00
|
|
|
const registerHelpersStore = new RegisterHelpersStore(npmName, plugin, onHookAdded.bind(this))
|
2019-07-18 10:43:41 -04:00
|
|
|
|
2020-04-22 10:07:04 -04:00
|
|
|
return {
|
|
|
|
registerStore: registerHelpersStore,
|
|
|
|
registerOptions: registerHelpersStore.buildRegisterHelpers()
|
|
|
|
}
|
2019-07-26 07:13:39 -04:00
|
|
|
}
|
|
|
|
|
2019-09-11 04:19:03 -04:00
|
|
|
private sanitizeAndCheckPackageJSONOrThrow (packageJSON: PluginPackageJson, pluginType: PluginType) {
|
|
|
|
if (!packageJSON.staticDirs) packageJSON.staticDirs = {}
|
|
|
|
if (!packageJSON.css) packageJSON.css = []
|
|
|
|
if (!packageJSON.clientScripts) packageJSON.clientScripts = []
|
|
|
|
if (!packageJSON.translations) packageJSON.translations = {}
|
|
|
|
|
|
|
|
const { result: packageJSONValid, badFields } = isPackageJSONValid(packageJSON, pluginType)
|
|
|
|
if (!packageJSONValid) {
|
|
|
|
const formattedFields = badFields.map(f => `"${f}"`)
|
2020-01-31 10:56:52 -05:00
|
|
|
.join(', ')
|
2019-09-11 04:19:03 -04:00
|
|
|
|
|
|
|
throw new Error(`PackageJSON is invalid (invalid fields: ${formattedFields}).`)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-05 07:54:32 -04:00
|
|
|
static get Instance () {
|
|
|
|
return this.instance || (this.instance = new this())
|
|
|
|
}
|
|
|
|
}
|