-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathws-internal.js
171 lines (142 loc) · 4.61 KB
/
ws-internal.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
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
'use strict';
const { EventEmitter } = require('events');
const mdsf = require('mdsf');
const websocket = require('websocket');
const WebSocketServer = websocket.server;
const WebSocketClient = websocket.client;
const constants = require('./internal-constants');
const common = require('./common');
const transport = require('./transport-common');
// WebSocket transport for JSTP.
// connection - WebSocket connection
//
class Transport extends EventEmitter {
constructor(connection) {
super();
this.connection = connection;
this.connection.on('error', () => {
this.connection.drop();
});
this.connection.on('message', message => {
this._onMessage(message);
});
common.forwardMultipleEvents(this.connection, this, ['close', 'error']);
}
// returns underlying WebSocket connection.
//
getRawTransport() {
return this.connection;
}
// Send data over the connection.
// data - Buffer or string
//
send(data) {
if (Buffer.isBuffer(data)) {
data = data.toString();
}
this.connection.sendUTF(data);
}
// End the connection optionally sending the last chunk of data.
// data - Buffer or string (optional)
//
end(data) {
if (data) this.send(data);
this.connection.close();
}
// WebSocket message handler.
// message - WebSocket message
//
_onMessage(message) {
const data =
message.type === 'utf8'
? message.utf8Data
: message.binaryData.toString();
let parsed;
try {
parsed = mdsf.parse(data);
} catch (error) {
this.emit('error', error);
return;
}
this.emit('message', parsed);
}
}
// Default originCheckStrategy value for WebSocket Server constructor.
//
const allowAllOriginCheckStrategy = function(/* origin */) {
return true;
};
const initServer = function(options, httpServer) {
options = Object.assign({}, options, {
httpServer,
autoAcceptConnections: false,
maxReceivedFrameSize: constants.MAX_MESSAGE_SIZE,
maxReceivedMessageSize: constants.MAX_MESSAGE_SIZE,
});
httpServer.isOriginAllowed =
options.originCheckStrategy || allowAllOriginCheckStrategy;
httpServer.on('request', (request, response) => {
response.writeHead(400);
response.end();
});
httpServer.wsServer = new WebSocketServer(options);
httpServer.wsServer.on('request', request => {
if (
!httpServer.isOriginAllowed(request.origin) ||
!request.requestedProtocols.includes(constants.WEBSOCKET_PROTOCOL_NAME)
) {
request.reject();
return;
}
const connection = request.accept(
constants.WEBSOCKET_PROTOCOL_NAME,
request.origin
);
httpServer._onRawConnection(connection);
});
};
// Create and connect WebSocketClient to get WebSocketConnection.
// webSocketConfig - web socket client configuration, passed directly
// to WebSocketClient constructor
// options - will be destructured and passed directly to
// WebSocketClient.connect. The last argument of options
// is optional callback that will be called when connection
// is established.
//
const connectionFactory = (webSocketConfig, ...options) => {
const callback = common.extractCallback(options);
const wsClient = new WebSocketClient(webSocketConfig);
options[1] = constants.WEBSOCKET_PROTOCOL_NAME;
wsClient.once('connect', connection => {
callback(null, connection);
});
wsClient.once('connectFailed', callback);
wsClient.connect(...options);
};
const connect = transport.newConnectFn(connectionFactory, Transport, 'ws');
const connectAndInspect = transport.newConnectAndInspectFn(
connectionFactory,
Transport,
'ws'
);
const reconnect = transport.newReconnectFn(connectionFactory, Transport);
module.exports = {
Transport,
initServer,
allowAllOriginCheckStrategy,
// see transportCommon.newConnectFn
// webSocketConfig - web socket client configuration
// (see connectionFactory)
connect: (app, client, webSocketConfig, ...options) =>
connect(app, client, webSocketConfig, ...options),
// see transportCommon.newConnectAndInspectFn
// webSocketConfig - web socket client configuration
// (see connectionFactory)
connectAndInspect: (app, client, interfaces, webSocketConfig, ...options) =>
connectAndInspect(app, client, interfaces, webSocketConfig, ...options),
// see transportCommon.newReconnectFn
// webSocketConfig - web socket client configuration
// (see connectionFactory)
reconnect: (connection, webSocketConfig, ...options) =>
reconnect(connection, webSocketConfig, ...options),
};