-
Notifications
You must be signed in to change notification settings - Fork 1
/
basic.js
140 lines (119 loc) · 3.37 KB
/
basic.js
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
const { EventEmitter } = require('events')
const ServerError = require('../errors')
const utils = require('../utils')
const nullParser = {
parse (payload) {
return payload
},
stringify (payload) {
return payload
}
}
class WSClient extends EventEmitter {
constructor (connection, options = {}) {
super()
this.connection = connection
this.socket = null
this.internalEvents = ['message', 'binary', 'drained', 'close', 'ping', 'pong']
this.parser = options.parser || nullParser
this.waitToSend = []
}
incomingPacket (payload, isBinary) {
if (isBinary) {
super.emit('binary', payload)
} else {
super.emit('message', this.parser.parse(payload))
}
}
onOpen (socket) {
this.socket = socket
super.emit('open')
}
onClose (code, message) {
super.emit('close', code, Buffer.from(message))
}
onPing () {
super.emit('ping')
}
onPong () {
super.emit('pong')
}
get remoteAddress () {
return this.socket
? utils.toFraindlyIP(Buffer.from(this.socket.getRemoteAddressAsText()).toString())
: this.connection.remoteAddress
}
onDrain () {
if (this.socket.getBufferedAmount() === 0) {
super.emit('drained')
if (this.waitToSend.length) {
const send = this.waitToSend
send.map(([args, resolve]) => this.doSend(...args).then(resolve))
this.waitToSend = []
}
}
}
doPublish (topic, data, isBinary, compress) {
if (!this.socket) throw new Error('WS_NOT_UPGRADED')
this.socket.publish(topic, data, isBinary, compress)
}
async doSend (data, isBinary, compress) {
if (!this.socket) throw new Error('WS_NOT_UPGRADED')
if (this.socket.getBufferedAmount() === 0) {
return this.socket.send(data, isBinary, compress)
} else {
await new Promise((resolve) => {
this.waitToSend.push([[data, isBinary, compress], resolve])
})
}
}
join (channel) {
if (!this.socket) throw new Error('WS_NOT_UPGRADED')
return this.socket.subscribe(channel)
}
quit (channel) {
if (!this.socket) throw new Error('WS_NOT_UPGRADED')
return this.socket.unsubscribe(channel)
}
send (data, compress = true) {
if (!this.socket) throw new Error('WS_NOT_UPGRADED')
return this.doSend(this.parser.stringify(data), false, compress)
}
sendBinary (data, compress = true) {
return this.doSend(data, true, compress)
}
sendToChannel (channel, data, compress = true) {
this.doPublish(channel, this.parser.stringify(data), false, compress)
}
sendBinaryToChannel (channel, data, compress = true) {
this.doPublish(channel, data, true, compress)
}
close () {
if (!this.socket) throw new Error('WS_NOT_UPGRADED')
return this.socket.close()
}
}
class WSProtocol {
constructor (options = {}) {
if (options.parser) {
if (typeof options.parser.parse !== 'function') {
throw new ServerError({
code: 'INVALID_OPTIONS',
message: 'Invalid WebSocket protocol options.'
})
}
if (typeof options.parser.stringify !== 'function') {
throw new ServerError({
code: 'INVALID_OPTIONS',
message: 'Invalid WebSocket protocol options.'
})
}
}
this.options = options
}
newClient (connection) {
return new WSClient(connection, this.options)
}
}
module.exports = WSProtocol
module.exports.WSClient = WSClient