mirror of
https://github.com/WorldEditAxe/eaglerproxy.git
synced 2024-11-08 06:56:03 -08:00
add example plugins
This commit is contained in:
parent
2d6a85da49
commit
7d4baa93cf
4
example_plugins/AutokickPlugin/config.ts
Normal file
4
example_plugins/AutokickPlugin/config.ts
Normal file
|
@ -0,0 +1,4 @@
|
|||
export const config = {
|
||||
bindInternalServerPort: 25569,
|
||||
bindInternalServerIp: "127.0.0.1",
|
||||
};
|
64
example_plugins/AutokickPlugin/index.ts
Normal file
64
example_plugins/AutokickPlugin/index.ts
Normal file
|
@ -0,0 +1,64 @@
|
|||
import metadata from "./metadata.json" assert { type: "json" };
|
||||
import { createServer } from "minecraft-protocol";
|
||||
import { config } from "./config.js";
|
||||
|
||||
const PluginManager = PLUGIN_MANAGER as any;
|
||||
|
||||
const Logger = PluginManager.Logger;
|
||||
const Enums = PluginManager.Enums;
|
||||
const Chat = PluginManager.Chat;
|
||||
const Constants = PluginManager.Constants;
|
||||
const Motd = PluginManager.Motd;
|
||||
const Player = PluginManager.Player;
|
||||
const MineProtocol = PluginManager.MineProtocol;
|
||||
const EaglerSkins = PluginManager.EaglerSkins;
|
||||
const Util = PluginManager.Util;
|
||||
|
||||
const logger = new Logger("EaglerProxyAAS");
|
||||
logger.info(`Starting ${metadata.name} v${metadata.version}...`);
|
||||
logger.info(
|
||||
`(internal server port: ${config.bindInternalServerPort}, internal server IP: ${config.bindInternalServerPort})`
|
||||
);
|
||||
|
||||
logger.info("Starting internal server...");
|
||||
let server = createServer({
|
||||
host: config.bindInternalServerIp,
|
||||
port: config.bindInternalServerPort,
|
||||
motdMsg: `${Enums.ChatColor.GOLD}EaglerProxy as a Service`,
|
||||
"online-mode": false,
|
||||
version: "1.8.9",
|
||||
});
|
||||
|
||||
server.on("login", (client) => {
|
||||
logger.info(
|
||||
`Client ${client.username} has connected to the authentication server.`
|
||||
);
|
||||
client.on("end", () => {
|
||||
logger.info(
|
||||
`Client ${client.username} has disconnected from the authentication server.`
|
||||
);
|
||||
});
|
||||
client.write("kick_disconnect", {
|
||||
reason:
|
||||
Enums.ChatColor.GREEN +
|
||||
"Hi there!\n" +
|
||||
Enums.ChatColor.GOLD +
|
||||
"This server will be down for a while as I migrate the server from existing hardware to new, faster hardware.\nThis process will take approximately " +
|
||||
Enums.ChatColor.RED +
|
||||
"3-5 days" +
|
||||
Enums.ChatColor.GOLD +
|
||||
" to complete. Until then, you will be unable to connect or access the server.\n" +
|
||||
"Thank you for your understanding! :)",
|
||||
});
|
||||
});
|
||||
|
||||
logger.info(
|
||||
"Redirecting backend server IP... (this is required for the plugin to function)"
|
||||
);
|
||||
CONFIG.adapter.server = {
|
||||
host: config.bindInternalServerIp,
|
||||
port: config.bindInternalServerPort,
|
||||
};
|
||||
CONFIG.adapter.motd = {
|
||||
l1: Enums.ChatColor.RED + "Server Under Maintenance",
|
||||
};
|
14
example_plugins/AutokickPlugin/metadata.json
Normal file
14
example_plugins/AutokickPlugin/metadata.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"name": "AutoKick",
|
||||
"id": "autokick",
|
||||
"version": "1.2.0",
|
||||
"entry_point": "index.js",
|
||||
"load_after": [],
|
||||
"requirements": [],
|
||||
"incompatibilities": [
|
||||
{
|
||||
"id": "eagpaas",
|
||||
"version": "^0.0.0"
|
||||
}
|
||||
]
|
||||
}
|
5
example_plugins/AutokickPlugin/types.d.ts
vendored
Normal file
5
example_plugins/AutokickPlugin/types.d.ts
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
declare global {
|
||||
var PLUGIN_MANAGER;
|
||||
}
|
||||
|
||||
export {};
|
|
@ -2,12 +2,12 @@
|
|||
"compilerOptions": {
|
||||
"module": "esnext",
|
||||
"esModuleInterop": true,
|
||||
"target": "es2017",
|
||||
"target": "ESNext",
|
||||
"moduleResolution": "node",
|
||||
"sourceMap": false,
|
||||
"outDir": "build",
|
||||
"resolveJsonModule": true
|
||||
},
|
||||
"include": ["src/**/*.json", "src/**/*"],
|
||||
"include": ["src/**/*.json", "src/**/*", "example_plugins/AutokickPlugin"],
|
||||
"hooks": ["copy-files"]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user