@tencent-connect/openclaw-qqbot 1.7.1 → 2.0.0

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 (283) hide show
  1. package/README.md +206 -4
  2. package/README.zh.md +207 -4
  3. package/bin/qqbot-cli.js +5 -2
  4. package/dist/index.cjs +15549 -0
  5. package/dist/index.cjs.map +1 -0
  6. package/dist/index.d.cts +890 -0
  7. package/index.ts +56 -18
  8. package/openclaw.plugin.json +19 -3
  9. package/package.json +14 -23
  10. package/preload.cjs +17 -14
  11. package/scripts/link-sdk-core.cjs +133 -50
  12. package/scripts/upgrade-via-npm.sh +400 -73
  13. package/scripts/upgrade-via-source.sh +126 -89
  14. package/skills/qqbot-channel/SKILL.md +34 -12
  15. package/src/adapter/contract.ts +69 -0
  16. package/src/adapter/gateway.ts +61 -0
  17. package/src/adapter/index.ts +15 -0
  18. package/src/adapter/lint.ts +144 -0
  19. package/src/adapter/media.ts +112 -0
  20. package/src/adapter/pairing.ts +99 -0
  21. package/src/adapter/resolve.ts +333 -0
  22. package/src/adapter/setup.ts +55 -0
  23. package/src/adapter/webhook.ts +248 -0
  24. package/src/adapter/workspace.ts +29 -0
  25. package/src/bot-instance.ts +60 -0
  26. package/src/channel.ts +202 -413
  27. package/src/commands/bot-approve.ts +143 -0
  28. package/src/commands/bot-clear-storage.ts +114 -0
  29. package/src/commands/bot-group-always.ts +62 -0
  30. package/src/commands/bot-help.ts +40 -0
  31. package/src/commands/bot-logs.ts +248 -0
  32. package/src/commands/bot-me.ts +18 -0
  33. package/src/commands/bot-pairing.ts +57 -0
  34. package/src/commands/bot-ping.ts +33 -0
  35. package/src/commands/bot-streaming.ts +55 -0
  36. package/src/commands/bot-upgrade.ts +56 -0
  37. package/src/commands/bot-version.ts +41 -0
  38. package/src/commands/config-util.ts +96 -0
  39. package/src/commands/index.ts +49 -0
  40. package/src/config.ts +59 -19
  41. package/src/dispatch/body-assembler.ts +356 -0
  42. package/src/dispatch/ctx-builder.ts +110 -0
  43. package/src/dispatch/dispatch.ts +352 -0
  44. package/src/dispatch/envelope-builder.ts +112 -0
  45. package/src/dispatch/index.ts +2 -0
  46. package/src/{approval-handler.ts → features/approval-handler.ts} +40 -94
  47. package/src/features/approval-utils.ts +41 -0
  48. package/src/features/credential-backup.ts +82 -0
  49. package/src/features/history-store.ts +19 -0
  50. package/src/features/msgid-cache.ts +55 -0
  51. package/src/features/onboarding.ts +38 -0
  52. package/src/{proactive.ts → features/proactive.ts} +68 -49
  53. package/src/features/ref-index-store.ts +282 -0
  54. package/src/{update-checker.ts → features/update-checker.ts} +15 -35
  55. package/src/gateway/event-handlers.ts +241 -0
  56. package/src/gateway/index.ts +3 -0
  57. package/src/gateway/lifecycle.ts +221 -0
  58. package/src/gateway/middleware-setup.ts +139 -0
  59. package/src/gateway/qqbot-gateway.ts +342 -0
  60. package/src/middleware/access-control.ts +130 -0
  61. package/src/middleware/attachment.ts +314 -0
  62. package/src/middleware/policy-injector.ts +66 -0
  63. package/src/openclaw-plugin-sdk.d.ts +81 -10
  64. package/src/outbound/cron-scheduler.ts +130 -0
  65. package/src/outbound/debounce.ts +102 -0
  66. package/src/outbound/deliver-pipeline.ts +235 -0
  67. package/src/outbound/image-size.ts +123 -0
  68. package/src/outbound/index.ts +3 -0
  69. package/src/outbound/local-file-router.ts +145 -0
  70. package/src/outbound/media-send.ts +377 -0
  71. package/src/outbound/outbound-service.ts +222 -0
  72. package/src/outbound/reply-limiter.ts +128 -0
  73. package/src/outbound/sanitize.ts +32 -0
  74. package/src/outbound/streaming-controller.ts +228 -0
  75. package/src/outbound/target.ts +63 -0
  76. package/src/outbound/tts-provider.ts +84 -0
  77. package/src/request-context.ts +9 -8
  78. package/src/runtime.ts +31 -6
  79. package/src/setup/account-key.ts +41 -0
  80. package/src/setup/finalize.ts +110 -0
  81. package/src/setup/login.ts +197 -0
  82. package/src/setup/surface.ts +40 -0
  83. package/src/tools/platform.ts +149 -0
  84. package/src/tools/remind.ts +1 -1
  85. package/src/types-augment.d.ts +54 -0
  86. package/src/types.ts +71 -8
  87. package/src/typings/openclaw-webhook-ingress.d.ts +66 -0
  88. package/src/utils/mention.ts +52 -0
  89. package/src/utils/pkg-version.ts +84 -47
  90. package/src/utils/platform.ts +31 -7
  91. package/src/utils/plugin-logger.ts +104 -0
  92. package/src/utils/ssrf-guard.ts +32 -2
  93. package/src/utils/stt.ts +137 -0
  94. package/src/utils/voice-text.ts +61 -0
  95. package/tsconfig.json +2 -1
  96. package/tsup.config.ts +57 -0
  97. package/dist/index.d.ts +0 -17
  98. package/dist/index.js +0 -26
  99. package/dist/src/admin-resolver.d.ts +0 -33
  100. package/dist/src/admin-resolver.js +0 -157
  101. package/dist/src/api.d.ts +0 -307
  102. package/dist/src/api.js +0 -910
  103. package/dist/src/approval-handler.d.ts +0 -47
  104. package/dist/src/approval-handler.js +0 -372
  105. package/dist/src/channel.d.ts +0 -29
  106. package/dist/src/channel.js +0 -528
  107. package/dist/src/config.d.ts +0 -56
  108. package/dist/src/config.js +0 -278
  109. package/dist/src/credential-backup.d.ts +0 -31
  110. package/dist/src/credential-backup.js +0 -66
  111. package/dist/src/deliver-debounce.d.ts +0 -74
  112. package/dist/src/deliver-debounce.js +0 -174
  113. package/dist/src/gateway.d.ts +0 -18
  114. package/dist/src/gateway.js +0 -2063
  115. package/dist/src/group-history.d.ts +0 -136
  116. package/dist/src/group-history.js +0 -226
  117. package/dist/src/image-server.d.ts +0 -87
  118. package/dist/src/image-server.js +0 -570
  119. package/dist/src/inbound-attachments.d.ts +0 -60
  120. package/dist/src/inbound-attachments.js +0 -248
  121. package/dist/src/known-users.d.ts +0 -100
  122. package/dist/src/known-users.js +0 -263
  123. package/dist/src/message-gating.d.ts +0 -53
  124. package/dist/src/message-gating.js +0 -107
  125. package/dist/src/message-queue.d.ts +0 -91
  126. package/dist/src/message-queue.js +0 -257
  127. package/dist/src/onboarding.d.ts +0 -10
  128. package/dist/src/onboarding.js +0 -203
  129. package/dist/src/outbound-deliver.d.ts +0 -48
  130. package/dist/src/outbound-deliver.js +0 -392
  131. package/dist/src/outbound.d.ts +0 -220
  132. package/dist/src/outbound.js +0 -975
  133. package/dist/src/proactive.d.ts +0 -170
  134. package/dist/src/proactive.js +0 -399
  135. package/dist/src/ref-index-store.d.ts +0 -101
  136. package/dist/src/ref-index-store.js +0 -298
  137. package/dist/src/reply-dispatcher.d.ts +0 -35
  138. package/dist/src/reply-dispatcher.js +0 -311
  139. package/dist/src/request-context.d.ts +0 -25
  140. package/dist/src/request-context.js +0 -37
  141. package/dist/src/runtime.d.ts +0 -3
  142. package/dist/src/runtime.js +0 -13
  143. package/dist/src/session-store.d.ts +0 -52
  144. package/dist/src/session-store.js +0 -254
  145. package/dist/src/slash-commands.d.ts +0 -82
  146. package/dist/src/slash-commands.js +0 -2117
  147. package/dist/src/startup-greeting.d.ts +0 -30
  148. package/dist/src/startup-greeting.js +0 -97
  149. package/dist/src/streaming.d.ts +0 -247
  150. package/dist/src/streaming.js +0 -899
  151. package/dist/src/stt.d.ts +0 -21
  152. package/dist/src/stt.js +0 -70
  153. package/dist/src/tools/channel.d.ts +0 -16
  154. package/dist/src/tools/channel.js +0 -234
  155. package/dist/src/tools/remind.d.ts +0 -2
  156. package/dist/src/tools/remind.js +0 -256
  157. package/dist/src/types.d.ts +0 -443
  158. package/dist/src/types.js +0 -22
  159. package/dist/src/typing-keepalive.d.ts +0 -27
  160. package/dist/src/typing-keepalive.js +0 -64
  161. package/dist/src/update-checker.d.ts +0 -36
  162. package/dist/src/update-checker.js +0 -171
  163. package/dist/src/utils/audio-convert.d.ts +0 -98
  164. package/dist/src/utils/audio-convert.js +0 -755
  165. package/dist/src/utils/chunked-upload.d.ts +0 -68
  166. package/dist/src/utils/chunked-upload.js +0 -341
  167. package/dist/src/utils/file-utils.d.ts +0 -61
  168. package/dist/src/utils/file-utils.js +0 -172
  169. package/dist/src/utils/image-size.d.ts +0 -51
  170. package/dist/src/utils/image-size.js +0 -234
  171. package/dist/src/utils/media-send.d.ts +0 -158
  172. package/dist/src/utils/media-send.js +0 -502
  173. package/dist/src/utils/media-tags.d.ts +0 -14
  174. package/dist/src/utils/media-tags.js +0 -165
  175. package/dist/src/utils/payload.d.ts +0 -112
  176. package/dist/src/utils/payload.js +0 -186
  177. package/dist/src/utils/pkg-version.d.ts +0 -5
  178. package/dist/src/utils/pkg-version.js +0 -61
  179. package/dist/src/utils/platform.d.ts +0 -137
  180. package/dist/src/utils/platform.js +0 -390
  181. package/dist/src/utils/ssrf-guard.d.ts +0 -25
  182. package/dist/src/utils/ssrf-guard.js +0 -91
  183. package/dist/src/utils/text-parsing.d.ts +0 -31
  184. package/dist/src/utils/text-parsing.js +0 -74
  185. package/dist/src/utils/upload-cache.d.ts +0 -34
  186. package/dist/src/utils/upload-cache.js +0 -93
  187. package/node_modules/@eshaz/web-worker/LICENSE +0 -201
  188. package/node_modules/@eshaz/web-worker/README.md +0 -134
  189. package/node_modules/@eshaz/web-worker/browser.js +0 -17
  190. package/node_modules/@eshaz/web-worker/cjs/browser.js +0 -16
  191. package/node_modules/@eshaz/web-worker/cjs/node.js +0 -219
  192. package/node_modules/@eshaz/web-worker/index.d.ts +0 -4
  193. package/node_modules/@eshaz/web-worker/node.js +0 -223
  194. package/node_modules/@eshaz/web-worker/package.json +0 -54
  195. package/node_modules/@wasm-audio-decoders/common/index.js +0 -5
  196. package/node_modules/@wasm-audio-decoders/common/package.json +0 -36
  197. package/node_modules/@wasm-audio-decoders/common/src/WASMAudioDecoderCommon.js +0 -231
  198. package/node_modules/@wasm-audio-decoders/common/src/WASMAudioDecoderWorker.js +0 -129
  199. package/node_modules/@wasm-audio-decoders/common/src/puff/README +0 -67
  200. package/node_modules/@wasm-audio-decoders/common/src/puff/build_puff.js +0 -31
  201. package/node_modules/@wasm-audio-decoders/common/src/puff/puff.c +0 -863
  202. package/node_modules/@wasm-audio-decoders/common/src/puff/puff.h +0 -35
  203. package/node_modules/@wasm-audio-decoders/common/src/utilities.js +0 -3
  204. package/node_modules/@wasm-audio-decoders/common/types.d.ts +0 -7
  205. package/node_modules/mpg123-decoder/README.md +0 -265
  206. package/node_modules/mpg123-decoder/dist/mpg123-decoder.min.js +0 -185
  207. package/node_modules/mpg123-decoder/dist/mpg123-decoder.min.js.map +0 -1
  208. package/node_modules/mpg123-decoder/index.js +0 -8
  209. package/node_modules/mpg123-decoder/package.json +0 -58
  210. package/node_modules/mpg123-decoder/src/EmscriptenWasm.js +0 -464
  211. package/node_modules/mpg123-decoder/src/MPEGDecoder.js +0 -200
  212. package/node_modules/mpg123-decoder/src/MPEGDecoderWebWorker.js +0 -21
  213. package/node_modules/mpg123-decoder/types.d.ts +0 -30
  214. package/node_modules/silk-wasm/LICENSE +0 -21
  215. package/node_modules/silk-wasm/README.md +0 -85
  216. package/node_modules/silk-wasm/lib/index.cjs +0 -16
  217. package/node_modules/silk-wasm/lib/index.d.ts +0 -70
  218. package/node_modules/silk-wasm/lib/index.mjs +0 -16
  219. package/node_modules/silk-wasm/lib/silk.wasm +0 -0
  220. package/node_modules/silk-wasm/lib/utils.d.ts +0 -4
  221. package/node_modules/silk-wasm/package.json +0 -39
  222. package/node_modules/simple-yenc/.github/FUNDING.yml +0 -1
  223. package/node_modules/simple-yenc/.prettierignore +0 -1
  224. package/node_modules/simple-yenc/LICENSE +0 -7
  225. package/node_modules/simple-yenc/README.md +0 -163
  226. package/node_modules/simple-yenc/dist/esm.js +0 -1
  227. package/node_modules/simple-yenc/dist/index.js +0 -1
  228. package/node_modules/simple-yenc/package.json +0 -50
  229. package/node_modules/simple-yenc/rollup.config.js +0 -27
  230. package/node_modules/simple-yenc/src/simple-yenc.js +0 -302
  231. package/node_modules/ws/LICENSE +0 -20
  232. package/node_modules/ws/README.md +0 -548
  233. package/node_modules/ws/browser.js +0 -8
  234. package/node_modules/ws/index.js +0 -13
  235. package/node_modules/ws/lib/buffer-util.js +0 -131
  236. package/node_modules/ws/lib/constants.js +0 -19
  237. package/node_modules/ws/lib/event-target.js +0 -292
  238. package/node_modules/ws/lib/extension.js +0 -203
  239. package/node_modules/ws/lib/limiter.js +0 -55
  240. package/node_modules/ws/lib/permessage-deflate.js +0 -528
  241. package/node_modules/ws/lib/receiver.js +0 -706
  242. package/node_modules/ws/lib/sender.js +0 -602
  243. package/node_modules/ws/lib/stream.js +0 -161
  244. package/node_modules/ws/lib/subprotocol.js +0 -62
  245. package/node_modules/ws/lib/validation.js +0 -152
  246. package/node_modules/ws/lib/websocket-server.js +0 -554
  247. package/node_modules/ws/lib/websocket.js +0 -1393
  248. package/node_modules/ws/package.json +0 -69
  249. package/node_modules/ws/wrapper.mjs +0 -8
  250. package/scripts/postinstall-link-sdk.js +0 -126
  251. package/skills/qqbot-media/SKILL.md +0 -60
  252. package/src/admin-resolver.ts +0 -181
  253. package/src/api.ts +0 -1319
  254. package/src/credential-backup.ts +0 -72
  255. package/src/deliver-debounce.ts +0 -229
  256. package/src/gateway.ts +0 -2304
  257. package/src/group-history.ts +0 -328
  258. package/src/image-server.ts +0 -675
  259. package/src/inbound-attachments.ts +0 -321
  260. package/src/known-users.ts +0 -353
  261. package/src/message-gating.ts +0 -190
  262. package/src/message-queue.ts +0 -354
  263. package/src/onboarding.ts +0 -274
  264. package/src/outbound-deliver.ts +0 -486
  265. package/src/outbound.ts +0 -1179
  266. package/src/ref-index-store.ts +0 -412
  267. package/src/reply-dispatcher.ts +0 -334
  268. package/src/session-store.ts +0 -303
  269. package/src/slash-commands.ts +0 -2297
  270. package/src/startup-greeting.ts +0 -120
  271. package/src/streaming.ts +0 -1077
  272. package/src/stt.ts +0 -86
  273. package/src/tools/channel.ts +0 -281
  274. package/src/typing-keepalive.ts +0 -59
  275. package/src/utils/audio-convert.ts +0 -859
  276. package/src/utils/chunked-upload.ts +0 -483
  277. package/src/utils/file-utils.ts +0 -193
  278. package/src/utils/image-size.ts +0 -266
  279. package/src/utils/media-send.ts +0 -636
  280. package/src/utils/media-tags.ts +0 -183
  281. package/src/utils/payload.ts +0 -265
  282. package/src/utils/text-parsing.ts +0 -85
  283. package/src/utils/upload-cache.ts +0 -128
@@ -1,19 +0,0 @@
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
- CLOSE_TIMEOUT: 30000,
11
- EMPTY_BUFFER: Buffer.alloc(0),
12
- GUID: '258EAFA5-E914-47DA-95CA-C5AB0DC85B11',
13
- hasBlob,
14
- kForOnEventAttribute: Symbol('kIsForOnEventAttribute'),
15
- kListener: Symbol('kListener'),
16
- kStatusCode: Symbol('status-code'),
17
- kWebSocket: Symbol('websocket'),
18
- NOOP: () => {}
19
- };
@@ -1,292 +0,0 @@
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
- }
@@ -1,203 +0,0 @@
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 };
@@ -1,55 +0,0 @@
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;