-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathremote.mjs
112 lines (96 loc) · 2.69 KB
/
remote.mjs
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
import {readFileSync} from "node:fs";
import {join} from "node:path";
import {WebSocketServer} from "ws";
const config = JSON.parse(readFileSync("./config.json"));
let messageCounter = 0;
export class EventType {
static ConnectionMade = "ConnectionMade";
static FileChanged = "FileChanged";
static FileDeleted = "FileDeleted";
static MessageReceived = "MessageReceived";
static MessageSend = "MessageSend";
}
export function setupWebSocketServer(eventEmitter) {
const wss = new WebSocketServer({port: config.port});
wss.on("connection", function connection(ws) {
ws.isAlive = true;
ws.on("error", console.error);
ws.on("pong", function () {
this.isAlive = true;
});
function sendMessage(msg) {
ws.send(JSON.stringify(msg));
}
ws.on("message", (msg) => {
eventEmitter.emit(EventType.MessageReceived, msg);
});
eventEmitter.on(EventType.MessageSend, (msg) => {
sendMessage(msg);
});
eventEmitter.emit(EventType.ConnectionMade);
});
const interval = setInterval(function ping() {
if (!config.quiet) {
console.log("Cleaning up connection");
}
wss.clients.forEach(function each(ws) {
if (!config.quiet) {
console.log(`ws.isAlive: ${ws.isAlive}`);
}
if (ws.isAlive === false) {
return ws.terminate();
}
ws.isAlive = false;
ws.ping();
});
}, 3000);
wss.on("close", function close() {
clearInterval(interval);
});
return wss;
}
function addLeadingSlash(path) {
const slashes = path.match("/");
if (slashes) return `/${path}`;
else return path;
}
export function fileChangeEventToMsg({path}) {
return {
jsonrpc: "2.0",
method: "pushFile",
params: {
server: "home",
filename: addLeadingSlash(path),
content: readFileSync(join(config.buildFolder, path)).toString(),
},
id: messageCounter++,
};
}
export function fileRemovalEventToMsg({path}) {
return {
jsonrpc: "2.0",
method: "deleteFile",
params: {
server: "home",
filename: addLeadingSlash(path),
},
id: messageCounter++,
};
}
export function requestDefinitionFile() {
return {
jsonrpc: "2.0",
method: "getDefinitionFile",
id: messageCounter++,
};
}
export function requestFilenames() {
return {
jsonrpc: "2.0",
method: "getFileNames",
params: {
server: "home",
},
id: messageCounter++,
};
}