-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathgetSocketServerImplementation.js
78 lines (70 loc) · 2.51 KB
/
getSocketServerImplementation.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
'use strict';
function getSocketServerImplementation(options) {
let ServerImplementation;
let serverImplFound = true;
switch (typeof options.serverMode) {
case 'string':
// could be 'sockjs', in the future 'ws', or a path that should be required
if (options.serverMode === 'sockjs') {
// eslint-disable-next-line global-require
ServerImplementation = require('../servers/SockJSServer');
} else {
try {
// eslint-disable-next-line global-require, import/no-dynamic-require
ServerImplementation = require(options.serverMode);
} catch (e) {
serverImplFound = false;
}
}
break;
case 'function':
// potentially do more checks here to confirm that the user implemented this properlly
// since errors could be difficult to understand
ServerImplementation = options.serverMode;
break;
default:
serverImplFound = false;
}
if (!serverImplFound) {
throw new Error(
"serverMode must be a string denoting a default implementation (e.g. 'sockjs'), a full path to " +
'a JS file which exports a class extending BaseServer (webpack-dev-server/lib/servers/BaseServer) ' +
'via require.resolve(...), or the class itself which extends BaseServer'
);
}
if (
!ServerImplementation.prototype.constructor ||
ServerImplementation.prototype.constructor.length < 1
) {
throw new Error(
'serverMode must have a constructor that takes a single server argument and calls super(server) ' +
"on the superclass BaseServer, found via require('webpack-dev-server/lib/servers/BaseServer')"
);
}
if (
!ServerImplementation.prototype.send ||
ServerImplementation.prototype.send.length < 2
) {
throw new Error(
'serverMode must have a send(connection, message) method that sends the message string to the provided client connection object'
);
}
if (
!ServerImplementation.prototype.close ||
ServerImplementation.prototype.close.length < 1
) {
throw new Error(
'serverMode must have a close(connection) method that closes the provided client connection object'
);
}
if (
!ServerImplementation.prototype.onConnection ||
ServerImplementation.prototype.onConnection.length < 1
) {
throw new Error(
'serverMode must have a onConnection(f) method that calls f(connection) whenever a new client connection is made'
);
}
return ServerImplementation;
}
module.exports = getSocketServerImplementation;