2023-05-24 10:20:15 +02:00
|
|
|
/* eslint-disable max-classes-per-file */
|
2022-12-27 03:27:07 +01:00
|
|
|
import { basicAuth, bearerAuth, encodeBase64Url, topicShortUrl, topicUrlWs } from "./utils";
|
2022-02-24 15:52:49 +01:00
|
|
|
|
2023-03-08 20:51:47 +01:00
|
|
|
const retryBackoffSeconds = [5, 10, 20, 30, 60, 120];
|
2022-02-24 15:52:49 +01:00
|
|
|
|
2023-05-24 10:20:15 +02:00
|
|
|
export class ConnectionState {
|
|
|
|
static Connected = "connected";
|
|
|
|
|
|
|
|
static Connecting = "connecting";
|
|
|
|
}
|
|
|
|
|
2022-03-11 21:17:12 +01:00
|
|
|
/**
|
|
|
|
* A connection contains a single WebSocket connection for one topic. It handles its connection
|
|
|
|
* status itself, including reconnect attempts and backoff.
|
|
|
|
*
|
|
|
|
* Incoming messages and state changes are forwarded via listeners.
|
|
|
|
*/
|
2022-02-24 02:30:12 +01:00
|
|
|
class Connection {
|
2022-03-04 17:08:32 +01:00
|
|
|
constructor(connectionId, subscriptionId, baseUrl, topic, user, since, onNotification, onStateChanged) {
|
2022-03-04 02:07:35 +01:00
|
|
|
this.connectionId = connectionId;
|
2022-02-24 02:30:12 +01:00
|
|
|
this.subscriptionId = subscriptionId;
|
2022-02-24 15:52:49 +01:00
|
|
|
this.baseUrl = baseUrl;
|
|
|
|
this.topic = topic;
|
2022-02-26 05:25:04 +01:00
|
|
|
this.user = user;
|
2022-02-24 15:52:49 +01:00
|
|
|
this.since = since;
|
2022-02-26 05:25:04 +01:00
|
|
|
this.shortUrl = topicShortUrl(baseUrl, topic);
|
2022-02-24 02:30:12 +01:00
|
|
|
this.onNotification = onNotification;
|
2022-03-04 17:08:32 +01:00
|
|
|
this.onStateChanged = onStateChanged;
|
2022-02-24 02:30:12 +01:00
|
|
|
this.ws = null;
|
2022-02-24 15:52:49 +01:00
|
|
|
this.retryCount = 0;
|
|
|
|
this.retryTimeout = null;
|
2022-02-24 02:30:12 +01:00
|
|
|
}
|
2022-02-26 05:25:04 +01:00
|
|
|
|
|
|
|
start() {
|
2022-03-04 02:07:35 +01:00
|
|
|
// Don't fetch old messages; we do that as a poll() when adding a subscription;
|
|
|
|
// we don't want to re-trigger the main view re-render potentially hundreds of times.
|
2022-02-26 05:25:04 +01:00
|
|
|
|
2022-02-24 15:52:49 +01:00
|
|
|
const wsUrl = this.wsUrl();
|
2022-03-04 02:07:35 +01:00
|
|
|
console.log(`[Connection, ${this.shortUrl}, ${this.connectionId}] Opening connection to ${wsUrl}`);
|
2022-02-24 02:30:12 +01:00
|
|
|
|
2022-02-24 15:52:49 +01:00
|
|
|
this.ws = new WebSocket(wsUrl);
|
|
|
|
this.ws.onopen = (event) => {
|
2022-03-04 02:07:35 +01:00
|
|
|
console.log(`[Connection, ${this.shortUrl}, ${this.connectionId}] Connection established`, event);
|
2022-02-24 15:52:49 +01:00
|
|
|
this.retryCount = 0;
|
|
|
|
this.onStateChanged(this.subscriptionId, ConnectionState.Connected);
|
2023-05-23 21:13:01 +02:00
|
|
|
};
|
2022-02-24 15:52:49 +01:00
|
|
|
this.ws.onmessage = (event) => {
|
|
|
|
console.log(`[Connection, ${this.shortUrl}, ${this.connectionId}] Message received from server: ${event.data}`);
|
|
|
|
try {
|
|
|
|
const data = JSON.parse(event.data);
|
|
|
|
if (data.event === "open") {
|
|
|
|
return;
|
2022-02-24 02:30:12 +01:00
|
|
|
}
|
2022-02-24 15:52:49 +01:00
|
|
|
const relevantAndValid = data.event === "message" && "id" in data && "time" in data && "message" in data;
|
|
|
|
if (!relevantAndValid) {
|
|
|
|
console.log(`[Connection, ${this.shortUrl}, ${this.connectionId}] Unexpected message. Ignoring.`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.since = data.id;
|
2022-02-24 02:30:12 +01:00
|
|
|
this.onNotification(this.subscriptionId, data);
|
|
|
|
} catch (e) {
|
2022-02-24 15:52:49 +01:00
|
|
|
console.log(`[Connection, ${this.shortUrl}, ${this.connectionId}] Error handling message: ${e}`);
|
2023-05-23 21:13:01 +02:00
|
|
|
}
|
|
|
|
};
|
2022-02-24 15:52:49 +01:00
|
|
|
this.ws.onclose = (event) => {
|
2022-02-24 02:30:12 +01:00
|
|
|
if (event.wasClean) {
|
2022-02-24 15:52:49 +01:00
|
|
|
console.log(
|
|
|
|
`[Connection, ${this.shortUrl}, ${this.connectionId}] Connection closed cleanly, code=${event.code} reason=${event.reason}`
|
|
|
|
);
|
|
|
|
this.ws = null;
|
2023-05-23 21:13:01 +02:00
|
|
|
} else {
|
2022-02-24 15:52:49 +01:00
|
|
|
const retrySeconds = retryBackoffSeconds[Math.min(this.retryCount, retryBackoffSeconds.length - 1)];
|
2023-05-24 10:20:15 +02:00
|
|
|
this.retryCount += 1;
|
2022-03-04 02:07:35 +01:00
|
|
|
console.log(`[Connection, ${this.shortUrl}, ${this.connectionId}] Connection died, retrying in ${retrySeconds} seconds`);
|
2022-02-24 15:52:49 +01:00
|
|
|
this.retryTimeout = setTimeout(() => this.start(), retrySeconds * 1000);
|
2022-03-04 17:08:32 +01:00
|
|
|
this.onStateChanged(this.subscriptionId, ConnectionState.Connecting);
|
2023-05-23 21:13:01 +02:00
|
|
|
}
|
|
|
|
};
|
2022-04-08 18:45:41 +02:00
|
|
|
this.ws.onerror = (event) => {
|
2022-03-04 02:07:35 +01:00
|
|
|
console.log(`[Connection, ${this.shortUrl}, ${this.connectionId}] Error occurred: ${event}`, event);
|
2023-05-23 21:13:01 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
close() {
|
2022-03-04 02:07:35 +01:00
|
|
|
console.log(`[Connection, ${this.shortUrl}, ${this.connectionId}] Closing connection`);
|
2022-02-24 15:52:49 +01:00
|
|
|
const socket = this.ws;
|
|
|
|
const { retryTimeout } = this;
|
|
|
|
if (socket !== null) {
|
|
|
|
socket.close();
|
2022-02-24 02:30:12 +01:00
|
|
|
}
|
2022-02-24 15:52:49 +01:00
|
|
|
if (retryTimeout !== null) {
|
|
|
|
clearTimeout(retryTimeout);
|
2023-05-23 21:13:01 +02:00
|
|
|
}
|
2022-02-24 15:52:49 +01:00
|
|
|
this.retryTimeout = null;
|
|
|
|
this.ws = null;
|
2023-05-23 21:13:01 +02:00
|
|
|
}
|
2022-02-26 05:25:04 +01:00
|
|
|
|
|
|
|
wsUrl() {
|
|
|
|
const params = [];
|
2022-02-28 01:29:17 +01:00
|
|
|
if (this.since) {
|
|
|
|
params.push(`since=${this.since}`);
|
2022-02-26 05:25:04 +01:00
|
|
|
}
|
2022-03-02 03:23:12 +01:00
|
|
|
if (this.user) {
|
2022-12-27 03:27:07 +01:00
|
|
|
params.push(`auth=${this.authParam()}`);
|
2023-05-23 21:13:01 +02:00
|
|
|
}
|
2022-02-26 05:25:04 +01:00
|
|
|
const wsUrl = topicUrlWs(this.baseUrl, this.topic);
|
|
|
|
return params.length === 0 ? wsUrl : `${wsUrl}?${params.join("&")}`;
|
2023-05-23 21:13:01 +02:00
|
|
|
}
|
2022-12-27 03:27:07 +01:00
|
|
|
|
|
|
|
authParam() {
|
|
|
|
if (this.user.password) {
|
|
|
|
return encodeBase64Url(basicAuth(this.user.username, this.user.password));
|
|
|
|
}
|
|
|
|
return encodeBase64Url(bearerAuth(this.user.token));
|
2023-05-23 21:13:01 +02:00
|
|
|
}
|
2022-02-24 02:30:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Connection;
|