deepv-code 1.0.182

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 (223) hide show
  1. package/LICENSE +202 -0
  2. package/README.md +3 -0
  3. package/bundle/assets/help/README.md +113 -0
  4. package/bundle/assets/help/cli-help-knowledge.md +1382 -0
  5. package/bundle/assets/sounds/README.md +74 -0
  6. package/bundle/assets/sounds/confirmation-required.wav +0 -0
  7. package/bundle/assets/sounds/response-complete.wav +0 -0
  8. package/bundle/assets/sounds/selection-made.wav +0 -0
  9. package/bundle/dvcode.js +4442 -0
  10. package/bundle/fix-binary-permissions.js +215 -0
  11. package/bundle/login/templates/authSelectPage.html +870 -0
  12. package/bundle/login/templates/deepv.ico +0 -0
  13. package/bundle/login/templates/feishu.ico +0 -0
  14. package/bundle/node_modules/@vscode/ripgrep/bin/darwin-arm64-rg +0 -0
  15. package/bundle/node_modules/@vscode/ripgrep/bin/darwin-x64-rg +0 -0
  16. package/bundle/node_modules/@vscode/ripgrep/bin/linux-arm-rg +0 -0
  17. package/bundle/node_modules/@vscode/ripgrep/bin/linux-arm64-rg +0 -0
  18. package/bundle/node_modules/@vscode/ripgrep/bin/linux-x64-rg +0 -0
  19. package/bundle/node_modules/@vscode/ripgrep/bin/rg.exe +0 -0
  20. package/bundle/node_modules/@vscode/ripgrep/bin/win32-arm64-rg.exe +0 -0
  21. package/bundle/node_modules/@vscode/ripgrep/bin/win32-ia32-rg.exe +0 -0
  22. package/bundle/node_modules/@vscode/ripgrep/bin/win32-x64-rg.exe +0 -0
  23. package/bundle/node_modules/@vscode/ripgrep/lib/download.js +357 -0
  24. package/bundle/node_modules/@vscode/ripgrep/lib/index.d.ts +1 -0
  25. package/bundle/node_modules/@vscode/ripgrep/lib/index.js +42 -0
  26. package/bundle/node_modules/@vscode/ripgrep/lib/postinstall.js +121 -0
  27. package/bundle/node_modules/@vscode/ripgrep/package.json +24 -0
  28. package/bundle/node_modules/undici/LICENSE +21 -0
  29. package/bundle/node_modules/undici/README.md +472 -0
  30. package/bundle/node_modules/undici/docs/docs/api/Agent.md +83 -0
  31. package/bundle/node_modules/undici/docs/docs/api/BalancedPool.md +99 -0
  32. package/bundle/node_modules/undici/docs/docs/api/CacheStorage.md +30 -0
  33. package/bundle/node_modules/undici/docs/docs/api/CacheStore.md +151 -0
  34. package/bundle/node_modules/undici/docs/docs/api/Client.md +281 -0
  35. package/bundle/node_modules/undici/docs/docs/api/ClientStats.md +27 -0
  36. package/bundle/node_modules/undici/docs/docs/api/Connector.md +115 -0
  37. package/bundle/node_modules/undici/docs/docs/api/ContentType.md +57 -0
  38. package/bundle/node_modules/undici/docs/docs/api/Cookies.md +101 -0
  39. package/bundle/node_modules/undici/docs/docs/api/Debug.md +62 -0
  40. package/bundle/node_modules/undici/docs/docs/api/DiagnosticsChannel.md +204 -0
  41. package/bundle/node_modules/undici/docs/docs/api/Dispatcher.md +1200 -0
  42. package/bundle/node_modules/undici/docs/docs/api/EnvHttpProxyAgent.md +159 -0
  43. package/bundle/node_modules/undici/docs/docs/api/Errors.md +49 -0
  44. package/bundle/node_modules/undici/docs/docs/api/EventSource.md +45 -0
  45. package/bundle/node_modules/undici/docs/docs/api/Fetch.md +52 -0
  46. package/bundle/node_modules/undici/docs/docs/api/H2CClient.md +262 -0
  47. package/bundle/node_modules/undici/docs/docs/api/MockAgent.md +603 -0
  48. package/bundle/node_modules/undici/docs/docs/api/MockCallHistory.md +197 -0
  49. package/bundle/node_modules/undici/docs/docs/api/MockCallHistoryLog.md +43 -0
  50. package/bundle/node_modules/undici/docs/docs/api/MockClient.md +77 -0
  51. package/bundle/node_modules/undici/docs/docs/api/MockErrors.md +12 -0
  52. package/bundle/node_modules/undici/docs/docs/api/MockPool.md +548 -0
  53. package/bundle/node_modules/undici/docs/docs/api/Pool.md +84 -0
  54. package/bundle/node_modules/undici/docs/docs/api/PoolStats.md +35 -0
  55. package/bundle/node_modules/undici/docs/docs/api/ProxyAgent.md +227 -0
  56. package/bundle/node_modules/undici/docs/docs/api/RedirectHandler.md +96 -0
  57. package/bundle/node_modules/undici/docs/docs/api/RetryAgent.md +45 -0
  58. package/bundle/node_modules/undici/docs/docs/api/RetryHandler.md +117 -0
  59. package/bundle/node_modules/undici/docs/docs/api/Util.md +25 -0
  60. package/bundle/node_modules/undici/docs/docs/api/WebSocket.md +85 -0
  61. package/bundle/node_modules/undici/docs/docs/api/api-lifecycle.md +91 -0
  62. package/bundle/node_modules/undici/docs/docs/best-practices/client-certificate.md +64 -0
  63. package/bundle/node_modules/undici/docs/docs/best-practices/mocking-request.md +190 -0
  64. package/bundle/node_modules/undici/docs/docs/best-practices/proxy.md +127 -0
  65. package/bundle/node_modules/undici/docs/docs/best-practices/writing-tests.md +20 -0
  66. package/bundle/node_modules/undici/index-fetch.js +35 -0
  67. package/bundle/node_modules/undici/index.d.ts +3 -0
  68. package/bundle/node_modules/undici/index.js +183 -0
  69. package/bundle/node_modules/undici/lib/api/abort-signal.js +59 -0
  70. package/bundle/node_modules/undici/lib/api/api-connect.js +110 -0
  71. package/bundle/node_modules/undici/lib/api/api-pipeline.js +252 -0
  72. package/bundle/node_modules/undici/lib/api/api-request.js +199 -0
  73. package/bundle/node_modules/undici/lib/api/api-stream.js +209 -0
  74. package/bundle/node_modules/undici/lib/api/api-upgrade.js +110 -0
  75. package/bundle/node_modules/undici/lib/api/index.js +7 -0
  76. package/bundle/node_modules/undici/lib/api/readable.js +558 -0
  77. package/bundle/node_modules/undici/lib/api/util.js +95 -0
  78. package/bundle/node_modules/undici/lib/cache/memory-cache-store.js +234 -0
  79. package/bundle/node_modules/undici/lib/cache/sqlite-cache-store.js +461 -0
  80. package/bundle/node_modules/undici/lib/core/connect.js +164 -0
  81. package/bundle/node_modules/undici/lib/core/constants.js +143 -0
  82. package/bundle/node_modules/undici/lib/core/diagnostics.js +196 -0
  83. package/bundle/node_modules/undici/lib/core/errors.js +244 -0
  84. package/bundle/node_modules/undici/lib/core/request.js +397 -0
  85. package/bundle/node_modules/undici/lib/core/symbols.js +68 -0
  86. package/bundle/node_modules/undici/lib/core/tree.js +160 -0
  87. package/bundle/node_modules/undici/lib/core/util.js +988 -0
  88. package/bundle/node_modules/undici/lib/dispatcher/agent.js +135 -0
  89. package/bundle/node_modules/undici/lib/dispatcher/balanced-pool.js +206 -0
  90. package/bundle/node_modules/undici/lib/dispatcher/client-h1.js +1615 -0
  91. package/bundle/node_modules/undici/lib/dispatcher/client-h2.js +798 -0
  92. package/bundle/node_modules/undici/lib/dispatcher/client.js +614 -0
  93. package/bundle/node_modules/undici/lib/dispatcher/dispatcher-base.js +161 -0
  94. package/bundle/node_modules/undici/lib/dispatcher/dispatcher.js +48 -0
  95. package/bundle/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +151 -0
  96. package/bundle/node_modules/undici/lib/dispatcher/fixed-queue.js +159 -0
  97. package/bundle/node_modules/undici/lib/dispatcher/h2c-client.js +122 -0
  98. package/bundle/node_modules/undici/lib/dispatcher/pool-base.js +191 -0
  99. package/bundle/node_modules/undici/lib/dispatcher/pool.js +118 -0
  100. package/bundle/node_modules/undici/lib/dispatcher/proxy-agent.js +275 -0
  101. package/bundle/node_modules/undici/lib/dispatcher/retry-agent.js +35 -0
  102. package/bundle/node_modules/undici/lib/global.js +32 -0
  103. package/bundle/node_modules/undici/lib/handler/cache-handler.js +448 -0
  104. package/bundle/node_modules/undici/lib/handler/cache-revalidation-handler.js +124 -0
  105. package/bundle/node_modules/undici/lib/handler/decorator-handler.js +67 -0
  106. package/bundle/node_modules/undici/lib/handler/redirect-handler.js +227 -0
  107. package/bundle/node_modules/undici/lib/handler/retry-handler.js +342 -0
  108. package/bundle/node_modules/undici/lib/handler/unwrap-handler.js +96 -0
  109. package/bundle/node_modules/undici/lib/handler/wrap-handler.js +95 -0
  110. package/bundle/node_modules/undici/lib/interceptor/cache.js +372 -0
  111. package/bundle/node_modules/undici/lib/interceptor/dns.js +432 -0
  112. package/bundle/node_modules/undici/lib/interceptor/dump.js +111 -0
  113. package/bundle/node_modules/undici/lib/interceptor/redirect.js +21 -0
  114. package/bundle/node_modules/undici/lib/interceptor/response-error.js +95 -0
  115. package/bundle/node_modules/undici/lib/interceptor/retry.js +19 -0
  116. package/bundle/node_modules/undici/lib/llhttp/.gitkeep +0 -0
  117. package/bundle/node_modules/undici/lib/llhttp/constants.d.ts +97 -0
  118. package/bundle/node_modules/undici/lib/llhttp/constants.js +498 -0
  119. package/bundle/node_modules/undici/lib/llhttp/constants.js.map +1 -0
  120. package/bundle/node_modules/undici/lib/llhttp/llhttp-wasm.js +15 -0
  121. package/bundle/node_modules/undici/lib/llhttp/llhttp_simd-wasm.js +15 -0
  122. package/bundle/node_modules/undici/lib/llhttp/utils.d.ts +2 -0
  123. package/bundle/node_modules/undici/lib/llhttp/utils.js +15 -0
  124. package/bundle/node_modules/undici/lib/llhttp/utils.js.map +1 -0
  125. package/bundle/node_modules/undici/lib/mock/mock-agent.js +224 -0
  126. package/bundle/node_modules/undici/lib/mock/mock-call-history.js +248 -0
  127. package/bundle/node_modules/undici/lib/mock/mock-client.js +64 -0
  128. package/bundle/node_modules/undici/lib/mock/mock-errors.js +19 -0
  129. package/bundle/node_modules/undici/lib/mock/mock-interceptor.js +209 -0
  130. package/bundle/node_modules/undici/lib/mock/mock-pool.js +64 -0
  131. package/bundle/node_modules/undici/lib/mock/mock-symbols.js +31 -0
  132. package/bundle/node_modules/undici/lib/mock/mock-utils.js +433 -0
  133. package/bundle/node_modules/undici/lib/mock/pending-interceptors-formatter.js +43 -0
  134. package/bundle/node_modules/undici/lib/util/cache.js +368 -0
  135. package/bundle/node_modules/undici/lib/util/date.js +259 -0
  136. package/bundle/node_modules/undici/lib/util/stats.js +32 -0
  137. package/bundle/node_modules/undici/lib/util/timers.js +423 -0
  138. package/bundle/node_modules/undici/lib/web/cache/cache.js +862 -0
  139. package/bundle/node_modules/undici/lib/web/cache/cachestorage.js +152 -0
  140. package/bundle/node_modules/undici/lib/web/cache/util.js +45 -0
  141. package/bundle/node_modules/undici/lib/web/cookies/constants.js +12 -0
  142. package/bundle/node_modules/undici/lib/web/cookies/index.js +199 -0
  143. package/bundle/node_modules/undici/lib/web/cookies/parse.js +322 -0
  144. package/bundle/node_modules/undici/lib/web/cookies/util.js +282 -0
  145. package/bundle/node_modules/undici/lib/web/eventsource/eventsource-stream.js +399 -0
  146. package/bundle/node_modules/undici/lib/web/eventsource/eventsource.js +484 -0
  147. package/bundle/node_modules/undici/lib/web/eventsource/util.js +37 -0
  148. package/bundle/node_modules/undici/lib/web/fetch/LICENSE +21 -0
  149. package/bundle/node_modules/undici/lib/web/fetch/body.js +532 -0
  150. package/bundle/node_modules/undici/lib/web/fetch/constants.js +131 -0
  151. package/bundle/node_modules/undici/lib/web/fetch/data-url.js +744 -0
  152. package/bundle/node_modules/undici/lib/web/fetch/dispatcher-weakref.js +46 -0
  153. package/bundle/node_modules/undici/lib/web/fetch/formdata-parser.js +501 -0
  154. package/bundle/node_modules/undici/lib/web/fetch/formdata.js +263 -0
  155. package/bundle/node_modules/undici/lib/web/fetch/global.js +40 -0
  156. package/bundle/node_modules/undici/lib/web/fetch/headers.js +719 -0
  157. package/bundle/node_modules/undici/lib/web/fetch/index.js +2258 -0
  158. package/bundle/node_modules/undici/lib/web/fetch/request.js +1099 -0
  159. package/bundle/node_modules/undici/lib/web/fetch/response.js +636 -0
  160. package/bundle/node_modules/undici/lib/web/fetch/util.js +1782 -0
  161. package/bundle/node_modules/undici/lib/web/fetch/webidl.js +740 -0
  162. package/bundle/node_modules/undici/lib/web/websocket/connection.js +325 -0
  163. package/bundle/node_modules/undici/lib/web/websocket/constants.js +126 -0
  164. package/bundle/node_modules/undici/lib/web/websocket/events.js +331 -0
  165. package/bundle/node_modules/undici/lib/web/websocket/frame.js +138 -0
  166. package/bundle/node_modules/undici/lib/web/websocket/permessage-deflate.js +70 -0
  167. package/bundle/node_modules/undici/lib/web/websocket/receiver.js +454 -0
  168. package/bundle/node_modules/undici/lib/web/websocket/sender.js +109 -0
  169. package/bundle/node_modules/undici/lib/web/websocket/stream/websocketerror.js +83 -0
  170. package/bundle/node_modules/undici/lib/web/websocket/stream/websocketstream.js +485 -0
  171. package/bundle/node_modules/undici/lib/web/websocket/util.js +338 -0
  172. package/bundle/node_modules/undici/lib/web/websocket/websocket.js +686 -0
  173. package/bundle/node_modules/undici/package.json +149 -0
  174. package/bundle/node_modules/undici/scripts/strip-comments.js +10 -0
  175. package/bundle/node_modules/undici/types/README.md +6 -0
  176. package/bundle/node_modules/undici/types/agent.d.ts +35 -0
  177. package/bundle/node_modules/undici/types/api.d.ts +43 -0
  178. package/bundle/node_modules/undici/types/balanced-pool.d.ts +29 -0
  179. package/bundle/node_modules/undici/types/cache-interceptor.d.ts +172 -0
  180. package/bundle/node_modules/undici/types/cache.d.ts +36 -0
  181. package/bundle/node_modules/undici/types/client-stats.d.ts +15 -0
  182. package/bundle/node_modules/undici/types/client.d.ts +110 -0
  183. package/bundle/node_modules/undici/types/connector.d.ts +34 -0
  184. package/bundle/node_modules/undici/types/content-type.d.ts +21 -0
  185. package/bundle/node_modules/undici/types/cookies.d.ts +30 -0
  186. package/bundle/node_modules/undici/types/diagnostics-channel.d.ts +66 -0
  187. package/bundle/node_modules/undici/types/dispatcher.d.ts +281 -0
  188. package/bundle/node_modules/undici/types/env-http-proxy-agent.d.ts +21 -0
  189. package/bundle/node_modules/undici/types/errors.d.ts +171 -0
  190. package/bundle/node_modules/undici/types/eventsource.d.ts +61 -0
  191. package/bundle/node_modules/undici/types/fetch.d.ts +210 -0
  192. package/bundle/node_modules/undici/types/formdata.d.ts +108 -0
  193. package/bundle/node_modules/undici/types/global-dispatcher.d.ts +9 -0
  194. package/bundle/node_modules/undici/types/global-origin.d.ts +7 -0
  195. package/bundle/node_modules/undici/types/h2c-client.d.ts +75 -0
  196. package/bundle/node_modules/undici/types/handlers.d.ts +15 -0
  197. package/bundle/node_modules/undici/types/header.d.ts +160 -0
  198. package/bundle/node_modules/undici/types/index.d.ts +75 -0
  199. package/bundle/node_modules/undici/types/interceptors.d.ts +34 -0
  200. package/bundle/node_modules/undici/types/mock-agent.d.ts +68 -0
  201. package/bundle/node_modules/undici/types/mock-call-history.d.ts +111 -0
  202. package/bundle/node_modules/undici/types/mock-client.d.ts +25 -0
  203. package/bundle/node_modules/undici/types/mock-errors.d.ts +12 -0
  204. package/bundle/node_modules/undici/types/mock-interceptor.d.ts +93 -0
  205. package/bundle/node_modules/undici/types/mock-pool.d.ts +25 -0
  206. package/bundle/node_modules/undici/types/patch.d.ts +29 -0
  207. package/bundle/node_modules/undici/types/pool-stats.d.ts +19 -0
  208. package/bundle/node_modules/undici/types/pool.d.ts +41 -0
  209. package/bundle/node_modules/undici/types/proxy-agent.d.ts +29 -0
  210. package/bundle/node_modules/undici/types/readable.d.ts +68 -0
  211. package/bundle/node_modules/undici/types/retry-agent.d.ts +8 -0
  212. package/bundle/node_modules/undici/types/retry-handler.d.ts +116 -0
  213. package/bundle/node_modules/undici/types/util.d.ts +18 -0
  214. package/bundle/node_modules/undici/types/utility.d.ts +7 -0
  215. package/bundle/node_modules/undici/types/webidl.d.ts +266 -0
  216. package/bundle/node_modules/undici/types/websocket.d.ts +184 -0
  217. package/bundle/sandbox-macos-permissive-closed.sb +26 -0
  218. package/bundle/sandbox-macos-permissive-open.sb +19 -0
  219. package/bundle/sandbox-macos-permissive-proxied.sb +31 -0
  220. package/bundle/sandbox-macos-restrictive-closed.sb +87 -0
  221. package/bundle/sandbox-macos-restrictive-open.sb +90 -0
  222. package/bundle/sandbox-macos-restrictive-proxied.sb +92 -0
  223. package/package.json +137 -0
@@ -0,0 +1,338 @@
1
+ 'use strict'
2
+
3
+ const { states, opcodes } = require('./constants')
4
+ const { isUtf8 } = require('node:buffer')
5
+ const { collectASequenceOfCodePointsFast, removeHTTPWhitespace } = require('../fetch/data-url')
6
+
7
+ /**
8
+ * @param {number} readyState
9
+ * @returns {boolean}
10
+ */
11
+ function isConnecting (readyState) {
12
+ // If the WebSocket connection is not yet established, and the connection
13
+ // is not yet closed, then the WebSocket connection is in the CONNECTING state.
14
+ return readyState === states.CONNECTING
15
+ }
16
+
17
+ /**
18
+ * @param {number} readyState
19
+ * @returns {boolean}
20
+ */
21
+ function isEstablished (readyState) {
22
+ // If the server's response is validated as provided for above, it is
23
+ // said that _The WebSocket Connection is Established_ and that the
24
+ // WebSocket Connection is in the OPEN state.
25
+ return readyState === states.OPEN
26
+ }
27
+
28
+ /**
29
+ * @param {number} readyState
30
+ * @returns {boolean}
31
+ */
32
+ function isClosing (readyState) {
33
+ // Upon either sending or receiving a Close control frame, it is said
34
+ // that _The WebSocket Closing Handshake is Started_ and that the
35
+ // WebSocket connection is in the CLOSING state.
36
+ return readyState === states.CLOSING
37
+ }
38
+
39
+ /**
40
+ * @param {number} readyState
41
+ * @returns {boolean}
42
+ */
43
+ function isClosed (readyState) {
44
+ return readyState === states.CLOSED
45
+ }
46
+
47
+ /**
48
+ * @see https://dom.spec.whatwg.org/#concept-event-fire
49
+ * @param {string} e
50
+ * @param {EventTarget} target
51
+ * @param {(...args: ConstructorParameters<typeof Event>) => Event} eventFactory
52
+ * @param {EventInit | undefined} eventInitDict
53
+ * @returns {void}
54
+ */
55
+ function fireEvent (e, target, eventFactory = (type, init) => new Event(type, init), eventInitDict = {}) {
56
+ // 1. If eventConstructor is not given, then let eventConstructor be Event.
57
+
58
+ // 2. Let event be the result of creating an event given eventConstructor,
59
+ // in the relevant realm of target.
60
+ // 3. Initialize event’s type attribute to e.
61
+ const event = eventFactory(e, eventInitDict)
62
+
63
+ // 4. Initialize any other IDL attributes of event as described in the
64
+ // invocation of this algorithm.
65
+
66
+ // 5. Return the result of dispatching event at target, with legacy target
67
+ // override flag set if set.
68
+ target.dispatchEvent(event)
69
+ }
70
+
71
+ /**
72
+ * @see https://websockets.spec.whatwg.org/#feedback-from-the-protocol
73
+ * @param {import('./websocket').Handler} handler
74
+ * @param {number} type Opcode
75
+ * @param {Buffer} data application data
76
+ * @returns {void}
77
+ */
78
+ function websocketMessageReceived (handler, type, data) {
79
+ handler.onMessage(type, data)
80
+ }
81
+
82
+ /**
83
+ * @param {Buffer} buffer
84
+ * @returns {ArrayBuffer}
85
+ */
86
+ function toArrayBuffer (buffer) {
87
+ if (buffer.byteLength === buffer.buffer.byteLength) {
88
+ return buffer.buffer
89
+ }
90
+ return new Uint8Array(buffer).buffer
91
+ }
92
+
93
+ /**
94
+ * @see https://datatracker.ietf.org/doc/html/rfc6455
95
+ * @see https://datatracker.ietf.org/doc/html/rfc2616
96
+ * @see https://bugs.chromium.org/p/chromium/issues/detail?id=398407
97
+ * @param {string} protocol
98
+ * @returns {boolean}
99
+ */
100
+ function isValidSubprotocol (protocol) {
101
+ // If present, this value indicates one
102
+ // or more comma-separated subprotocol the client wishes to speak,
103
+ // ordered by preference. The elements that comprise this value
104
+ // MUST be non-empty strings with characters in the range U+0021 to
105
+ // U+007E not including separator characters as defined in
106
+ // [RFC2616] and MUST all be unique strings.
107
+ if (protocol.length === 0) {
108
+ return false
109
+ }
110
+
111
+ for (let i = 0; i < protocol.length; ++i) {
112
+ const code = protocol.charCodeAt(i)
113
+
114
+ if (
115
+ code < 0x21 || // CTL, contains SP (0x20) and HT (0x09)
116
+ code > 0x7E ||
117
+ code === 0x22 || // "
118
+ code === 0x28 || // (
119
+ code === 0x29 || // )
120
+ code === 0x2C || // ,
121
+ code === 0x2F || // /
122
+ code === 0x3A || // :
123
+ code === 0x3B || // ;
124
+ code === 0x3C || // <
125
+ code === 0x3D || // =
126
+ code === 0x3E || // >
127
+ code === 0x3F || // ?
128
+ code === 0x40 || // @
129
+ code === 0x5B || // [
130
+ code === 0x5C || // \
131
+ code === 0x5D || // ]
132
+ code === 0x7B || // {
133
+ code === 0x7D // }
134
+ ) {
135
+ return false
136
+ }
137
+ }
138
+
139
+ return true
140
+ }
141
+
142
+ /**
143
+ * @see https://datatracker.ietf.org/doc/html/rfc6455#section-7-4
144
+ * @param {number} code
145
+ * @returns {boolean}
146
+ */
147
+ function isValidStatusCode (code) {
148
+ if (code >= 1000 && code < 1015) {
149
+ return (
150
+ code !== 1004 && // reserved
151
+ code !== 1005 && // "MUST NOT be set as a status code"
152
+ code !== 1006 // "MUST NOT be set as a status code"
153
+ )
154
+ }
155
+
156
+ return code >= 3000 && code <= 4999
157
+ }
158
+
159
+ /**
160
+ * @see https://datatracker.ietf.org/doc/html/rfc6455#section-5.5
161
+ * @param {number} opcode
162
+ * @returns {boolean}
163
+ */
164
+ function isControlFrame (opcode) {
165
+ return (
166
+ opcode === opcodes.CLOSE ||
167
+ opcode === opcodes.PING ||
168
+ opcode === opcodes.PONG
169
+ )
170
+ }
171
+
172
+ /**
173
+ * @param {number} opcode
174
+ * @returns {boolean}
175
+ */
176
+ function isContinuationFrame (opcode) {
177
+ return opcode === opcodes.CONTINUATION
178
+ }
179
+
180
+ /**
181
+ * @param {number} opcode
182
+ * @returns {boolean}
183
+ */
184
+ function isTextBinaryFrame (opcode) {
185
+ return opcode === opcodes.TEXT || opcode === opcodes.BINARY
186
+ }
187
+
188
+ /**
189
+ *
190
+ * @param {number} opcode
191
+ * @returns {boolean}
192
+ */
193
+ function isValidOpcode (opcode) {
194
+ return isTextBinaryFrame(opcode) || isContinuationFrame(opcode) || isControlFrame(opcode)
195
+ }
196
+
197
+ /**
198
+ * Parses a Sec-WebSocket-Extensions header value.
199
+ * @param {string} extensions
200
+ * @returns {Map<string, string>}
201
+ */
202
+ // TODO(@Uzlopak, @KhafraDev): make compliant https://datatracker.ietf.org/doc/html/rfc6455#section-9.1
203
+ function parseExtensions (extensions) {
204
+ const position = { position: 0 }
205
+ const extensionList = new Map()
206
+
207
+ while (position.position < extensions.length) {
208
+ const pair = collectASequenceOfCodePointsFast(';', extensions, position)
209
+ const [name, value = ''] = pair.split('=', 2)
210
+
211
+ extensionList.set(
212
+ removeHTTPWhitespace(name, true, false),
213
+ removeHTTPWhitespace(value, false, true)
214
+ )
215
+
216
+ position.position++
217
+ }
218
+
219
+ return extensionList
220
+ }
221
+
222
+ /**
223
+ * @see https://www.rfc-editor.org/rfc/rfc7692#section-7.1.2.2
224
+ * @description "client-max-window-bits = 1*DIGIT"
225
+ * @param {string} value
226
+ * @returns {boolean}
227
+ */
228
+ function isValidClientWindowBits (value) {
229
+ for (let i = 0; i < value.length; i++) {
230
+ const byte = value.charCodeAt(i)
231
+
232
+ if (byte < 0x30 || byte > 0x39) {
233
+ return false
234
+ }
235
+ }
236
+
237
+ return true
238
+ }
239
+
240
+ /**
241
+ * @see https://whatpr.org/websockets/48/7b748d3...d5570f3.html#get-a-url-record
242
+ * @param {string} url
243
+ * @param {string} [baseURL]
244
+ */
245
+ function getURLRecord (url, baseURL) {
246
+ // 1. Let urlRecord be the result of applying the URL parser to url with baseURL .
247
+ // 2. If urlRecord is failure, then throw a " SyntaxError " DOMException .
248
+ let urlRecord
249
+
250
+ try {
251
+ urlRecord = new URL(url, baseURL)
252
+ } catch (e) {
253
+ throw new DOMException(e, 'SyntaxError')
254
+ }
255
+
256
+ // 3. If urlRecord ’s scheme is " http ", then set urlRecord ’s scheme to " ws ".
257
+ // 4. Otherwise, if urlRecord ’s scheme is " https ", set urlRecord ’s scheme to " wss ".
258
+ if (urlRecord.protocol === 'http:') {
259
+ urlRecord.protocol = 'ws:'
260
+ } else if (urlRecord.protocol === 'https:') {
261
+ urlRecord.protocol = 'wss:'
262
+ }
263
+
264
+ // 5. If urlRecord ’s scheme is not " ws " or " wss ", then throw a " SyntaxError " DOMException .
265
+ if (urlRecord.protocol !== 'ws:' && urlRecord.protocol !== 'wss:') {
266
+ throw new DOMException('expected a ws: or wss: url', 'SyntaxError')
267
+ }
268
+
269
+ // If urlRecord ’s fragment is non-null, then throw a " SyntaxError " DOMException .
270
+ if (urlRecord.hash.length || urlRecord.href.endsWith('#')) {
271
+ throw new DOMException('hash', 'SyntaxError')
272
+ }
273
+
274
+ // Return urlRecord .
275
+ return urlRecord
276
+ }
277
+
278
+ // https://whatpr.org/websockets/48.html#validate-close-code-and-reason
279
+ function validateCloseCodeAndReason (code, reason) {
280
+ // 1. If code is not null, but is neither an integer equal to
281
+ // 1000 nor an integer in the range 3000 to 4999, inclusive,
282
+ // throw an "InvalidAccessError" DOMException.
283
+ if (code !== null) {
284
+ if (code !== 1000 && (code < 3000 || code > 4999)) {
285
+ throw new DOMException('invalid code', 'InvalidAccessError')
286
+ }
287
+ }
288
+
289
+ // 2. If reason is not null, then:
290
+ if (reason !== null) {
291
+ // 2.1. Let reasonBytes be the result of UTF-8 encoding reason.
292
+ // 2.2. If reasonBytes is longer than 123 bytes, then throw a
293
+ // "SyntaxError" DOMException.
294
+ const reasonBytesLength = Buffer.byteLength(reason)
295
+
296
+ if (reasonBytesLength > 123) {
297
+ throw new DOMException(`Reason must be less than 123 bytes; received ${reasonBytesLength}`, 'SyntaxError')
298
+ }
299
+ }
300
+ }
301
+
302
+ /**
303
+ * Converts a Buffer to utf-8, even on platforms without icu.
304
+ * @type {(buffer: Buffer) => string}
305
+ */
306
+ const utf8Decode = (() => {
307
+ if (typeof process.versions.icu === 'string') {
308
+ const fatalDecoder = new TextDecoder('utf-8', { fatal: true })
309
+ return fatalDecoder.decode.bind(fatalDecoder)
310
+ }
311
+ return function (buffer) {
312
+ if (isUtf8(buffer)) {
313
+ return buffer.toString('utf-8')
314
+ }
315
+ throw new TypeError('Invalid utf-8 received.')
316
+ }
317
+ })()
318
+
319
+ module.exports = {
320
+ isConnecting,
321
+ isEstablished,
322
+ isClosing,
323
+ isClosed,
324
+ fireEvent,
325
+ isValidSubprotocol,
326
+ isValidStatusCode,
327
+ websocketMessageReceived,
328
+ utf8Decode,
329
+ isControlFrame,
330
+ isContinuationFrame,
331
+ isTextBinaryFrame,
332
+ isValidOpcode,
333
+ parseExtensions,
334
+ isValidClientWindowBits,
335
+ toArrayBuffer,
336
+ getURLRecord,
337
+ validateCloseCodeAndReason
338
+ }