forked from ayunami2000/ayunMultiPort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheagler_only.js
141 lines (117 loc) · 3.69 KB
/
eagler_only.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
const Net = require('net');
const { WebSocketServer, WebSocket } = require('ws');
const fs = require("fs");
const path = require("path");
const mime = require("mime-types");
const bufferReplace = require('buffer-replace');
const crypto = require('crypto');
const Jimp = require('jimp');
const listenPort = 80;
const mcHost = "localhost";
const mcPort = 25569;
const serverName = "ayunMultiPort Server";
const serverMotd = ["line1", "line2"];
const serverMaxPlayers = 20;
const serverOnlinePlayers = 4;
const serverPlayers = ["Welcome to my", "ayunMultiPort-powered", "Eaglercraft server!"];
const serverIcon = "icon.png"; // set to null for no icon. MUST be 64x64. can be a url, if you want...
const timeout = 10000;
const changeProtocol = true;
const removeSkin = true;
const prefix = "www";
let iconBuff = null;
if(serverIcon!=null){
Jimp.read(serverIcon, function (err, image) {
if(!err)iconBuff=Buffer.from(image.bitmap.data);
});
}
let files = [];
let cache = {};
function throughDirectory(directory) {
fs.readdirSync(directory).forEach(file => {
const absolute = path.join(directory, file);
if (fs.statSync(absolute).isDirectory()) return throughDirectory(absolute);
else return files.push(absolute.toString().slice(prefix.length+1).replace(/\\/g,"/"));
});
}
throughDirectory(prefix);
const httpsrv = require("http").createServer((req,res)=>{
let url = req.url;
if (url.includes("?")) url = url.slice(0, url.indexOf("?"));
if(url.startsWith("/"))url=url.slice(1);
if(url=="")url = "index.html";
if(files.includes(url)){
res.writeHead(200,{"Content-Type":mime.contentType(url)});
if(!(url in cache)){
cache[url]=fs.readFileSync(prefix+"/"+url);
}
res.end(cache[url]);
}else{
res.writeHead(404,{"Content-Type":"text/plain"});
res.end("404 Not Found");
}
});
const wss = new WebSocketServer({ server: httpsrv });
const motdBase = {data:{motd:serverMotd,cache:true,max:serverMaxPlayers,players:serverPlayers,icon:serverIcon!=null,online:serverOnlinePlayers},vers:"0.2.0",name:serverName,time:0,type:"motd",brand:"Eagtek",uuid:crypto.randomUUID(),cracked:true};
function getMotd(){
motdBase.time = Date.now();
return JSON.stringify(motdBase);
}
wss.on('connection', function(ws) {
ws.on('error', function(er) {});
let client = null;
makeWsMcClient(ws,c=>client=c);
let msgNum = 0;
ws.on('message', function(data) {
if(msgNum==0){
msgNum++;
if(data.toString()=="Accept: MOTD"){
ws.send(getMotd());
if(iconBuff!=null)ws.send(iconBuff);
closeIt();
return;
}
if(changeProtocol)data=bufferReplace(data,Buffer.from("0245","hex"),Buffer.from("023d","hex"));
}else if(msgNum==1){
msgNum++;
if(removeSkin)return;//eaglercraft skin
}
writeData(data);
});
ws.on('close', function(){
closeIt();
});
async function writeData(chunk){
if(await waitForIt())client.write(chunk);
}
async function closeIt(){
if(await waitForIt())client.end();
}
async function waitForIt(){
let i=Date.now();
while(client==null&&(Date.now()-i<timeout/10)){
await new Promise(a=>setTimeout(a,10));
}
if(client==null){
if(ws.readyState==WebSocket.OPEN)ws.close();
return false;
}
return true;
}
});
httpsrv.listen(listenPort);
function makeWsMcClient(ws,cb){
const client = new Net.Socket();
client.connect({ port: mcPort, host: mcHost }, function() {
cb(client);
});
client.on('end', function() {
if(ws.readyState==WebSocket.OPEN)ws.close();
});
client.on('data', function(chunk) {
if(ws.readyState==WebSocket.OPEN)ws.send(chunk);
});
client.on('error', function(err) {
//console.log(`Client Error: ${err}`);
});
}