2020-05-02 16:14:47 +00:00
|
|
|
/// <reference types="@ccms/types/dist/typings/bukkit" />
|
|
|
|
/// <reference types="@ccms/types/dist/typings/sponge" />
|
|
|
|
/// <reference types="@ccms/types/dist/typings/bungee" />
|
2020-01-16 09:27:24 +00:00
|
|
|
|
2020-05-02 16:14:47 +00:00
|
|
|
import { plugin as pluginApi, server, task } from '@ccms/api'
|
|
|
|
import { plugin, interfaces, cmd } from '@ccms/plugin'
|
|
|
|
import { inject, ContainerInstance, Container } from '@ccms/container'
|
|
|
|
import io, { Server as SocketIOServer, Socket as SocketIOSocket } from '@ccms/websocket'
|
2020-05-11 09:22:15 +00:00
|
|
|
import * as fs from '@ccms/common/dist/fs'
|
2020-05-13 10:42:41 +00:00
|
|
|
import * as reflect from '@ccms/common/dist/reflect'
|
2019-11-10 02:11:13 +00:00
|
|
|
|
2020-04-24 08:42:36 +00:00
|
|
|
const suffixMap = {
|
|
|
|
ts: 'typescript',
|
|
|
|
js: 'javascript',
|
|
|
|
yml: 'yaml'
|
|
|
|
}
|
|
|
|
|
2020-02-27 10:15:33 +00:00
|
|
|
@plugin({ name: 'MiaoConsole', version: '1.0.0', author: 'MiaoWoo', servers: ['!nukkit'], source: __filename })
|
2020-01-16 09:27:24 +00:00
|
|
|
export class MiaoConsole extends interfaces.Plugin {
|
2020-04-07 05:39:35 +00:00
|
|
|
@inject(ContainerInstance)
|
|
|
|
private container: Container
|
2019-10-30 12:45:59 +00:00
|
|
|
@inject(server.ServerType)
|
2020-04-07 05:39:35 +00:00
|
|
|
private serverType: string
|
2020-01-16 09:27:24 +00:00
|
|
|
@inject(server.Server)
|
2020-04-07 05:39:35 +00:00
|
|
|
private server: server.Server
|
2020-01-16 09:27:24 +00:00
|
|
|
@inject(task.TaskManager)
|
2020-04-07 05:39:35 +00:00
|
|
|
private task: task.TaskManager
|
|
|
|
@inject(pluginApi.PluginManager)
|
|
|
|
private pluginManager: pluginApi.PluginManager
|
2020-05-11 09:22:15 +00:00
|
|
|
@inject(pluginApi.PluginFolder)
|
|
|
|
private pluginFolder: string;
|
2020-01-16 09:27:24 +00:00
|
|
|
|
2020-03-30 10:49:19 +00:00
|
|
|
private pipeline: any;
|
|
|
|
private socketIOServer: SocketIOServer;
|
2020-05-13 10:42:41 +00:00
|
|
|
private rootLogger: any;
|
|
|
|
private tempAppender: any;
|
2019-09-24 02:12:57 +00:00
|
|
|
|
2019-10-30 12:45:59 +00:00
|
|
|
@cmd()
|
2020-01-16 09:27:24 +00:00
|
|
|
mconsole(sender: any, command: string, args: string[]) {
|
2020-04-07 05:39:35 +00:00
|
|
|
if (args[0] == 'reload') {
|
|
|
|
// @ts-ignore
|
|
|
|
require.clear('websocket');
|
|
|
|
this.pluginManager.reload(this);
|
|
|
|
return
|
|
|
|
}
|
|
|
|
let tfunc = new Function('pipeline', args.join(' '))
|
|
|
|
tfunc.apply(this, [this.pipeline])
|
2020-01-17 09:47:38 +00:00
|
|
|
}
|
|
|
|
|
2020-04-07 05:39:35 +00:00
|
|
|
enable() {
|
|
|
|
let count = 0;
|
|
|
|
let wait = this.task.create(() => {
|
|
|
|
this.pipeline = this.server.getNettyPipeline()
|
|
|
|
if (this.pipeline) {
|
|
|
|
wait.cancel()
|
|
|
|
this.createSocketIOServer()
|
|
|
|
this.startSocketIOServer()
|
2020-01-16 09:27:24 +00:00
|
|
|
}
|
2020-04-07 05:39:35 +00:00
|
|
|
if (count > 30) { wait.cancel() }
|
|
|
|
count++
|
|
|
|
}).later(20).timer(40).submit()
|
2020-05-13 10:42:41 +00:00
|
|
|
try {
|
|
|
|
let server = Java.type('net.minecraft.server.v1_12_R1.MinecraftServer');
|
|
|
|
this.rootLogger = server.LOGGER.parent;
|
|
|
|
} catch (error) {
|
|
|
|
try {
|
|
|
|
this.rootLogger = reflect.on(org.spongepowered.api.Sponge.getServer()).get('field_147145_h').get();
|
|
|
|
this.rootLogger = this.rootLogger.parent.parent;
|
|
|
|
} catch (ex) {
|
|
|
|
console.error('§6初始化日志代理器失败 §4错误: §c' + ex)
|
|
|
|
console.ex(ex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (this.rootLogger) {
|
|
|
|
let AbstractAppender = Java.type('org.apache.logging.log4j.core.appender.AbstractAppender');
|
|
|
|
let ProxyAppender = Java.extend(AbstractAppender, {
|
|
|
|
append: (logEvent) => global.eventCenter.emit('log', logEvent.getMessage().getFormattedMessage())
|
|
|
|
})
|
|
|
|
this.tempAppender = new ProxyAppender("ProxyLogger", null, null)
|
|
|
|
this.tempAppender.start();
|
|
|
|
this.rootLogger.addAppender(this.tempAppender);
|
|
|
|
this.rootLogger.setAdditive(true);
|
|
|
|
}
|
2019-10-30 12:45:59 +00:00
|
|
|
}
|
2019-09-24 02:12:57 +00:00
|
|
|
|
2020-04-07 05:39:35 +00:00
|
|
|
disable() {
|
|
|
|
this.socketIOServer?.close()
|
|
|
|
if (this.container.isBound(io.Instance)) {
|
|
|
|
this.container.unbind(io.Instance)
|
2019-10-30 12:45:59 +00:00
|
|
|
}
|
2020-05-13 10:42:41 +00:00
|
|
|
try {
|
|
|
|
this.tempAppender.stop();
|
|
|
|
this.rootLogger.removeAppender(this.tempAppender);
|
|
|
|
} catch (error) {
|
|
|
|
console.ex(error);
|
|
|
|
}
|
2019-10-30 12:45:59 +00:00
|
|
|
}
|
2019-09-24 02:12:57 +00:00
|
|
|
|
2020-04-07 05:39:35 +00:00
|
|
|
createSocketIOServer() {
|
|
|
|
this.socketIOServer = io(this.pipeline, {
|
|
|
|
path: '/ws',
|
|
|
|
root: '/home/project/TSWorkSpace/ms/packages/plugins/public'
|
|
|
|
});
|
|
|
|
this.container.bind(io.Instance).toConstantValue(this.socketIOServer)
|
2020-01-16 09:27:24 +00:00
|
|
|
}
|
|
|
|
|
2020-04-07 05:39:35 +00:00
|
|
|
startSocketIOServer() {
|
2020-03-30 10:49:19 +00:00
|
|
|
let namespace = this.socketIOServer.of('/MiaoConsole')
|
|
|
|
namespace.on('connect', (client: SocketIOSocket) => {
|
2020-05-13 10:42:41 +00:00
|
|
|
global.eventCenter.on('log', (msg) => client.emit('log', msg))
|
2020-04-07 05:39:35 +00:00
|
|
|
this.logger.console(`§6客户端 §b${client.id} §a新建连接...`)
|
2020-03-30 10:49:19 +00:00
|
|
|
client.on('type', (fn) => {
|
2020-04-07 05:39:35 +00:00
|
|
|
fn && fn(this.serverType)
|
|
|
|
client.emit('log', `Currect Server Version is ${this.server.getVersion()}`)
|
2020-03-30 10:49:19 +00:00
|
|
|
})
|
|
|
|
client.on('command', (cmd) => {
|
2020-04-07 05:39:35 +00:00
|
|
|
setTimeout(() => this.server.dispatchConsoleCommand(cmd), 0)
|
2020-03-30 10:49:19 +00:00
|
|
|
client.emit('log', `§6命令: §b${cmd} §a执行成功!`)
|
|
|
|
})
|
|
|
|
client.on('exec', (code) => {
|
|
|
|
try {
|
2020-04-07 05:39:35 +00:00
|
|
|
client.emit('log', this.runCode(code, namespace, client))
|
2020-03-30 10:49:19 +00:00
|
|
|
} catch (ex) {
|
|
|
|
client.emit('log', '§4代码执行异常\n' + console.stack(ex).join('\n'))
|
|
|
|
}
|
|
|
|
})
|
2020-04-07 05:39:35 +00:00
|
|
|
client.on('edit', (file: string, fn) => {
|
2020-04-24 08:42:36 +00:00
|
|
|
fn && fn(base.read(file), suffixMap[file.split('.', 2)[1]])
|
2020-04-07 05:39:35 +00:00
|
|
|
})
|
2020-05-11 09:22:15 +00:00
|
|
|
client.on('save', (name: string, content: string, fn) => {
|
|
|
|
this.logger.console(`§6客户端 §b${client.id} §6请求更新插件 §a${name} §6...`)
|
|
|
|
let file = fs.concat(root, this.pluginFolder, name + '.js')
|
|
|
|
if (!fs.exists(file)) { return fn('§6插件 §a' + name + ' §6尚未安装 §c请先创建空文件 或安装插件!') }
|
|
|
|
try {
|
|
|
|
base.save(file, content)
|
|
|
|
this.pluginManager.reload(name);
|
|
|
|
fn('§6插件 §a' + name + ' §6更新成功!')
|
|
|
|
} catch (error) {
|
|
|
|
this.logger.error(error)
|
|
|
|
fn('§6插件 §a' + name + ' §4更新异常 错误: ' + error)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
client.on('error', (error) => {
|
|
|
|
this.logger.console(`§6客户端 §b${client.id} §c触发异常: ${error}`)
|
|
|
|
this.logger.error(error)
|
|
|
|
})
|
2020-03-30 10:49:19 +00:00
|
|
|
client.on('disconnect', () => {
|
|
|
|
this.logger.console(`§6客户端 §b${client.id} §c断开连接...`)
|
|
|
|
})
|
|
|
|
})
|
2020-01-16 09:27:24 +00:00
|
|
|
this.logger.info('Netty Channel Pipeline Inject MiaoDetectHandler Successful!')
|
2019-09-24 02:12:57 +00:00
|
|
|
}
|
2020-04-07 05:39:35 +00:00
|
|
|
|
2020-04-24 08:42:36 +00:00
|
|
|
private runCode(code: string, namespace: any, client: any) {
|
2020-04-07 05:39:35 +00:00
|
|
|
let tfunc = new Function('namespace', 'client', `
|
2020-05-02 16:14:47 +00:00
|
|
|
var reflect = require('@ccms/common/dist/reflect');
|
2020-04-07 05:39:35 +00:00
|
|
|
var tempconcent = '';
|
|
|
|
function print(text) {
|
2020-04-24 08:42:36 +00:00
|
|
|
tempconcent += text + "\\n"
|
2020-04-07 05:39:35 +00:00
|
|
|
}
|
2020-04-24 08:42:36 +00:00
|
|
|
var result = eval(${JSON.stringify(code)});
|
|
|
|
return tempconcent + result
|
2020-04-07 05:39:35 +00:00
|
|
|
`)
|
|
|
|
return this.task.callSyncMethod(() => tfunc.apply(this, [namespace, client])) + ''
|
|
|
|
}
|
2020-02-27 10:15:33 +00:00
|
|
|
}
|