1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-11 13:14:06 +01:00
server/client.js

47 lines
1012 B
JavaScript
Raw Normal View History

2021-02-06 17:08:08 +01:00
require("missing-native-js-functions");
const WebSocket = require("ws");
2021-02-06 17:08:08 +01:00
const Constants = require("./dist/util/Constants");
const ws = new WebSocket("ws://127.0.0.1:8080");
ws.on("open", () => {
2021-02-06 17:08:08 +01:00
// ws.send(JSON.stringify({ req_type: "new_auth" }));
// ws.send(JSON.stringify({ req_type: "check_auth", token: "" }));
// op: 0,
// d: {},
// s: 42,
// t: "GATEWAY_EVENT_NAME",
});
2021-02-06 17:08:08 +01:00
function send(data) {
ws.send(JSON.stringify(data));
}
ws.on("message", (buffer) => {
let data = JSON.parse(buffer.toString());
console.log(data);
2021-02-06 17:08:08 +01:00
switch (data.op) {
case 10:
setIntervalNow(() => {
send({ op: 1 });
}, data.d.heartbeat_interval);
send({
op: 2,
d: {
2021-03-22 21:52:13 +01:00
token:
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6IjgxMTY0MjkxNzQzMjA2NjA0OCIsImlhdCI6MTYxMzU4MTE1MX0.7Qj_z2lYIgJ0rc7NfGtpW5DKGqecQfv1mLpoBUQHKDc",
2021-02-06 17:08:08 +01:00
intents: 0n,
properties: {},
},
});
break;
}
});
ws.on("close", (code, reason) => {
console.log(code, reason, Constants.CLOSECODES[code]);
});