-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
143 lines (126 loc) · 3.48 KB
/
index.ts
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
142
143
import { ServerWebSocket, sleep, sleepSync } from "bun";
const serviceID = process.env.SERVICE_ID?.replace("s:", "");
if (!serviceID) throw new Error("No service ID provided");
let primary: "ess" | "nss" | "none" = "none";
let downstreams: ServerWebSocket<any>[] = [];
let upstreams: WebSocket[] = [];
let queuedLocalToRemoteMessages: any[] = [];
function connect(
name: typeof primary,
url: string,
queue: typeof queuedLocalToRemoteMessages
): Promise<boolean> {
return new Promise((_, reject) => {
const socket = new WebSocket(url);
socket.onopen = () => {
console.log(`Connected to ${url}`);
primary = name;
upstreams.push(socket);
downstreams.forEach((ws) =>
ws.send(
JSON.stringify({
connected: upstreams.length > 0,
service: "ess-demux",
type: "essDemuxConnectionStateChanged",
upstream: primary,
})
)
);
if (queue.length > 0) {
for (const message of queue) {
socket.send(message);
}
queuedLocalToRemoteMessages = [];
}
};
socket.onclose = () => {
upstreams = upstreams.filter((upstream) => upstream !== socket);
reject(new Error("socket closed"));
};
socket.onmessage = (message) => {
for (const downstream of downstreams) {
downstream.send(message.data);
}
};
socket.onerror = (error) => {
reject(new Error(error.toString()));
};
});
}
async function connectUpstream() {
try {
await connect(
"nss",
`wss://push.nanite-systems.net/streaming?environment=all&service-id=s:${serviceID}`,
Array.from(queuedLocalToRemoteMessages)
);
} catch (err) {
console.warn("Failed to connect to upstream NSS", err);
if (primary === "nss") disconnectDownstreams();
try {
const platforms = ["ps2", "ps2ps4eu", "ps2ps4us"];
await Promise.all(
platforms.map((platform) =>
connect(
"ess",
`wss://push.planetside2.com/streaming?environment=${platform}&service-id=s:${serviceID}`,
Array.from(queuedLocalToRemoteMessages)
)
)
);
} catch (err) {
if (primary === "ess" || primary === "nss") disconnectDownstreams();
primary = "none";
console.error("Failed to connect to upstream ESS or NSS", err);
}
}
}
function disconnectDownstreams() {
for (const downstream of downstreams) {
downstream.close();
}
}
function disconnectUpstreams() {
for (const upstream of upstreams) {
upstream.close();
}
}
function sendConnectionStateChanged(ws: ServerWebSocket<any>) {
ws.send(
JSON.stringify({
connected: upstreams.length > 0,
service: "ess-demux",
type: "essDemuxConnectionStateChanged",
upstream: primary,
})
);
}
Bun.serve({
port: process.env.PORT || 8007,
fetch(request, server) {
if (server.upgrade(request)) return;
return new Response(JSON.stringify({ primary }));
},
websocket: {
open(ws) {
downstreams.push(ws);
sendConnectionStateChanged(ws);
if (primary !== "nss") {
disconnectUpstreams();
connectUpstream();
}
},
close(ws) {
downstreams = downstreams.filter((downstream) => downstream !== ws);
},
message(_, message) {
if (upstreams.length === 0) {
queuedLocalToRemoteMessages.push(message);
return;
}
for (const upstream of upstreams) {
upstream.send(message);
}
},
},
});