1
0
Fork 0
peertube/server/lib/plugins/plugin-manager.ts

640 lines
19 KiB
TypeScript
Raw Normal View History

2021-08-27 12:32:44 +00:00
import express from 'express'
2020-06-23 12:10:17 +00:00
import { createReadStream, createWriteStream } from 'fs'
import { ensureDir, outputFile, readJSON } from 'fs-extra'
import { Server } from 'http'
2019-07-05 13:28:49 +00:00
import { basename, join } from 'path'
import { decachePlugin } from '@server/helpers/decache'
import { ApplicationModel } from '@server/models/application/application'
2020-06-23 12:10:17 +00:00
import { MOAuthTokenUser, MUser } from '@server/types/models'
2021-05-11 10:04:47 +00:00
import { getCompleteLocale } from '@shared/core-utils'
2021-12-24 13:49:03 +00:00
import {
ClientScriptJSON,
PluginPackageJSON,
PluginTranslation,
PluginTranslationPathsJSON,
RegisterServerHookOptions
} from '@shared/models'
2020-06-23 12:10:17 +00:00
import { getHookType, internalRunHook } from '../../../shared/core-utils/plugins/hooks'
import { PluginType } from '../../../shared/models/plugins/plugin.type'
2021-05-11 10:04:47 +00:00
import { ServerHook, ServerHookName } from '../../../shared/models/plugins/server/server-hook.model'
2020-06-23 12:10:17 +00: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 07:48:48 +00:00
import { ClientHtml } from '../client-html'
import { RegisterHelpers } from './register-helpers'
import { installNpmPlugin, installNpmPluginFromDisk, rebuildNativePlugins, removeNpmPlugin } from './yarn'
export interface RegisteredPlugin {
2019-07-12 09:39:58 +00:00
npmName: string
name: string
version: string
description: string
peertubeEngine: string
type: PluginType
path: string
staticDirs: { [name: string]: string }
2021-12-24 09:40:51 +00:00
clientScripts: { [name: string]: ClientScriptJSON }
css: string[]
// Only if this is a plugin
registerHelpers?: RegisterHelpers
unregister?: Function
}
export interface HookInformationValue {
2019-07-12 09:39:58 +00:00
npmName: string
pluginName: string
handler: Function
priority: number
}
2019-07-26 12:44:50 +00:00
type PluginLocalesTranslations = {
2020-01-31 15:56:52 +00:00
[locale: string]: PluginTranslation
2019-07-26 12:44:50 +00:00
}
2019-07-18 12:28:37 +00:00
export class PluginManager implements ServerHook {
private static instance: PluginManager
2020-01-31 15:56:52 +00:00
private registeredPlugins: { [name: string]: RegisteredPlugin } = {}
2020-04-22 14:07:04 +00:00
2020-01-31 15:56:52 +00:00
private hooks: { [name: string]: HookInformationValue[] } = {}
2019-07-26 12:44:50 +00:00
private translations: PluginLocalesTranslations = {}
private server: Server
private constructor () {
}
init (server: Server) {
this.server = server
}
registerWebSocketRouter () {
this.server.on('upgrade', (request, socket, head) => {
const url = request.url
const matched = url.match(`/plugins/([^/]+)/([^/]+/)?ws(/.*)`)
if (!matched) return
const npmName = PluginModel.buildNpmName(matched[1], PluginType.PLUGIN)
const subRoute = matched[3]
const result = this.getRegisteredPluginOrTheme(npmName)
if (!result) return
const routes = result.registerHelpers.getWebSocketRoutes()
const wss = routes.find(r => r.route.startsWith(subRoute))
if (!wss) return
wss.handler(request, socket, head)
})
}
// ###################### Getters ######################
isRegistered (npmName: string) {
return !!this.getRegisteredPluginOrTheme(npmName)
}
2019-07-12 09:39:58 +00:00
getRegisteredPluginOrTheme (npmName: string) {
return this.registeredPlugins[npmName]
2019-07-09 09:45:19 +00:00
}
getRegisteredPluginByShortName (name: string) {
2019-07-12 09:39:58 +00:00
const npmName = PluginModel.buildNpmName(name, PluginType.PLUGIN)
const registered = this.getRegisteredPluginOrTheme(npmName)
2019-07-09 09:45:19 +00:00
if (!registered || registered.type !== PluginType.PLUGIN) return undefined
return registered
}
getRegisteredThemeByShortName (name: string) {
2019-07-12 09:39:58 +00:00
const npmName = PluginModel.buildNpmName(name, PluginType.THEME)
const registered = this.getRegisteredPluginOrTheme(npmName)
if (!registered || registered.type !== PluginType.THEME) return undefined
return registered
}
2019-07-08 13:54:08 +00:00
getRegisteredPlugins () {
2019-07-09 09:45:19 +00:00
return this.getRegisteredPluginsOrThemes(PluginType.PLUGIN)
}
getRegisteredThemes () {
return this.getRegisteredPluginsOrThemes(PluginType.THEME)
2019-07-08 13:54:08 +00:00
}
2020-04-22 14:07:04 +00:00
getIdAndPassAuths () {
return this.getRegisteredPlugins()
2020-04-29 08:42:35 +00:00
.map(p => ({
npmName: p.npmName,
name: p.name,
version: p.version,
idAndPassAuths: p.registerHelpers.getIdAndPassAuths()
2020-04-29 08:42:35 +00:00
}))
2020-04-22 14:07:04 +00:00
.filter(v => v.idAndPassAuths.length !== 0)
}
getExternalAuths () {
return this.getRegisteredPlugins()
2020-04-29 08:42:35 +00:00
.map(p => ({
npmName: p.npmName,
name: p.name,
version: p.version,
externalAuths: p.registerHelpers.getExternalAuths()
2020-04-29 08:42:35 +00:00
}))
.filter(v => v.externalAuths.length !== 0)
2020-04-22 14:07:04 +00:00
}
2019-07-12 09:39:58 +00:00
getRegisteredSettings (npmName: string) {
2020-04-22 14:07:04 +00:00
const result = this.getRegisteredPluginOrTheme(npmName)
if (!result || result.type !== PluginType.PLUGIN) return []
return result.registerHelpers.getSettings()
}
getRouter (npmName: string) {
2020-04-22 14:07:04 +00:00
const result = this.getRegisteredPluginOrTheme(npmName)
if (!result || result.type !== PluginType.PLUGIN) return null
return result.registerHelpers.getRouter()
}
2019-07-26 12:44:50 +00:00
getTranslations (locale: string) {
return this.translations[locale] || {}
}
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 07:28:39 +00:00
// ###################### External events ######################
async onLogout (npmName: string, authName: string, user: MUser, req: express.Request) {
2020-04-30 07:28:39 +00:00
const auth = this.getAuth(npmName, authName)
if (auth?.onLogout) {
logger.info('Running onLogout function from auth %s of plugin %s', authName, npmName)
try {
// Force await, in case or onLogout returns a promise
const result = await auth.onLogout(user, req)
return typeof result === 'string'
? result
: undefined
2020-04-30 07:28:39 +00:00
} catch (err) {
logger.warn('Cannot run onLogout function from auth %s of plugin %s.', authName, npmName, { err })
}
}
return undefined
2020-04-30 07:28:39 +00:00
}
2021-04-20 14:02:15 +00:00
async onSettingsChanged (name: string, settings: any) {
2020-04-30 07:28:39 +00:00
const registered = this.getRegisteredPluginByShortName(name)
if (!registered) {
logger.error('Cannot find plugin %s to call on settings changed.', name)
}
for (const cb of registered.registerHelpers.getOnSettingsChangedCallbacks()) {
2020-04-30 07:28:39 +00:00
try {
2021-04-20 14:02:15 +00:00
await cb(settings)
2020-04-30 07:28:39 +00:00
} catch (err) {
logger.error('Cannot run on settings changed callback for %s.', registered.npmName, { err })
}
}
}
// ###################### Hooks ######################
2020-01-31 15:56:52 +00:00
async runHook<T> (hookName: ServerHookName, result?: T, params?: any): Promise<T> {
2019-07-19 15:30:41 +00:00
if (!this.hooks[hookName]) return Promise.resolve(result)
2019-07-18 12:28:37 +00:00
const hookType = getHookType(hookName)
2019-07-08 13:54:08 +00:00
for (const hook of this.hooks[hookName]) {
2019-07-19 15:30:41 +00:00
logger.debug('Running hook %s of plugin %s.', hookName, hook.npmName)
2022-08-02 13:29:00 +00:00
result = await internalRunHook({
handler: hook.handler,
hookType,
result,
params,
onError: err => { logger.error('Cannot run hook %s of plugin %s.', hookName, hook.pluginName, { err }) }
2019-07-18 12:28:37 +00:00
})
2019-07-08 13:54:08 +00:00
}
return result
}
// ###################### 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 09:18:22 +00: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
}
logger.error('Cannot register plugin %s, skipping.', plugin.name, { err })
}
}
this.sortHooksByPriority()
}
2019-07-12 09:39:58 +00: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)
if (!plugin) {
2019-07-12 09:39:58 +00:00
throw new Error(`Unknown plugin ${npmName} to unregister`)
}
2019-07-18 13:56:42 +00:00
delete this.registeredPlugins[plugin.npmName]
2019-07-26 12:44:50 +00:00
this.deleteTranslations(plugin.npmName)
2019-07-12 09:39:58 +00:00
if (plugin.type === PluginType.PLUGIN) {
await plugin.unregister()
2019-07-12 09:39:58 +00:00
// Remove hooks of this plugin
for (const key of Object.keys(this.hooks)) {
this.hooks[key] = this.hooks[key].filter(h => h.npmName !== npmName)
2019-07-12 09:39:58 +00:00
}
2019-07-08 12:02:03 +00:00
const store = plugin.registerHelpers
store.reinitVideoConstants(plugin.npmName)
store.reinitTranscodingProfilesAndEncoders(plugin.npmName)
2019-07-12 09:39:58 +00:00
logger.info('Regenerating registered plugin CSS to global file.')
await this.regeneratePluginGlobalCSS()
2019-07-08 12:02:03 +00:00
}
2022-03-17 08:09:06 +00:00
ClientHtml.invalidCache()
}
// ###################### Installation ######################
async install (toInstall: string, version?: string, fromDisk = false) {
2019-07-05 13:28:49 +00:00
let plugin: PluginModel
2019-07-12 09:39:58 +00:00
let npmName: string
2019-07-05 13:28:49 +00:00
logger.info('Installing plugin %s.', toInstall)
try {
fromDisk
? await installNpmPluginFromDisk(toInstall)
: await installNpmPlugin(toInstall, version)
2019-07-12 09:39:58 +00:00
npmName = fromDisk ? basename(toInstall) : toInstall
const pluginType = PluginModel.getTypeFromNpmName(npmName)
const pluginName = PluginModel.normalizePluginName(npmName)
2019-07-05 13:28:49 +00:00
2019-07-19 12:36:04 +00:00
const packageJSON = await this.getPackageJSON(pluginName, pluginType)
this.sanitizeAndCheckPackageJSONOrThrow(packageJSON, pluginType);
2019-07-05 13:28:49 +00:00
[ plugin ] = await PluginModel.upsert({
name: pluginName,
description: packageJSON.description,
homepage: packageJSON.homepage,
2019-07-05 13:28:49 +00:00
type: pluginType,
version: packageJSON.version,
enabled: true,
uninstalled: false,
peertubeEngine: packageJSON.engine.peertube
}, { returning: true })
2021-06-30 09:45:06 +00:00
logger.info('Successful installation of plugin %s.', toInstall)
await this.registerPluginOrTheme(plugin)
} catch (rootErr) {
logger.error('Cannot install plugin %s, removing it...', toInstall, { err: rootErr })
2019-07-05 13:28:49 +00:00
try {
2021-12-03 09:49:36 +00:00
await this.uninstall(npmName)
2019-07-05 13:28:49 +00:00
} catch (err) {
2021-06-30 09:45:06 +00:00
logger.error('Cannot uninstall plugin %s after failed installation.', toInstall, { err })
try {
2021-12-03 09:49:36 +00:00
await removeNpmPlugin(npmName)
2021-06-30 09:45:06 +00:00
} catch (err) {
logger.error('Cannot remove plugin %s after failed installation.', toInstall, { err })
}
2019-07-05 13:28:49 +00:00
}
2021-06-30 09:45:06 +00:00
throw rootErr
2019-07-05 13:28:49 +00:00
}
2019-07-12 09:39:58 +00:00
return plugin
}
2021-04-12 08:10:48 +00:00
async update (toUpdate: string, fromDisk = false) {
2019-07-12 09:39:58 +00:00
const npmName = fromDisk ? basename(toUpdate) : toUpdate
logger.info('Updating plugin %s.', npmName)
2021-04-12 08:10:48 +00:00
// Use the latest version from DB, to not upgrade to a version that does not support our PeerTube version
let version: string
if (!fromDisk) {
const plugin = await PluginModel.loadByNpmName(toUpdate)
version = plugin.latestVersion
}
2019-07-12 09:39:58 +00:00
// Unregister old hooks
await this.unregister(npmName)
return this.install(toUpdate, version, fromDisk)
2019-07-05 13:28:49 +00:00
}
async uninstall (npmName: string) {
logger.info('Uninstalling plugin %s.', npmName)
2019-07-08 12:02:03 +00:00
try {
2019-07-12 09:39:58 +00:00
await this.unregister(npmName)
2019-07-08 12:02:03 +00:00
} catch (err) {
2019-07-12 09:39:58 +00:00
logger.warn('Cannot unregister plugin %s.', npmName, { err })
2019-07-08 12:02:03 +00:00
}
const plugin = await PluginModel.loadByNpmName(npmName)
2019-07-08 12:02:03 +00:00
if (!plugin || plugin.uninstalled === true) {
logger.error('Cannot uninstall plugin %s: it does not exist or is already uninstalled.', npmName)
2019-07-08 12:02:03 +00:00
return
}
plugin.enabled = false
plugin.uninstalled = true
await plugin.save()
2019-07-05 13:28:49 +00:00
await removeNpmPlugin(npmName)
2019-07-08 12:02:03 +00:00
logger.info('Plugin %s uninstalled.', npmName)
2019-07-05 13:28:49 +00:00
}
async rebuildNativePluginsIfNeeded () {
if (!await ApplicationModel.nodeABIChanged()) return
return rebuildNativePlugins()
}
// ###################### Private register ######################
private async registerPluginOrTheme (plugin: PluginModel) {
2019-07-12 09:39:58 +00:00
const npmName = PluginModel.buildNpmName(plugin.name, plugin.type)
logger.info('Registering plugin or theme %s.', npmName)
2019-07-19 12:36:04 +00:00
const packageJSON = await this.getPackageJSON(plugin.name, plugin.type)
2019-07-05 13:28:49 +00:00
const pluginPath = this.getPluginPath(plugin.name, plugin.type)
this.sanitizeAndCheckPackageJSONOrThrow(packageJSON, plugin.type)
let library: PluginLibrary
let registerHelpers: RegisterHelpers
if (plugin.type === PluginType.PLUGIN) {
2020-04-22 14:07:04 +00:00
const result = await this.registerPlugin(plugin, pluginPath, packageJSON)
library = result.library
registerHelpers = result.registerStore
}
2021-12-24 09:40:51 +00:00
const clientScripts: { [id: string]: ClientScriptJSON } = {}
2019-07-08 12:02:03 +00:00
for (const c of packageJSON.clientScripts) {
clientScripts[c.script] = c
}
2020-01-31 15:56:52 +00:00
this.registeredPlugins[npmName] = {
2019-07-12 09:39:58 +00:00
npmName,
name: plugin.name,
type: plugin.type,
version: plugin.version,
description: plugin.description,
peertubeEngine: plugin.peertubeEngine,
path: pluginPath,
staticDirs: packageJSON.staticDirs,
2019-07-08 12:02:03 +00:00
clientScripts,
css: packageJSON.css,
registerHelpers: registerHelpers || undefined,
unregister: library ? library.unregister : undefined
}
2019-07-26 12:44:50 +00:00
await this.addTranslations(plugin, npmName, packageJSON.translations)
2022-03-17 08:09:06 +00:00
ClientHtml.invalidCache()
}
2021-12-24 09:40:51 +00:00
private async registerPlugin (plugin: PluginModel, pluginPath: string, packageJSON: PluginPackageJSON) {
2019-07-12 09:39:58 +00:00
const npmName = PluginModel.buildNpmName(plugin.name, plugin.type)
2019-07-19 12:36:04 +00:00
// Delete cache if needed
const modulePath = join(pluginPath, packageJSON.library)
decachePlugin(pluginPath, modulePath)
2019-07-19 12:36:04 +00:00
const library: PluginLibrary = require(modulePath)
2019-07-05 13:28:49 +00:00
if (!isLibraryCodeValid(library)) {
throw new Error('Library code is not valid (miss register or unregister function)')
}
2020-04-22 14:07:04 +00:00
const { registerOptions, registerStore } = this.getRegisterHelpers(npmName, plugin)
await ensureDir(registerOptions.peertubeHelpers.plugin.getDataDirectoryPath())
2021-06-30 09:45:06 +00:00
await library.register(registerOptions)
2019-07-12 09:39:58 +00:00
logger.info('Add plugin %s CSS to global file.', npmName)
await this.addCSSToGlobalFile(pluginPath, packageJSON.css)
2020-04-22 14:07:04 +00:00
return { library, registerStore }
}
2019-07-26 12:44:50 +00:00
// ###################### Translations ######################
2021-12-24 09:40:51 +00:00
private async addTranslations (plugin: PluginModel, npmName: string, translationPaths: PluginTranslationPathsJSON) {
2019-07-26 12:44:50 +00:00
for (const locale of Object.keys(translationPaths)) {
const path = translationPaths[locale]
const json = await readJSON(join(this.getPluginPath(plugin.name, plugin.type), path))
const completeLocale = getCompleteLocale(locale)
2019-07-26 12:44:50 +00:00
if (!this.translations[completeLocale]) this.translations[completeLocale] = {}
this.translations[completeLocale][npmName] = json
logger.info('Added locale %s of plugin %s.', completeLocale, npmName)
2019-07-26 12:44:50 +00:00
}
}
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)
}
}
// ###################### CSS ######################
2019-07-08 12:02:03 +00:00
private resetCSSGlobalFile () {
return outputFile(PLUGIN_GLOBAL_CSS_PATH, '')
}
private async addCSSToGlobalFile (pluginPath: string, cssRelativePaths: string[]) {
for (const cssPath of cssRelativePaths) {
await this.concatFiles(join(pluginPath, cssPath), PLUGIN_GLOBAL_CSS_PATH)
}
}
private concatFiles (input: string, output: string) {
return new Promise<void>((res, rej) => {
2019-07-08 12:02:03 +00:00
const inputStream = createReadStream(input)
const outputStream = createWriteStream(output, { flags: 'a' })
inputStream.pipe(outputStream)
inputStream.on('end', () => res())
inputStream.on('error', err => rej(err))
})
}
private async regeneratePluginGlobalCSS () {
await this.resetCSSGlobalFile()
2019-08-02 08:53:36 +00:00
for (const plugin of this.getRegisteredPlugins()) {
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 13:28:49 +00:00
private getPackageJSON (pluginName: string, pluginType: PluginType) {
const pluginPath = join(this.getPluginPath(pluginName, pluginType), 'package.json')
2021-12-24 09:40:51 +00:00
return readJSON(pluginPath) as Promise<PluginPackageJSON>
2019-07-05 13:28:49 +00:00
}
private getPluginPath (pluginName: string, pluginType: PluginType) {
2019-07-12 09:39:58 +00:00
const npmName = PluginModel.buildNpmName(pluginName, pluginType)
2019-07-05 13:28:49 +00:00
2019-07-12 09:39:58 +00:00
return join(CONFIG.STORAGE.PLUGINS_DIR, 'node_modules', npmName)
2019-07-05 13:28:49 +00:00
}
private getAuth (npmName: string, authName: string) {
const plugin = this.getRegisteredPluginOrTheme(npmName)
if (!plugin || plugin.type !== PluginType.PLUGIN) return null
let auths: (RegisterServerAuthPassOptions | RegisterServerAuthExternalOptions)[] = plugin.registerHelpers.getIdAndPassAuths()
auths = auths.concat(plugin.registerHelpers.getExternalAuths())
2020-04-29 07:04:42 +00:00
return auths.find(a => a.authName === authName)
}
// ###################### Private getters ######################
2019-07-08 12:02:03 +00:00
2019-07-09 09:45:19 +00:00
private getRegisteredPluginsOrThemes (type: PluginType) {
const plugins: RegisteredPlugin[] = []
2019-07-12 09:39:58 +00:00
for (const npmName of Object.keys(this.registeredPlugins)) {
2020-01-31 15:56:52 +00:00
const plugin = this.registeredPlugins[npmName]
2019-07-09 09:45:19 +00:00
if (plugin.type !== type) continue
plugins.push(plugin)
}
return plugins
}
2019-07-18 14:43:41 +00:00
// ###################### Generate register helpers ######################
2020-04-22 14:07:04 +00:00
private getRegisterHelpers (
npmName: string,
plugin: PluginModel
): { registerStore: RegisterHelpers, registerOptions: RegisterServerOptions } {
const onHookAdded = (options: RegisterServerHookOptions) => {
2019-07-18 14:43:41 +00:00
if (!this.hooks[options.target]) this.hooks[options.target] = []
this.hooks[options.target].push({
2022-07-13 09:58:01 +00:00
npmName,
2019-07-18 14:43:41 +00:00
pluginName: plugin.name,
handler: options.handler,
priority: options.priority || 0
})
}
const registerHelpers = new RegisterHelpers(npmName, plugin, this.server, onHookAdded.bind(this))
2019-07-18 14:43:41 +00:00
2020-04-22 14:07:04 +00:00
return {
registerStore: registerHelpers,
registerOptions: registerHelpers.buildRegisterHelpers()
2020-04-22 14:07:04 +00:00
}
}
2021-12-24 09:40:51 +00: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 15:56:52 +00:00
.join(', ')
throw new Error(`PackageJSON is invalid (invalid fields: ${formattedFields}).`)
}
}
static get Instance () {
return this.instance || (this.instance = new this())
}
}