llonebot-dist 6.6.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (134) hide show
  1. dist/default_config.json +68 -0
  2. dist/llonebot.js +48348 -0
  3. dist/llonebot.js.map +1 -0
  4. dist/node_modules/@borewit/text-codec/LICENSE.txt +9 -0
  5. dist/node_modules/@borewit/text-codec/README.md +76 -0
  6. dist/node_modules/@borewit/text-codec/lib/index.d.ts +8 -0
  7. dist/node_modules/@borewit/text-codec/lib/index.js +161 -0
  8. dist/node_modules/@borewit/text-codec/package.json +68 -0
  9. dist/node_modules/@minatojs/sql.js/LICENSE +44 -0
  10. dist/node_modules/@minatojs/sql.js/README.md +357 -0
  11. dist/node_modules/@minatojs/sql.js/dist/sql-wasm.d.ts +316 -0
  12. dist/node_modules/@minatojs/sql.js/dist/sql-wasm.js +225 -0
  13. dist/node_modules/@minatojs/sql.js/dist/sql-wasm.wasm +0 -0
  14. dist/node_modules/@minatojs/sql.js/package.json +58 -0
  15. dist/node_modules/@tokenizer/inflate/LICENSE +15 -0
  16. dist/node_modules/@tokenizer/inflate/README.md +114 -0
  17. dist/node_modules/@tokenizer/inflate/lib/GzipHandler.d.ts +6 -0
  18. dist/node_modules/@tokenizer/inflate/lib/GzipHandler.js +19 -0
  19. dist/node_modules/@tokenizer/inflate/lib/ZipHandler.d.ts +26 -0
  20. dist/node_modules/@tokenizer/inflate/lib/ZipHandler.js +233 -0
  21. dist/node_modules/@tokenizer/inflate/lib/ZipToken.d.ts +94 -0
  22. dist/node_modules/@tokenizer/inflate/lib/ZipToken.js +117 -0
  23. dist/node_modules/@tokenizer/inflate/lib/index.d.ts +3 -0
  24. dist/node_modules/@tokenizer/inflate/lib/index.js +2 -0
  25. dist/node_modules/@tokenizer/inflate/package.json +76 -0
  26. dist/node_modules/@tokenizer/token/README.md +19 -0
  27. dist/node_modules/@tokenizer/token/index.d.ts +30 -0
  28. dist/node_modules/@tokenizer/token/package.json +33 -0
  29. dist/node_modules/debug/LICENSE +20 -0
  30. dist/node_modules/debug/README.md +481 -0
  31. dist/node_modules/debug/package.json +64 -0
  32. dist/node_modules/debug/src/browser.js +272 -0
  33. dist/node_modules/debug/src/common.js +292 -0
  34. dist/node_modules/debug/src/index.js +10 -0
  35. dist/node_modules/debug/src/node.js +263 -0
  36. dist/node_modules/file-type/core.d.ts +253 -0
  37. dist/node_modules/file-type/core.js +1899 -0
  38. dist/node_modules/file-type/index.d.ts +98 -0
  39. dist/node_modules/file-type/index.js +86 -0
  40. dist/node_modules/file-type/license +9 -0
  41. dist/node_modules/file-type/package.json +288 -0
  42. dist/node_modules/file-type/readme.md +674 -0
  43. dist/node_modules/file-type/supported.js +356 -0
  44. dist/node_modules/file-type/util.js +60 -0
  45. dist/node_modules/ieee754/LICENSE +11 -0
  46. dist/node_modules/ieee754/README.md +51 -0
  47. dist/node_modules/ieee754/index.d.ts +10 -0
  48. dist/node_modules/ieee754/index.js +85 -0
  49. dist/node_modules/ieee754/package.json +52 -0
  50. dist/node_modules/ms/index.js +162 -0
  51. dist/node_modules/ms/license.md +21 -0
  52. dist/node_modules/ms/package.json +38 -0
  53. dist/node_modules/ms/readme.md +59 -0
  54. dist/node_modules/silk-wasm/LICENSE +21 -0
  55. dist/node_modules/silk-wasm/README.md +85 -0
  56. dist/node_modules/silk-wasm/lib/index.cjs +16 -0
  57. dist/node_modules/silk-wasm/lib/index.d.ts +70 -0
  58. dist/node_modules/silk-wasm/lib/index.mjs +16 -0
  59. dist/node_modules/silk-wasm/lib/silk.wasm +0 -0
  60. dist/node_modules/silk-wasm/lib/utils.d.ts +4 -0
  61. dist/node_modules/silk-wasm/package.json +39 -0
  62. dist/node_modules/strtok3/LICENSE.txt +21 -0
  63. dist/node_modules/strtok3/README.md +399 -0
  64. dist/node_modules/strtok3/lib/AbstractTokenizer.d.ts +76 -0
  65. dist/node_modules/strtok3/lib/AbstractTokenizer.js +108 -0
  66. dist/node_modules/strtok3/lib/BlobTokenizer.d.ts +29 -0
  67. dist/node_modules/strtok3/lib/BlobTokenizer.js +53 -0
  68. dist/node_modules/strtok3/lib/BufferTokenizer.d.ts +29 -0
  69. dist/node_modules/strtok3/lib/BufferTokenizer.js +52 -0
  70. dist/node_modules/strtok3/lib/FileTokenizer.d.ts +37 -0
  71. dist/node_modules/strtok3/lib/FileTokenizer.js +61 -0
  72. dist/node_modules/strtok3/lib/ReadStreamTokenizer.d.ts +31 -0
  73. dist/node_modules/strtok3/lib/ReadStreamTokenizer.js +102 -0
  74. dist/node_modules/strtok3/lib/core.d.ts +40 -0
  75. dist/node_modules/strtok3/lib/core.js +62 -0
  76. dist/node_modules/strtok3/lib/index.d.ts +16 -0
  77. dist/node_modules/strtok3/lib/index.js +22 -0
  78. dist/node_modules/strtok3/lib/stream/AbstractStreamReader.d.ts +54 -0
  79. dist/node_modules/strtok3/lib/stream/AbstractStreamReader.js +71 -0
  80. dist/node_modules/strtok3/lib/stream/Deferred.d.ts +6 -0
  81. dist/node_modules/strtok3/lib/stream/Deferred.js +10 -0
  82. dist/node_modules/strtok3/lib/stream/Errors.d.ts +10 -0
  83. dist/node_modules/strtok3/lib/stream/Errors.js +16 -0
  84. dist/node_modules/strtok3/lib/stream/StreamReader.d.ts +29 -0
  85. dist/node_modules/strtok3/lib/stream/StreamReader.js +83 -0
  86. dist/node_modules/strtok3/lib/stream/WebStreamByobReader.d.ts +14 -0
  87. dist/node_modules/strtok3/lib/stream/WebStreamByobReader.js +27 -0
  88. dist/node_modules/strtok3/lib/stream/WebStreamDefaultReader.d.ts +19 -0
  89. dist/node_modules/strtok3/lib/stream/WebStreamDefaultReader.js +62 -0
  90. dist/node_modules/strtok3/lib/stream/WebStreamReader.d.ts +14 -0
  91. dist/node_modules/strtok3/lib/stream/WebStreamReader.js +13 -0
  92. dist/node_modules/strtok3/lib/stream/WebStreamReaderFactory.d.ts +5 -0
  93. dist/node_modules/strtok3/lib/stream/WebStreamReaderFactory.js +19 -0
  94. dist/node_modules/strtok3/lib/stream/index.d.ts +6 -0
  95. dist/node_modules/strtok3/lib/stream/index.js +5 -0
  96. dist/node_modules/strtok3/lib/types.d.ts +139 -0
  97. dist/node_modules/strtok3/lib/types.js +1 -0
  98. dist/node_modules/strtok3/package.json +94 -0
  99. dist/node_modules/token-types/LICENSE.txt +9 -0
  100. dist/node_modules/token-types/README.md +120 -0
  101. dist/node_modules/token-types/lib/index.d.ts +135 -0
  102. dist/node_modules/token-types/lib/index.js +401 -0
  103. dist/node_modules/token-types/package.json +81 -0
  104. dist/node_modules/uint8array-extras/index.d.ts +312 -0
  105. dist/node_modules/uint8array-extras/index.js +321 -0
  106. dist/node_modules/uint8array-extras/license +9 -0
  107. dist/node_modules/uint8array-extras/package.json +54 -0
  108. dist/node_modules/uint8array-extras/readme.md +301 -0
  109. dist/node_modules/ws/LICENSE +20 -0
  110. dist/node_modules/ws/README.md +548 -0
  111. dist/node_modules/ws/browser.js +8 -0
  112. dist/node_modules/ws/index.js +13 -0
  113. dist/node_modules/ws/lib/buffer-util.js +131 -0
  114. dist/node_modules/ws/lib/constants.js +18 -0
  115. dist/node_modules/ws/lib/event-target.js +292 -0
  116. dist/node_modules/ws/lib/extension.js +203 -0
  117. dist/node_modules/ws/lib/limiter.js +55 -0
  118. dist/node_modules/ws/lib/permessage-deflate.js +528 -0
  119. dist/node_modules/ws/lib/receiver.js +706 -0
  120. dist/node_modules/ws/lib/sender.js +602 -0
  121. dist/node_modules/ws/lib/stream.js +161 -0
  122. dist/node_modules/ws/lib/subprotocol.js +62 -0
  123. dist/node_modules/ws/lib/validation.js +152 -0
  124. dist/node_modules/ws/lib/websocket-server.js +550 -0
  125. dist/node_modules/ws/lib/websocket.js +1388 -0
  126. dist/node_modules/ws/package.json +69 -0
  127. dist/node_modules/ws/wrapper.mjs +8 -0
  128. dist/package.json +1 -0
  129. dist/webui/assets/index-B9vGhdCO.js +256 -0
  130. dist/webui/assets/index-DaqFU7JR.css +1 -0
  131. dist/webui/index.html +13 -0
  132. dist/webui/logo.jpg +0 -0
  133. dist//344/275/277/347/224/250/350/257/264/346/230/216.txt +11 -0
  134. dist//346/233/264/346/226/260/346/227/245/345/277/227.txt +399 -0
@@ -0,0 +1,18 @@
1
+ 'use strict';
2
+
3
+ const BINARY_TYPES = ['nodebuffer', 'arraybuffer', 'fragments'];
4
+ const hasBlob = typeof Blob !== 'undefined';
5
+
6
+ if (hasBlob) BINARY_TYPES.push('blob');
7
+
8
+ module.exports = {
9
+ BINARY_TYPES,
10
+ EMPTY_BUFFER: Buffer.alloc(0),
11
+ GUID: '258EAFA5-E914-47DA-95CA-C5AB0DC85B11',
12
+ hasBlob,
13
+ kForOnEventAttribute: Symbol('kIsForOnEventAttribute'),
14
+ kListener: Symbol('kListener'),
15
+ kStatusCode: Symbol('status-code'),
16
+ kWebSocket: Symbol('websocket'),
17
+ NOOP: () => {}
18
+ };
@@ -0,0 +1,292 @@
1
+ 'use strict';
2
+
3
+ const { kForOnEventAttribute, kListener } = require('./constants');
4
+
5
+ const kCode = Symbol('kCode');
6
+ const kData = Symbol('kData');
7
+ const kError = Symbol('kError');
8
+ const kMessage = Symbol('kMessage');
9
+ const kReason = Symbol('kReason');
10
+ const kTarget = Symbol('kTarget');
11
+ const kType = Symbol('kType');
12
+ const kWasClean = Symbol('kWasClean');
13
+
14
+ /**
15
+ * Class representing an event.
16
+ */
17
+ class Event {
18
+ /**
19
+ * Create a new `Event`.
20
+ *
21
+ * @param {String} type The name of the event
22
+ * @throws {TypeError} If the `type` argument is not specified
23
+ */
24
+ constructor(type) {
25
+ this[kTarget] = null;
26
+ this[kType] = type;
27
+ }
28
+
29
+ /**
30
+ * @type {*}
31
+ */
32
+ get target() {
33
+ return this[kTarget];
34
+ }
35
+
36
+ /**
37
+ * @type {String}
38
+ */
39
+ get type() {
40
+ return this[kType];
41
+ }
42
+ }
43
+
44
+ Object.defineProperty(Event.prototype, 'target', { enumerable: true });
45
+ Object.defineProperty(Event.prototype, 'type', { enumerable: true });
46
+
47
+ /**
48
+ * Class representing a close event.
49
+ *
50
+ * @extends Event
51
+ */
52
+ class CloseEvent extends Event {
53
+ /**
54
+ * Create a new `CloseEvent`.
55
+ *
56
+ * @param {String} type The name of the event
57
+ * @param {Object} [options] A dictionary object that allows for setting
58
+ * attributes via object members of the same name
59
+ * @param {Number} [options.code=0] The status code explaining why the
60
+ * connection was closed
61
+ * @param {String} [options.reason=''] A human-readable string explaining why
62
+ * the connection was closed
63
+ * @param {Boolean} [options.wasClean=false] Indicates whether or not the
64
+ * connection was cleanly closed
65
+ */
66
+ constructor(type, options = {}) {
67
+ super(type);
68
+
69
+ this[kCode] = options.code === undefined ? 0 : options.code;
70
+ this[kReason] = options.reason === undefined ? '' : options.reason;
71
+ this[kWasClean] = options.wasClean === undefined ? false : options.wasClean;
72
+ }
73
+
74
+ /**
75
+ * @type {Number}
76
+ */
77
+ get code() {
78
+ return this[kCode];
79
+ }
80
+
81
+ /**
82
+ * @type {String}
83
+ */
84
+ get reason() {
85
+ return this[kReason];
86
+ }
87
+
88
+ /**
89
+ * @type {Boolean}
90
+ */
91
+ get wasClean() {
92
+ return this[kWasClean];
93
+ }
94
+ }
95
+
96
+ Object.defineProperty(CloseEvent.prototype, 'code', { enumerable: true });
97
+ Object.defineProperty(CloseEvent.prototype, 'reason', { enumerable: true });
98
+ Object.defineProperty(CloseEvent.prototype, 'wasClean', { enumerable: true });
99
+
100
+ /**
101
+ * Class representing an error event.
102
+ *
103
+ * @extends Event
104
+ */
105
+ class ErrorEvent extends Event {
106
+ /**
107
+ * Create a new `ErrorEvent`.
108
+ *
109
+ * @param {String} type The name of the event
110
+ * @param {Object} [options] A dictionary object that allows for setting
111
+ * attributes via object members of the same name
112
+ * @param {*} [options.error=null] The error that generated this event
113
+ * @param {String} [options.message=''] The error message
114
+ */
115
+ constructor(type, options = {}) {
116
+ super(type);
117
+
118
+ this[kError] = options.error === undefined ? null : options.error;
119
+ this[kMessage] = options.message === undefined ? '' : options.message;
120
+ }
121
+
122
+ /**
123
+ * @type {*}
124
+ */
125
+ get error() {
126
+ return this[kError];
127
+ }
128
+
129
+ /**
130
+ * @type {String}
131
+ */
132
+ get message() {
133
+ return this[kMessage];
134
+ }
135
+ }
136
+
137
+ Object.defineProperty(ErrorEvent.prototype, 'error', { enumerable: true });
138
+ Object.defineProperty(ErrorEvent.prototype, 'message', { enumerable: true });
139
+
140
+ /**
141
+ * Class representing a message event.
142
+ *
143
+ * @extends Event
144
+ */
145
+ class MessageEvent extends Event {
146
+ /**
147
+ * Create a new `MessageEvent`.
148
+ *
149
+ * @param {String} type The name of the event
150
+ * @param {Object} [options] A dictionary object that allows for setting
151
+ * attributes via object members of the same name
152
+ * @param {*} [options.data=null] The message content
153
+ */
154
+ constructor(type, options = {}) {
155
+ super(type);
156
+
157
+ this[kData] = options.data === undefined ? null : options.data;
158
+ }
159
+
160
+ /**
161
+ * @type {*}
162
+ */
163
+ get data() {
164
+ return this[kData];
165
+ }
166
+ }
167
+
168
+ Object.defineProperty(MessageEvent.prototype, 'data', { enumerable: true });
169
+
170
+ /**
171
+ * This provides methods for emulating the `EventTarget` interface. It's not
172
+ * meant to be used directly.
173
+ *
174
+ * @mixin
175
+ */
176
+ const EventTarget = {
177
+ /**
178
+ * Register an event listener.
179
+ *
180
+ * @param {String} type A string representing the event type to listen for
181
+ * @param {(Function|Object)} handler The listener to add
182
+ * @param {Object} [options] An options object specifies characteristics about
183
+ * the event listener
184
+ * @param {Boolean} [options.once=false] A `Boolean` indicating that the
185
+ * listener should be invoked at most once after being added. If `true`,
186
+ * the listener would be automatically removed when invoked.
187
+ * @public
188
+ */
189
+ addEventListener(type, handler, options = {}) {
190
+ for (const listener of this.listeners(type)) {
191
+ if (
192
+ !options[kForOnEventAttribute] &&
193
+ listener[kListener] === handler &&
194
+ !listener[kForOnEventAttribute]
195
+ ) {
196
+ return;
197
+ }
198
+ }
199
+
200
+ let wrapper;
201
+
202
+ if (type === 'message') {
203
+ wrapper = function onMessage(data, isBinary) {
204
+ const event = new MessageEvent('message', {
205
+ data: isBinary ? data : data.toString()
206
+ });
207
+
208
+ event[kTarget] = this;
209
+ callListener(handler, this, event);
210
+ };
211
+ } else if (type === 'close') {
212
+ wrapper = function onClose(code, message) {
213
+ const event = new CloseEvent('close', {
214
+ code,
215
+ reason: message.toString(),
216
+ wasClean: this._closeFrameReceived && this._closeFrameSent
217
+ });
218
+
219
+ event[kTarget] = this;
220
+ callListener(handler, this, event);
221
+ };
222
+ } else if (type === 'error') {
223
+ wrapper = function onError(error) {
224
+ const event = new ErrorEvent('error', {
225
+ error,
226
+ message: error.message
227
+ });
228
+
229
+ event[kTarget] = this;
230
+ callListener(handler, this, event);
231
+ };
232
+ } else if (type === 'open') {
233
+ wrapper = function onOpen() {
234
+ const event = new Event('open');
235
+
236
+ event[kTarget] = this;
237
+ callListener(handler, this, event);
238
+ };
239
+ } else {
240
+ return;
241
+ }
242
+
243
+ wrapper[kForOnEventAttribute] = !!options[kForOnEventAttribute];
244
+ wrapper[kListener] = handler;
245
+
246
+ if (options.once) {
247
+ this.once(type, wrapper);
248
+ } else {
249
+ this.on(type, wrapper);
250
+ }
251
+ },
252
+
253
+ /**
254
+ * Remove an event listener.
255
+ *
256
+ * @param {String} type A string representing the event type to remove
257
+ * @param {(Function|Object)} handler The listener to remove
258
+ * @public
259
+ */
260
+ removeEventListener(type, handler) {
261
+ for (const listener of this.listeners(type)) {
262
+ if (listener[kListener] === handler && !listener[kForOnEventAttribute]) {
263
+ this.removeListener(type, listener);
264
+ break;
265
+ }
266
+ }
267
+ }
268
+ };
269
+
270
+ module.exports = {
271
+ CloseEvent,
272
+ ErrorEvent,
273
+ Event,
274
+ EventTarget,
275
+ MessageEvent
276
+ };
277
+
278
+ /**
279
+ * Call an event listener
280
+ *
281
+ * @param {(Function|Object)} listener The listener to call
282
+ * @param {*} thisArg The value to use as `this`` when calling the listener
283
+ * @param {Event} event The event to pass to the listener
284
+ * @private
285
+ */
286
+ function callListener(listener, thisArg, event) {
287
+ if (typeof listener === 'object' && listener.handleEvent) {
288
+ listener.handleEvent.call(listener, event);
289
+ } else {
290
+ listener.call(thisArg, event);
291
+ }
292
+ }
@@ -0,0 +1,203 @@
1
+ 'use strict';
2
+
3
+ const { tokenChars } = require('./validation');
4
+
5
+ /**
6
+ * Adds an offer to the map of extension offers or a parameter to the map of
7
+ * parameters.
8
+ *
9
+ * @param {Object} dest The map of extension offers or parameters
10
+ * @param {String} name The extension or parameter name
11
+ * @param {(Object|Boolean|String)} elem The extension parameters or the
12
+ * parameter value
13
+ * @private
14
+ */
15
+ function push(dest, name, elem) {
16
+ if (dest[name] === undefined) dest[name] = [elem];
17
+ else dest[name].push(elem);
18
+ }
19
+
20
+ /**
21
+ * Parses the `Sec-WebSocket-Extensions` header into an object.
22
+ *
23
+ * @param {String} header The field value of the header
24
+ * @return {Object} The parsed object
25
+ * @public
26
+ */
27
+ function parse(header) {
28
+ const offers = Object.create(null);
29
+ let params = Object.create(null);
30
+ let mustUnescape = false;
31
+ let isEscaping = false;
32
+ let inQuotes = false;
33
+ let extensionName;
34
+ let paramName;
35
+ let start = -1;
36
+ let code = -1;
37
+ let end = -1;
38
+ let i = 0;
39
+
40
+ for (; i < header.length; i++) {
41
+ code = header.charCodeAt(i);
42
+
43
+ if (extensionName === undefined) {
44
+ if (end === -1 && tokenChars[code] === 1) {
45
+ if (start === -1) start = i;
46
+ } else if (
47
+ i !== 0 &&
48
+ (code === 0x20 /* ' ' */ || code === 0x09) /* '\t' */
49
+ ) {
50
+ if (end === -1 && start !== -1) end = i;
51
+ } else if (code === 0x3b /* ';' */ || code === 0x2c /* ',' */) {
52
+ if (start === -1) {
53
+ throw new SyntaxError(`Unexpected character at index ${i}`);
54
+ }
55
+
56
+ if (end === -1) end = i;
57
+ const name = header.slice(start, end);
58
+ if (code === 0x2c) {
59
+ push(offers, name, params);
60
+ params = Object.create(null);
61
+ } else {
62
+ extensionName = name;
63
+ }
64
+
65
+ start = end = -1;
66
+ } else {
67
+ throw new SyntaxError(`Unexpected character at index ${i}`);
68
+ }
69
+ } else if (paramName === undefined) {
70
+ if (end === -1 && tokenChars[code] === 1) {
71
+ if (start === -1) start = i;
72
+ } else if (code === 0x20 || code === 0x09) {
73
+ if (end === -1 && start !== -1) end = i;
74
+ } else if (code === 0x3b || code === 0x2c) {
75
+ if (start === -1) {
76
+ throw new SyntaxError(`Unexpected character at index ${i}`);
77
+ }
78
+
79
+ if (end === -1) end = i;
80
+ push(params, header.slice(start, end), true);
81
+ if (code === 0x2c) {
82
+ push(offers, extensionName, params);
83
+ params = Object.create(null);
84
+ extensionName = undefined;
85
+ }
86
+
87
+ start = end = -1;
88
+ } else if (code === 0x3d /* '=' */ && start !== -1 && end === -1) {
89
+ paramName = header.slice(start, i);
90
+ start = end = -1;
91
+ } else {
92
+ throw new SyntaxError(`Unexpected character at index ${i}`);
93
+ }
94
+ } else {
95
+ //
96
+ // The value of a quoted-string after unescaping must conform to the
97
+ // token ABNF, so only token characters are valid.
98
+ // Ref: https://tools.ietf.org/html/rfc6455#section-9.1
99
+ //
100
+ if (isEscaping) {
101
+ if (tokenChars[code] !== 1) {
102
+ throw new SyntaxError(`Unexpected character at index ${i}`);
103
+ }
104
+ if (start === -1) start = i;
105
+ else if (!mustUnescape) mustUnescape = true;
106
+ isEscaping = false;
107
+ } else if (inQuotes) {
108
+ if (tokenChars[code] === 1) {
109
+ if (start === -1) start = i;
110
+ } else if (code === 0x22 /* '"' */ && start !== -1) {
111
+ inQuotes = false;
112
+ end = i;
113
+ } else if (code === 0x5c /* '\' */) {
114
+ isEscaping = true;
115
+ } else {
116
+ throw new SyntaxError(`Unexpected character at index ${i}`);
117
+ }
118
+ } else if (code === 0x22 && header.charCodeAt(i - 1) === 0x3d) {
119
+ inQuotes = true;
120
+ } else if (end === -1 && tokenChars[code] === 1) {
121
+ if (start === -1) start = i;
122
+ } else if (start !== -1 && (code === 0x20 || code === 0x09)) {
123
+ if (end === -1) end = i;
124
+ } else if (code === 0x3b || code === 0x2c) {
125
+ if (start === -1) {
126
+ throw new SyntaxError(`Unexpected character at index ${i}`);
127
+ }
128
+
129
+ if (end === -1) end = i;
130
+ let value = header.slice(start, end);
131
+ if (mustUnescape) {
132
+ value = value.replace(/\\/g, '');
133
+ mustUnescape = false;
134
+ }
135
+ push(params, paramName, value);
136
+ if (code === 0x2c) {
137
+ push(offers, extensionName, params);
138
+ params = Object.create(null);
139
+ extensionName = undefined;
140
+ }
141
+
142
+ paramName = undefined;
143
+ start = end = -1;
144
+ } else {
145
+ throw new SyntaxError(`Unexpected character at index ${i}`);
146
+ }
147
+ }
148
+ }
149
+
150
+ if (start === -1 || inQuotes || code === 0x20 || code === 0x09) {
151
+ throw new SyntaxError('Unexpected end of input');
152
+ }
153
+
154
+ if (end === -1) end = i;
155
+ const token = header.slice(start, end);
156
+ if (extensionName === undefined) {
157
+ push(offers, token, params);
158
+ } else {
159
+ if (paramName === undefined) {
160
+ push(params, token, true);
161
+ } else if (mustUnescape) {
162
+ push(params, paramName, token.replace(/\\/g, ''));
163
+ } else {
164
+ push(params, paramName, token);
165
+ }
166
+ push(offers, extensionName, params);
167
+ }
168
+
169
+ return offers;
170
+ }
171
+
172
+ /**
173
+ * Builds the `Sec-WebSocket-Extensions` header field value.
174
+ *
175
+ * @param {Object} extensions The map of extensions and parameters to format
176
+ * @return {String} A string representing the given object
177
+ * @public
178
+ */
179
+ function format(extensions) {
180
+ return Object.keys(extensions)
181
+ .map((extension) => {
182
+ let configurations = extensions[extension];
183
+ if (!Array.isArray(configurations)) configurations = [configurations];
184
+ return configurations
185
+ .map((params) => {
186
+ return [extension]
187
+ .concat(
188
+ Object.keys(params).map((k) => {
189
+ let values = params[k];
190
+ if (!Array.isArray(values)) values = [values];
191
+ return values
192
+ .map((v) => (v === true ? k : `${k}=${v}`))
193
+ .join('; ');
194
+ })
195
+ )
196
+ .join('; ');
197
+ })
198
+ .join(', ');
199
+ })
200
+ .join(', ');
201
+ }
202
+
203
+ module.exports = { format, parse };
@@ -0,0 +1,55 @@
1
+ 'use strict';
2
+
3
+ const kDone = Symbol('kDone');
4
+ const kRun = Symbol('kRun');
5
+
6
+ /**
7
+ * A very simple job queue with adjustable concurrency. Adapted from
8
+ * https://github.com/STRML/async-limiter
9
+ */
10
+ class Limiter {
11
+ /**
12
+ * Creates a new `Limiter`.
13
+ *
14
+ * @param {Number} [concurrency=Infinity] The maximum number of jobs allowed
15
+ * to run concurrently
16
+ */
17
+ constructor(concurrency) {
18
+ this[kDone] = () => {
19
+ this.pending--;
20
+ this[kRun]();
21
+ };
22
+ this.concurrency = concurrency || Infinity;
23
+ this.jobs = [];
24
+ this.pending = 0;
25
+ }
26
+
27
+ /**
28
+ * Adds a job to the queue.
29
+ *
30
+ * @param {Function} job The job to run
31
+ * @public
32
+ */
33
+ add(job) {
34
+ this.jobs.push(job);
35
+ this[kRun]();
36
+ }
37
+
38
+ /**
39
+ * Removes a job from the queue and runs it if possible.
40
+ *
41
+ * @private
42
+ */
43
+ [kRun]() {
44
+ if (this.pending === this.concurrency) return;
45
+
46
+ if (this.jobs.length) {
47
+ const job = this.jobs.shift();
48
+
49
+ this.pending++;
50
+ job(this[kDone]);
51
+ }
52
+ }
53
+ }
54
+
55
+ module.exports = Limiter;