File size: 5,212 Bytes
1f21206 | 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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | import type { ClientMessage, ServerMessage } from '../types/chat'
import { getAuthToken, getBaseUrl } from './client'
type MessageHandler = (msg: ServerMessage) => void
type Connection = {
ws: WebSocket
handlers: Set<MessageHandler>
reconnectTimer: ReturnType<typeof setTimeout> | null
reconnectAttempt: number
pingInterval: ReturnType<typeof setInterval> | null
intentionalClose: boolean
pendingMessages: ClientMessage[]
}
class WebSocketManager {
private connections = new Map<string, Connection>()
isConnected(sessionId: string): boolean {
const conn = this.connections.get(sessionId)
return conn?.ws.readyState === WebSocket.OPEN
}
getConnectedSessionIds(): string[] {
return [...this.connections.keys()]
}
connect(sessionId: string) {
const existing = this.connections.get(sessionId)
if (
existing &&
!existing.intentionalClose &&
(
existing.ws.readyState === WebSocket.OPEN ||
existing.ws.readyState === WebSocket.CONNECTING ||
existing.reconnectTimer !== null
)
) {
return
}
const ws = new WebSocket(buildSessionWebSocketUrl(sessionId))
const conn: Connection = {
ws,
handlers: existing?.handlers ?? new Set(),
reconnectTimer: null,
reconnectAttempt: existing?.reconnectAttempt ?? 0,
pingInterval: null,
intentionalClose: false,
pendingMessages: existing?.pendingMessages ?? [],
}
this.connections.set(sessionId, conn)
ws.onopen = () => {
conn.reconnectAttempt = 0
this.startPingLoop(sessionId)
while (conn.pendingMessages.length > 0) {
const msg = conn.pendingMessages.shift()!
ws.send(JSON.stringify(msg))
}
}
ws.onmessage = (event) => {
try {
const msg = JSON.parse(event.data as string) as ServerMessage
for (const handler of conn.handlers) {
handler(msg)
}
} catch {
// Ignore malformed messages
}
}
ws.onclose = () => {
this.stopPingLoop(sessionId)
if (!conn.intentionalClose && this.connections.get(sessionId) === conn) {
this.scheduleReconnect(sessionId, conn)
}
}
ws.onerror = () => {
// onclose will fire after onerror
}
}
disconnect(sessionId: string) {
const conn = this.connections.get(sessionId)
if (!conn) return
conn.intentionalClose = true
this.stopPingLoop(sessionId)
if (conn.reconnectTimer) {
clearTimeout(conn.reconnectTimer)
conn.reconnectTimer = null
}
conn.pendingMessages = []
conn.ws.close()
this.connections.delete(sessionId)
}
disconnectAll() {
for (const sessionId of [...this.connections.keys()]) {
this.disconnect(sessionId)
}
}
send(sessionId: string, message: ClientMessage) {
let conn = this.connections.get(sessionId)
if (!conn) {
this.connect(sessionId)
conn = this.connections.get(sessionId)
if (!conn) return
}
if (conn.ws.readyState === WebSocket.OPEN) {
conn.ws.send(JSON.stringify(message))
return
}
conn.pendingMessages.push(message)
if (
conn.ws.readyState === WebSocket.CLOSED ||
conn.ws.readyState === WebSocket.CLOSING
) {
if (!conn.intentionalClose && !conn.reconnectTimer) {
this.scheduleReconnect(sessionId, conn)
}
}
}
onMessage(sessionId: string, handler: MessageHandler): () => void {
const conn = this.connections.get(sessionId)
if (!conn) return () => {}
conn.handlers.add(handler)
return () => { conn.handlers.delete(handler) }
}
clearHandlers(sessionId: string) {
const conn = this.connections.get(sessionId)
if (conn) conn.handlers.clear()
}
private startPingLoop(sessionId: string) {
this.stopPingLoop(sessionId)
const conn = this.connections.get(sessionId)
if (!conn) return
conn.pingInterval = setInterval(() => {
this.send(sessionId, { type: 'ping' })
}, 30_000)
}
private stopPingLoop(sessionId: string) {
const conn = this.connections.get(sessionId)
if (conn?.pingInterval) {
clearInterval(conn.pingInterval)
conn.pingInterval = null
}
}
private scheduleReconnect(sessionId: string, conn: Connection) {
if (conn.reconnectTimer) {
clearTimeout(conn.reconnectTimer)
}
const delay = Math.min(1000 * 2 ** conn.reconnectAttempt, 30_000)
conn.reconnectAttempt++
conn.reconnectTimer = setTimeout(() => {
if (this.connections.get(sessionId) === conn && !conn.intentionalClose) {
conn.reconnectTimer = null
this.connect(sessionId)
}
}, delay)
}
}
export function buildSessionWebSocketUrl(sessionId: string) {
const url = new URL(getBaseUrl())
url.protocol = url.protocol === 'https:' ? 'wss:' : 'ws:'
const basePath = url.pathname === '/' ? '' : url.pathname.replace(/\/$/, '')
url.pathname = `${basePath}/ws/${encodeURIComponent(sessionId)}`
const token = getAuthToken()
if (token) {
url.searchParams.set('token', token)
} else {
url.searchParams.delete('token')
}
return url.toString()
}
export const wsManager = new WebSocketManager()
|