mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
webrtc & websocket simple implementation.
This commit is contained in:
parent
3bff243dcb
commit
e99047963c
43
src/Neko.vue
43
src/Neko.vue
@ -1,18 +1,55 @@
|
||||
<template>
|
||||
<div>
|
||||
<h1>Hello world, Neko.</h1>
|
||||
<button @click="visible = !visible">Toggle</button>
|
||||
<div v-if="visible">Is this visible?</div>
|
||||
<button @click="connect()">Connect</button>
|
||||
<button @click="disconnect()">Disonnect</button>
|
||||
<button @click="send()">Send</button>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { Vue, Component, Ref } from 'vue-property-decorator'
|
||||
import { NekoWebSocket } from './internal/websocket'
|
||||
import { NekoWebRTC } from './internal/webrtc'
|
||||
|
||||
@Component({
|
||||
name: 'neko',
|
||||
})
|
||||
export default class extends Vue {
|
||||
public visible: boolean = false
|
||||
protected _websocket?: NekoWebSocket
|
||||
protected _webrtc?: NekoWebRTC
|
||||
|
||||
public connect() {
|
||||
try {
|
||||
this._websocket?.connect('ws://192.168.1.20:3000/', 'admin')
|
||||
} catch (e) {}
|
||||
}
|
||||
|
||||
public disconnect() {
|
||||
this._websocket?.disconnect()
|
||||
}
|
||||
|
||||
public send() {
|
||||
this._websocket?.send('test', 'abc')
|
||||
}
|
||||
|
||||
mounted() {
|
||||
this._websocket = new NekoWebSocket()
|
||||
this._webrtc = new NekoWebRTC()
|
||||
|
||||
this._websocket?.on('message', async (event, payload) => {
|
||||
if (event == 'signal/provide') {
|
||||
try {
|
||||
let sdp = await this._webrtc?.connect(payload.sdp, payload.lite, payload.ice)
|
||||
this._websocket?.send('signal/answer', { sdp, displayname: 'test' })
|
||||
} catch (e) {}
|
||||
} else {
|
||||
console.log(event, payload)
|
||||
}
|
||||
})
|
||||
this._websocket?.on('disconnected', () => {
|
||||
this._webrtc?.disconnect()
|
||||
})
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
@ -15,7 +15,7 @@ export interface NekoWebRTCEvents {
|
||||
track: (event: RTCTrackEvent) => void
|
||||
}
|
||||
|
||||
export abstract class NekoWebRTC extends EventEmitter<NekoWebRTCEvents> {
|
||||
export class NekoWebRTC extends EventEmitter<NekoWebRTCEvents> {
|
||||
private _peer?: RTCPeerConnection
|
||||
private _channel?: RTCDataChannel
|
||||
private _state: RTCIceConnectionState = 'disconnected'
|
||||
@ -87,7 +87,7 @@ export abstract class NekoWebRTC extends EventEmitter<NekoWebRTCEvents> {
|
||||
this._peer.addTransceiver('video', { direction: 'recvonly' })
|
||||
|
||||
this._channel = this._peer.createDataChannel('data')
|
||||
this._channel.onerror = this.onError.bind(this)
|
||||
this._channel.onerror = this.onDisconnected.bind(this, new Error('peer data channel error'))
|
||||
this._channel.onmessage = this.onData.bind(this)
|
||||
this._channel.onclose = this.onDisconnected.bind(this, new Error('peer data channel closed'))
|
||||
|
||||
@ -184,10 +184,6 @@ export abstract class NekoWebRTC extends EventEmitter<NekoWebRTCEvents> {
|
||||
this.emit('track', event)
|
||||
}
|
||||
|
||||
private onError(event: Event) {
|
||||
this._log.error((event as ErrorEvent).error)
|
||||
}
|
||||
|
||||
private onConnected() {
|
||||
if (!this.connected) {
|
||||
this._log.warn(`onConnected called while being disconnected`)
|
||||
@ -201,7 +197,7 @@ export abstract class NekoWebRTC extends EventEmitter<NekoWebRTCEvents> {
|
||||
private onDisconnected(reason?: Error) {
|
||||
this.disconnect()
|
||||
|
||||
this._log.debug(`disconnected:`, reason)
|
||||
this._log.debug(`disconnected:`, reason?.message)
|
||||
this.emit('disconnected', reason)
|
||||
}
|
||||
}
|
||||
|
@ -7,6 +7,7 @@ export interface NekoWebSocketEvents {
|
||||
connecting: () => void
|
||||
connected: () => void
|
||||
disconnected: (error?: Error) => void
|
||||
message: (event: string, payload: any) => void
|
||||
}
|
||||
|
||||
export class NekoWebSocket extends EventEmitter<NekoWebSocketEvents> {
|
||||
@ -36,7 +37,7 @@ export class NekoWebSocket extends EventEmitter<NekoWebSocketEvents> {
|
||||
|
||||
this._ws.onopen = this.onConnected.bind(this)
|
||||
this._ws.onclose = this.onDisconnected.bind(this, new Error('websocket closed'))
|
||||
this._ws.onerror = this.onError.bind(this)
|
||||
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)
|
||||
@ -68,20 +69,9 @@ export class NekoWebSocket extends EventEmitter<NekoWebSocketEvents> {
|
||||
|
||||
private onMessage(e: MessageEvent) {
|
||||
const { event, ...payload } = JSON.parse(e.data)
|
||||
|
||||
this._log.debug(`received websocket event ${event} ${payload ? `with payload: ` : ''}`, payload)
|
||||
|
||||
// @ts-ignore
|
||||
if (typeof this[event] === 'function') {
|
||||
// @ts-ignore
|
||||
// TODO: REFACTOR
|
||||
this[event](payload)
|
||||
} else {
|
||||
this._log.warn(`unhandled websocket event '${event}':`, payload)
|
||||
}
|
||||
}
|
||||
|
||||
private onError(event: Event) {
|
||||
this._log.error((event as ErrorEvent).error)
|
||||
this.emit('message', event, payload)
|
||||
}
|
||||
|
||||
private onConnected() {
|
||||
@ -104,7 +94,7 @@ export class NekoWebSocket extends EventEmitter<NekoWebSocketEvents> {
|
||||
}
|
||||
|
||||
private onDisconnected(reason?: Error) {
|
||||
this._log.debug(`disconnected:`, reason)
|
||||
this._log.debug(`disconnected:`, reason?.message)
|
||||
|
||||
this.disconnect()
|
||||
this.emit('disconnected', reason)
|
||||
|
Loading…
Reference in New Issue
Block a user