mirror of
https://github.com/m1k1o/neko.git
synced 2025-08-06 10:20:26 +02:00
split component & page.
This commit is contained in:
parent
f796eb236b
commit
3cf85fed8e
16 changed files with 1576 additions and 2095 deletions
103
src/component/internal/websocket.ts
Normal file
103
src/component/internal/websocket.ts
Normal file
|
@ -0,0 +1,103 @@
|
|||
import EventEmitter from 'eventemitter3'
|
||||
import { Logger } from '../utils/logger'
|
||||
|
||||
export const timeout = 15000
|
||||
|
||||
export interface NekoWebSocketEvents {
|
||||
connecting: () => void
|
||||
connected: () => void
|
||||
disconnected: (error?: Error) => void
|
||||
message: (event: string, payload: any) => void
|
||||
}
|
||||
|
||||
export class NekoWebSocket extends EventEmitter<NekoWebSocketEvents> {
|
||||
private _ws?: WebSocket
|
||||
private _timeout?: NodeJS.Timeout
|
||||
private _log: Logger
|
||||
|
||||
constructor() {
|
||||
super()
|
||||
|
||||
this._log = new Logger('websocket')
|
||||
}
|
||||
|
||||
get connected() {
|
||||
return typeof this._ws !== 'undefined' && this._ws.readyState === WebSocket.OPEN
|
||||
}
|
||||
|
||||
public connect(url: string, id: string, secret: string) {
|
||||
if (this.connected) {
|
||||
throw new Error('attempting to create websocket while connection open')
|
||||
}
|
||||
|
||||
this.emit('connecting')
|
||||
|
||||
const ws_url = url.replace(/^http/, 'ws').replace(/\/$|\/ws$/, '')
|
||||
this._ws = new WebSocket(`${ws_url}/ws?id=${encodeURIComponent(id)}&secret=${encodeURIComponent(secret)}`)
|
||||
this._log.debug(`connecting to ${this._ws.url}`)
|
||||
|
||||
this._ws.onopen = this.onConnected.bind(this)
|
||||
this._ws.onclose = this.onDisconnected.bind(this, new Error('websocket closed'))
|
||||
this._ws.onerror = this.onDisconnected.bind(this, new Error('websocket error'))
|
||||
this._ws.onmessage = this.onMessage.bind(this)
|
||||
|
||||
this._timeout = setTimeout(this.onTimeout.bind(this), timeout)
|
||||
}
|
||||
|
||||
public disconnect() {
|
||||
if (this._timeout) {
|
||||
clearTimeout(this._timeout)
|
||||
}
|
||||
|
||||
if (this.connected) {
|
||||
try {
|
||||
this._ws!.close()
|
||||
} catch (err) {}
|
||||
|
||||
this._ws = undefined
|
||||
}
|
||||
}
|
||||
|
||||
public send(event: string, payload?: any) {
|
||||
if (!this.connected) {
|
||||
this._log.warn(`attempting to send message while disconnected`)
|
||||
return
|
||||
}
|
||||
|
||||
this._log.debug(`sending event '${event}' ${payload ? `with payload: ` : ''}`, payload)
|
||||
this._ws!.send(JSON.stringify({ event, ...payload }))
|
||||
}
|
||||
|
||||
private onMessage(e: MessageEvent) {
|
||||
const { event, ...payload } = JSON.parse(e.data)
|
||||
|
||||
this._log.debug(`received websocket event ${event} ${payload ? `with payload: ` : ''}`, payload)
|
||||
this.emit('message', event, payload)
|
||||
}
|
||||
|
||||
private onConnected() {
|
||||
if (this._timeout) {
|
||||
clearTimeout(this._timeout)
|
||||
}
|
||||
|
||||
if (!this.connected) {
|
||||
this._log.warn(`onConnected called while being disconnected`)
|
||||
return
|
||||
}
|
||||
|
||||
this._log.debug(`connected`)
|
||||
this.emit('connected')
|
||||
}
|
||||
|
||||
private onTimeout() {
|
||||
this._log.debug(`connection timeout`)
|
||||
this.onDisconnected(new Error('connection timeout'))
|
||||
}
|
||||
|
||||
private onDisconnected(reason?: Error) {
|
||||
this._log.debug(`disconnected:`, reason?.message)
|
||||
|
||||
this.disconnect()
|
||||
this.emit('disconnected', reason)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue