2019-09-19 10:59:32 +00:00
|
|
|
import { plugin, server, command, event, MiaoScriptConsole } from '@ms/api'
|
|
|
|
import { injectable, inject, postConstruct, Container, DefaultContainer as container } from '@ms/container'
|
2019-09-07 04:23:15 +00:00
|
|
|
import * as fs from '@ms/common/dist/fs'
|
|
|
|
|
2019-09-19 10:59:32 +00:00
|
|
|
import { getPluginMetadatas, getPluginCommandMetadata, getPluginListenerMetadata, getPlugin, getPluginTabCompleterMetadata } from './utils'
|
2019-11-05 09:03:49 +00:00
|
|
|
import { interfaces } from './interfaces'
|
2019-09-07 04:23:15 +00:00
|
|
|
|
|
|
|
@injectable()
|
|
|
|
export class PluginManagerImpl implements plugin.PluginManager {
|
|
|
|
@inject(plugin.PluginInstance)
|
2019-11-05 09:03:49 +00:00
|
|
|
private pluginInstance: any
|
2019-09-07 04:23:15 +00:00
|
|
|
@inject(server.ServerType)
|
2019-11-05 09:03:49 +00:00
|
|
|
private serverType: string
|
2019-09-10 09:22:00 +00:00
|
|
|
@inject(server.Console)
|
2019-11-05 09:03:49 +00:00
|
|
|
private Console: MiaoScriptConsole
|
2019-09-19 10:59:32 +00:00
|
|
|
@inject(command.Command)
|
2019-11-05 09:03:49 +00:00
|
|
|
private CommandManager: command.Command
|
2019-09-19 10:59:32 +00:00
|
|
|
@inject(event.Event)
|
2019-11-05 09:03:49 +00:00
|
|
|
private EventManager: event.Event
|
2019-09-07 04:23:15 +00:00
|
|
|
|
2019-11-05 09:03:49 +00:00
|
|
|
private pluginMap: Map<string, interfaces.Plugin>
|
2019-09-07 04:23:15 +00:00
|
|
|
|
|
|
|
@postConstruct()
|
|
|
|
init() {
|
|
|
|
if (this.pluginInstance !== null) {
|
|
|
|
// 如果plugin不等于null 则代表是正式环境
|
2019-11-05 09:03:49 +00:00
|
|
|
console.info(`Initialization MiaoScript Plugin System: ${this.pluginInstance} ...`)
|
|
|
|
this.pluginMap = new Map()
|
|
|
|
console.info(`${this.EventManager.mapEventName().toFixed(0)} ${this.serverType} Event Mapping Complate...`)
|
2019-09-07 04:23:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
scan(folder: string): void {
|
2019-11-05 09:03:49 +00:00
|
|
|
var plugin = fs.file(root, folder)
|
2019-09-07 04:23:15 +00:00
|
|
|
var files = []
|
|
|
|
// load common plugin
|
|
|
|
.concat(this.scanFloder(plugin))
|
|
|
|
// load space plugin
|
|
|
|
.concat(this.scanFloder(fs.file(plugin, this.serverType)))
|
2019-11-05 09:03:49 +00:00
|
|
|
this.loadPlugins(files)
|
2019-09-07 04:23:15 +00:00
|
|
|
}
|
|
|
|
|
2019-09-19 10:59:32 +00:00
|
|
|
build(container: Container): void {
|
2019-11-05 09:03:49 +00:00
|
|
|
this.buildPlugins(container)
|
2019-09-07 04:23:15 +00:00
|
|
|
}
|
|
|
|
|
2019-09-19 10:59:32 +00:00
|
|
|
load(...args: any[]): void {
|
2019-09-21 07:05:37 +00:00
|
|
|
this.checkAndGet(args[0]).forEach(pl => {
|
2019-11-05 09:03:49 +00:00
|
|
|
this.runCatch(pl, 'load')
|
|
|
|
this.runCatch(pl, `${this.serverType}load`)
|
|
|
|
})
|
2019-09-07 04:23:15 +00:00
|
|
|
}
|
|
|
|
|
2019-09-19 10:59:32 +00:00
|
|
|
enable(...args: any[]): void {
|
2019-09-22 10:00:18 +00:00
|
|
|
this.checkAndGet(args[0]).forEach(plugin => {
|
|
|
|
this.runCatch(plugin, 'enable')
|
2019-11-05 09:03:49 +00:00
|
|
|
this.runCatch(plugin, `${this.serverType}enable`)
|
|
|
|
this.registryCommand(plugin)
|
|
|
|
this.registryListener(plugin)
|
|
|
|
})
|
2019-09-19 10:59:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
disable(...args: any[]): void {
|
|
|
|
this.checkAndGet(args[0]).forEach(pl => {
|
2019-11-05 09:03:49 +00:00
|
|
|
this.runCatch(pl, 'disable')
|
|
|
|
this.runCatch(pl, `${this.serverType}disable`)
|
|
|
|
this.unregistryCommand(pl)
|
|
|
|
this.unregistryListener(pl)
|
|
|
|
})
|
2019-09-19 10:59:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
reload(...args: any[]): void {
|
2019-09-21 07:05:37 +00:00
|
|
|
this.checkAndGet(args[0]).forEach((pl: interfaces.Plugin) => {
|
2019-11-05 09:03:49 +00:00
|
|
|
this.disable(pl)
|
|
|
|
this.loadPlugin(pl.description.source)
|
|
|
|
pl = this.buildPlugin(getPlugin(pl.description.name))
|
|
|
|
this.load(pl)
|
|
|
|
this.enable(pl)
|
2019-09-19 10:59:32 +00:00
|
|
|
})
|
2019-09-07 04:23:15 +00:00
|
|
|
}
|
|
|
|
|
2019-09-22 10:00:18 +00:00
|
|
|
getPlugins() {
|
2019-11-05 09:03:49 +00:00
|
|
|
return this.pluginMap
|
2019-09-22 10:00:18 +00:00
|
|
|
}
|
|
|
|
|
2019-09-07 04:23:15 +00:00
|
|
|
private runCatch(pl: any, func: string) {
|
|
|
|
try {
|
2019-11-05 09:03:49 +00:00
|
|
|
if (pl[func]) pl[func].call(pl)
|
2019-09-07 04:23:15 +00:00
|
|
|
} catch (ex) {
|
2019-11-05 09:03:49 +00:00
|
|
|
console.console(`§6插件 §b${pl.description.name} §6执行 §d${func} §6方法时发生错误 §4${ex}`)
|
|
|
|
console.ex(ex)
|
2019-09-07 04:23:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-19 10:59:32 +00:00
|
|
|
private checkAndGet(name: string | interfaces.Plugin | undefined): Map<string, interfaces.Plugin> | interfaces.Plugin[] {
|
2019-11-05 09:03:49 +00:00
|
|
|
if (name == undefined) { return this.pluginMap }
|
|
|
|
if (typeof name == 'string' && this.pluginMap.has(name)) { return [this.pluginMap.get(name)] }
|
|
|
|
if (name instanceof interfaces.Plugin) { return [name as interfaces.Plugin] }
|
|
|
|
throw new Error(`Plugin ${JSON.stringify(name)} not exist!`)
|
2019-09-19 10:59:32 +00:00
|
|
|
}
|
|
|
|
|
2019-09-07 04:23:15 +00:00
|
|
|
private scanFloder(plugin: any): string[] {
|
2019-11-05 09:03:49 +00:00
|
|
|
var files = []
|
|
|
|
console.info(`Scanning Plugins in ${plugin} ...`)
|
|
|
|
this.checkUpdateFolder(plugin)
|
|
|
|
fs.list(plugin).forEach((file: any) => files.push(file.toFile()))
|
|
|
|
return files
|
2019-09-07 04:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 更新插件
|
|
|
|
* @param path
|
|
|
|
*/
|
2020-01-15 08:48:18 +00:00
|
|
|
private checkUpdateFolder(path: any) {
|
2019-11-05 09:03:49 +00:00
|
|
|
var update = fs.file(path, "update")
|
2019-09-07 04:23:15 +00:00
|
|
|
if (!update.exists()) {
|
2019-11-05 09:03:49 +00:00
|
|
|
update.mkdirs()
|
2019-09-07 04:23:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private loadPlugins(files: any[]): void {
|
2019-11-05 09:03:49 +00:00
|
|
|
this.loadJsPlugins(files)
|
2019-09-07 04:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* JS类型插件预加载
|
|
|
|
*/
|
|
|
|
private loadJsPlugins(files: any[]) {
|
2019-09-19 10:59:32 +00:00
|
|
|
files.filter(file => file.name.endsWith(".js")).forEach(file => this.loadPlugin(file))
|
2019-09-07 04:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private loadPlugin(file: any) {
|
2019-09-19 10:59:32 +00:00
|
|
|
try {
|
2019-11-05 09:03:49 +00:00
|
|
|
this.updatePlugin(file)
|
|
|
|
this.createPlugin(file)
|
2019-09-19 10:59:32 +00:00
|
|
|
} catch (ex) {
|
2019-11-05 09:03:49 +00:00
|
|
|
console.console(`§6插件 §b${file.name} §6初始化时发生错误 §4${ex.message}`)
|
|
|
|
console.ex(ex)
|
2019-09-19 10:59:32 +00:00
|
|
|
}
|
2019-09-07 04:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private updatePlugin(file: any) {
|
2019-11-05 09:03:49 +00:00
|
|
|
var update = fs.file(fs.file(file.parentFile, 'update'), file.name)
|
2019-09-07 04:23:15 +00:00
|
|
|
if (update.exists()) {
|
2019-11-05 09:03:49 +00:00
|
|
|
console.info(`Auto Update Plugin ${file.name} ...`)
|
|
|
|
fs.move(update, file, true)
|
2019-09-07 04:23:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private createPlugin(file) {
|
|
|
|
//@ts-ignore
|
|
|
|
require(file, {
|
|
|
|
cache: false
|
2019-11-05 09:03:49 +00:00
|
|
|
})
|
2019-09-07 04:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private buildPlugins(container: Container) {
|
2019-11-05 09:03:49 +00:00
|
|
|
let pluginMetadatas = getPluginMetadatas()
|
2019-09-19 10:59:32 +00:00
|
|
|
pluginMetadatas.forEach(metadata => {
|
2019-11-05 09:03:49 +00:00
|
|
|
this.buildPlugin(metadata)
|
|
|
|
})
|
2019-09-19 10:59:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private buildPlugin(metadata: interfaces.PluginMetadata) {
|
2019-11-05 09:03:49 +00:00
|
|
|
this.bindPlugin(metadata)
|
|
|
|
let pluginInstance = container.getNamed<interfaces.Plugin>(plugin.Plugin, metadata.name)
|
|
|
|
if (!(pluginInstance instanceof interfaces.Plugin)) {
|
|
|
|
console.console(`§4found error plugin §b${metadata.source} §4it's not extends interfaces.Plugin, the plugin will be ignore!`)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
this.pluginMap.set(metadata.name, pluginInstance)
|
|
|
|
pluginInstance.description = metadata
|
|
|
|
// @ts-ignore
|
|
|
|
pluginInstance.logger = new this.Console(metadata.prefix || metadata.name)
|
|
|
|
return pluginInstance
|
|
|
|
}
|
|
|
|
|
|
|
|
private bindPlugin(metadata: interfaces.PluginMetadata) {
|
2019-09-19 10:59:32 +00:00
|
|
|
try {
|
|
|
|
let pluginInstance = container.getNamed<interfaces.Plugin>(plugin.Plugin, metadata.name)
|
|
|
|
if (pluginInstance.description.source + '' !== metadata.source + '') {
|
2019-11-05 09:03:49 +00:00
|
|
|
console.console(`§4found duplicate plugin §b${pluginInstance.description.source} §4and §b${metadata.source}§4. the first plugin will be ignore!`)
|
2019-09-19 10:59:32 +00:00
|
|
|
}
|
2019-11-05 09:03:49 +00:00
|
|
|
container.rebind(plugin.Plugin).to(metadata.target).inSingletonScope().whenTargetNamed(metadata.name)
|
2019-09-19 10:59:32 +00:00
|
|
|
} catch{
|
2019-11-05 09:03:49 +00:00
|
|
|
container.bind(plugin.Plugin).to(metadata.target).inSingletonScope().whenTargetNamed(metadata.name)
|
2019-09-19 10:59:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private registryCommand(pluginInstance: interfaces.Plugin) {
|
2019-11-05 09:03:49 +00:00
|
|
|
let cmds = getPluginCommandMetadata(pluginInstance)
|
|
|
|
let tabs = getPluginTabCompleterMetadata(pluginInstance)
|
2019-09-19 10:59:32 +00:00
|
|
|
cmds.forEach(cmd => {
|
2019-11-05 09:03:49 +00:00
|
|
|
let tab = tabs.get(cmd.name)
|
2019-09-19 10:59:32 +00:00
|
|
|
this.CommandManager.on(pluginInstance, cmd.name, {
|
|
|
|
cmd: pluginInstance[cmd.executor].bind(pluginInstance),
|
|
|
|
tab: tab ? pluginInstance[tab.executor].bind(pluginInstance) : undefined
|
2019-11-05 09:03:49 +00:00
|
|
|
})
|
2019-09-19 10:59:32 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
private registryListener(pluginInstance: interfaces.Plugin) {
|
|
|
|
let events = getPluginListenerMetadata(pluginInstance)
|
|
|
|
for (const event of events) {
|
2019-09-21 07:05:37 +00:00
|
|
|
// ignore space listener
|
2019-11-05 09:03:49 +00:00
|
|
|
if (event.servertype && event.servertype != this.serverType) { continue }
|
2019-09-19 10:59:32 +00:00
|
|
|
// here must bind this to pluginInstance
|
2019-11-05 09:03:49 +00:00
|
|
|
this.EventManager.listen(pluginInstance, event.name, pluginInstance[event.executor].bind(pluginInstance))
|
2019-09-07 04:23:15 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-22 10:00:18 +00:00
|
|
|
|
|
|
|
private unregistryCommand(pluginInstance: interfaces.Plugin) {
|
2019-11-05 09:03:49 +00:00
|
|
|
let cmds = getPluginCommandMetadata(pluginInstance)
|
2019-09-22 10:00:18 +00:00
|
|
|
cmds.forEach(cmd => {
|
2019-11-05 09:03:49 +00:00
|
|
|
this.CommandManager.off(pluginInstance, cmd.name)
|
2019-09-22 10:00:18 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
private unregistryListener(pluginInstance: interfaces.Plugin) {
|
2019-11-05 09:03:49 +00:00
|
|
|
this.EventManager.disable(pluginInstance)
|
2019-09-22 10:00:18 +00:00
|
|
|
}
|
2019-09-07 04:23:15 +00:00
|
|
|
}
|