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,325 @@
1
+ 'use strict'
2
+
3
+ const { uid, states, sentCloseFrameState, emptyBuffer, opcodes } = require('./constants')
4
+ const { parseExtensions, isClosed, isClosing, isEstablished, validateCloseCodeAndReason } = require('./util')
5
+ const { channels } = require('../../core/diagnostics')
6
+ const { makeRequest } = require('../fetch/request')
7
+ const { fetching } = require('../fetch/index')
8
+ const { Headers, getHeadersList } = require('../fetch/headers')
9
+ const { getDecodeSplit } = require('../fetch/util')
10
+ const { WebsocketFrameSend } = require('./frame')
11
+ const assert = require('node:assert')
12
+
13
+ /** @type {import('crypto')} */
14
+ let crypto
15
+ try {
16
+ crypto = require('node:crypto')
17
+ /* c8 ignore next 3 */
18
+ } catch {
19
+
20
+ }
21
+
22
+ /**
23
+ * @see https://websockets.spec.whatwg.org/#concept-websocket-establish
24
+ * @param {URL} url
25
+ * @param {string|string[]} protocols
26
+ * @param {import('./websocket').Handler} handler
27
+ * @param {Partial<import('../../../types/websocket').WebSocketInit>} options
28
+ */
29
+ function establishWebSocketConnection (url, protocols, client, handler, options) {
30
+ // 1. Let requestURL be a copy of url, with its scheme set to "http", if url’s
31
+ // scheme is "ws", and to "https" otherwise.
32
+ const requestURL = url
33
+
34
+ requestURL.protocol = url.protocol === 'ws:' ? 'http:' : 'https:'
35
+
36
+ // 2. Let request be a new request, whose URL is requestURL, client is client,
37
+ // service-workers mode is "none", referrer is "no-referrer", mode is
38
+ // "websocket", credentials mode is "include", cache mode is "no-store" ,
39
+ // and redirect mode is "error".
40
+ const request = makeRequest({
41
+ urlList: [requestURL],
42
+ client,
43
+ serviceWorkers: 'none',
44
+ referrer: 'no-referrer',
45
+ mode: 'websocket',
46
+ credentials: 'include',
47
+ cache: 'no-store',
48
+ redirect: 'error'
49
+ })
50
+
51
+ // Note: undici extension, allow setting custom headers.
52
+ if (options.headers) {
53
+ const headersList = getHeadersList(new Headers(options.headers))
54
+
55
+ request.headersList = headersList
56
+ }
57
+
58
+ // 3. Append (`Upgrade`, `websocket`) to request’s header list.
59
+ // 4. Append (`Connection`, `Upgrade`) to request’s header list.
60
+ // Note: both of these are handled by undici currently.
61
+ // https://github.com/nodejs/undici/blob/68c269c4144c446f3f1220951338daef4a6b5ec4/lib/client.js#L1397
62
+
63
+ // 5. Let keyValue be a nonce consisting of a randomly selected
64
+ // 16-byte value that has been forgiving-base64-encoded and
65
+ // isomorphic encoded.
66
+ const keyValue = crypto.randomBytes(16).toString('base64')
67
+
68
+ // 6. Append (`Sec-WebSocket-Key`, keyValue) to request’s
69
+ // header list.
70
+ request.headersList.append('sec-websocket-key', keyValue, true)
71
+
72
+ // 7. Append (`Sec-WebSocket-Version`, `13`) to request’s
73
+ // header list.
74
+ request.headersList.append('sec-websocket-version', '13', true)
75
+
76
+ // 8. For each protocol in protocols, combine
77
+ // (`Sec-WebSocket-Protocol`, protocol) in request’s header
78
+ // list.
79
+ for (const protocol of protocols) {
80
+ request.headersList.append('sec-websocket-protocol', protocol, true)
81
+ }
82
+
83
+ // 9. Let permessageDeflate be a user-agent defined
84
+ // "permessage-deflate" extension header value.
85
+ // https://github.com/mozilla/gecko-dev/blob/ce78234f5e653a5d3916813ff990f053510227bc/netwerk/protocol/websocket/WebSocketChannel.cpp#L2673
86
+ const permessageDeflate = 'permessage-deflate; client_max_window_bits'
87
+
88
+ // 10. Append (`Sec-WebSocket-Extensions`, permessageDeflate) to
89
+ // request’s header list.
90
+ request.headersList.append('sec-websocket-extensions', permessageDeflate, true)
91
+
92
+ // 11. Fetch request with useParallelQueue set to true, and
93
+ // processResponse given response being these steps:
94
+ const controller = fetching({
95
+ request,
96
+ useParallelQueue: true,
97
+ dispatcher: options.dispatcher,
98
+ processResponse (response) {
99
+ if (response.type === 'error') {
100
+ // If the WebSocket connection could not be established, it is also said
101
+ // that _The WebSocket Connection is Closed_, but not _cleanly_.
102
+ handler.readyState = states.CLOSED
103
+ }
104
+
105
+ // 1. If response is a network error or its status is not 101,
106
+ // fail the WebSocket connection.
107
+ if (response.type === 'error' || response.status !== 101) {
108
+ failWebsocketConnection(handler, 1002, 'Received network error or non-101 status code.')
109
+ return
110
+ }
111
+
112
+ // 2. If protocols is not the empty list and extracting header
113
+ // list values given `Sec-WebSocket-Protocol` and response’s
114
+ // header list results in null, failure, or the empty byte
115
+ // sequence, then fail the WebSocket connection.
116
+ if (protocols.length !== 0 && !response.headersList.get('Sec-WebSocket-Protocol')) {
117
+ failWebsocketConnection(handler, 1002, 'Server did not respond with sent protocols.')
118
+ return
119
+ }
120
+
121
+ // 3. Follow the requirements stated step 2 to step 6, inclusive,
122
+ // of the last set of steps in section 4.1 of The WebSocket
123
+ // Protocol to validate response. This either results in fail
124
+ // the WebSocket connection or the WebSocket connection is
125
+ // established.
126
+
127
+ // 2. If the response lacks an |Upgrade| header field or the |Upgrade|
128
+ // header field contains a value that is not an ASCII case-
129
+ // insensitive match for the value "websocket", the client MUST
130
+ // _Fail the WebSocket Connection_.
131
+ if (response.headersList.get('Upgrade')?.toLowerCase() !== 'websocket') {
132
+ failWebsocketConnection(handler, 1002, 'Server did not set Upgrade header to "websocket".')
133
+ return
134
+ }
135
+
136
+ // 3. If the response lacks a |Connection| header field or the
137
+ // |Connection| header field doesn't contain a token that is an
138
+ // ASCII case-insensitive match for the value "Upgrade", the client
139
+ // MUST _Fail the WebSocket Connection_.
140
+ if (response.headersList.get('Connection')?.toLowerCase() !== 'upgrade') {
141
+ failWebsocketConnection(handler, 1002, 'Server did not set Connection header to "upgrade".')
142
+ return
143
+ }
144
+
145
+ // 4. If the response lacks a |Sec-WebSocket-Accept| header field or
146
+ // the |Sec-WebSocket-Accept| contains a value other than the
147
+ // base64-encoded SHA-1 of the concatenation of the |Sec-WebSocket-
148
+ // Key| (as a string, not base64-decoded) with the string "258EAFA5-
149
+ // E914-47DA-95CA-C5AB0DC85B11" but ignoring any leading and
150
+ // trailing whitespace, the client MUST _Fail the WebSocket
151
+ // Connection_.
152
+ const secWSAccept = response.headersList.get('Sec-WebSocket-Accept')
153
+ const digest = crypto.createHash('sha1').update(keyValue + uid).digest('base64')
154
+ if (secWSAccept !== digest) {
155
+ failWebsocketConnection(handler, 1002, 'Incorrect hash received in Sec-WebSocket-Accept header.')
156
+ return
157
+ }
158
+
159
+ // 5. If the response includes a |Sec-WebSocket-Extensions| header
160
+ // field and this header field indicates the use of an extension
161
+ // that was not present in the client's handshake (the server has
162
+ // indicated an extension not requested by the client), the client
163
+ // MUST _Fail the WebSocket Connection_. (The parsing of this
164
+ // header field to determine which extensions are requested is
165
+ // discussed in Section 9.1.)
166
+ const secExtension = response.headersList.get('Sec-WebSocket-Extensions')
167
+ let extensions
168
+
169
+ if (secExtension !== null) {
170
+ extensions = parseExtensions(secExtension)
171
+
172
+ if (!extensions.has('permessage-deflate')) {
173
+ failWebsocketConnection(handler, 1002, 'Sec-WebSocket-Extensions header does not match.')
174
+ return
175
+ }
176
+ }
177
+
178
+ // 6. If the response includes a |Sec-WebSocket-Protocol| header field
179
+ // and this header field indicates the use of a subprotocol that was
180
+ // not present in the client's handshake (the server has indicated a
181
+ // subprotocol not requested by the client), the client MUST _Fail
182
+ // the WebSocket Connection_.
183
+ const secProtocol = response.headersList.get('Sec-WebSocket-Protocol')
184
+
185
+ if (secProtocol !== null) {
186
+ const requestProtocols = getDecodeSplit('sec-websocket-protocol', request.headersList)
187
+
188
+ // The client can request that the server use a specific subprotocol by
189
+ // including the |Sec-WebSocket-Protocol| field in its handshake. If it
190
+ // is specified, the server needs to include the same field and one of
191
+ // the selected subprotocol values in its response for the connection to
192
+ // be established.
193
+ if (!requestProtocols.includes(secProtocol)) {
194
+ failWebsocketConnection(handler, 1002, 'Protocol was not set in the opening handshake.')
195
+ return
196
+ }
197
+ }
198
+
199
+ response.socket.on('data', handler.onSocketData)
200
+ response.socket.on('close', handler.onSocketClose)
201
+ response.socket.on('error', handler.onSocketError)
202
+
203
+ if (channels.open.hasSubscribers) {
204
+ channels.open.publish({
205
+ address: response.socket.address(),
206
+ protocol: secProtocol,
207
+ extensions: secExtension
208
+ })
209
+ }
210
+
211
+ handler.wasEverConnected = true
212
+ handler.onConnectionEstablished(response, extensions)
213
+ }
214
+ })
215
+
216
+ return controller
217
+ }
218
+
219
+ /**
220
+ * @see https://whatpr.org/websockets/48.html#close-the-websocket
221
+ * @param {import('./websocket').Handler} object
222
+ * @param {number} [code=null]
223
+ * @param {string} [reason='']
224
+ */
225
+ function closeWebSocketConnection (object, code, reason, validate = false) {
226
+ // 1. If code was not supplied, let code be null.
227
+ code ??= null
228
+
229
+ // 2. If reason was not supplied, let reason be the empty string.
230
+ reason ??= ''
231
+
232
+ // 3. Validate close code and reason with code and reason.
233
+ if (validate) validateCloseCodeAndReason(code, reason)
234
+
235
+ // 4. Run the first matching steps from the following list:
236
+ // - If object’s ready state is CLOSING (2) or CLOSED (3)
237
+ // - If the WebSocket connection is not yet established [WSP]
238
+ // - If the WebSocket closing handshake has not yet been started [WSP]
239
+ // - Otherwise
240
+ if (isClosed(object.readyState) || isClosing(object.readyState)) {
241
+ // Do nothing.
242
+ } else if (!isEstablished(object.readyState)) {
243
+ // Fail the WebSocket connection and set object’s ready state to CLOSING (2). [WSP]
244
+ failWebsocketConnection(object)
245
+ object.readyState = states.CLOSING
246
+ } else if (!object.closeState.has(sentCloseFrameState.SENT) && !object.closeState.has(sentCloseFrameState.RECEIVED)) {
247
+ // Upon either sending or receiving a Close control frame, it is said
248
+ // that _The WebSocket Closing Handshake is Started_ and that the
249
+ // WebSocket connection is in the CLOSING state.
250
+
251
+ const frame = new WebsocketFrameSend()
252
+
253
+ // If neither code nor reason is present, the WebSocket Close
254
+ // message must not have a body.
255
+
256
+ // If code is present, then the status code to use in the
257
+ // WebSocket Close message must be the integer given by code.
258
+ // If code is null and reason is the empty string, the WebSocket Close frame must not have a body.
259
+ // If reason is non-empty but code is null, then set code to 1000 ("Normal Closure").
260
+ if (reason.length !== 0 && code === null) {
261
+ code = 1000
262
+ }
263
+
264
+ // If code is set, then the status code to use in the WebSocket Close frame must be the integer given by code.
265
+ assert(code === null || Number.isInteger(code))
266
+
267
+ if (code === null && reason.length === 0) {
268
+ frame.frameData = emptyBuffer
269
+ } else if (code !== null && reason === null) {
270
+ frame.frameData = Buffer.allocUnsafe(2)
271
+ frame.frameData.writeUInt16BE(code, 0)
272
+ } else if (code !== null && reason !== null) {
273
+ // If reason is also present, then reasonBytes must be
274
+ // provided in the Close message after the status code.
275
+ frame.frameData = Buffer.allocUnsafe(2 + Buffer.byteLength(reason))
276
+ frame.frameData.writeUInt16BE(code, 0)
277
+ // the body MAY contain UTF-8-encoded data with value /reason/
278
+ frame.frameData.write(reason, 2, 'utf-8')
279
+ } else {
280
+ frame.frameData = emptyBuffer
281
+ }
282
+
283
+ object.socket.write(frame.createFrame(opcodes.CLOSE))
284
+
285
+ object.closeState.add(sentCloseFrameState.SENT)
286
+
287
+ // Upon either sending or receiving a Close control frame, it is said
288
+ // that _The WebSocket Closing Handshake is Started_ and that the
289
+ // WebSocket connection is in the CLOSING state.
290
+ object.readyState = states.CLOSING
291
+ } else {
292
+ // Set object’s ready state to CLOSING (2).
293
+ object.readyState = states.CLOSING
294
+ }
295
+ }
296
+
297
+ /**
298
+ * @param {import('./websocket').Handler} handler
299
+ * @param {number} code
300
+ * @param {string|undefined} reason
301
+ * @returns {void}
302
+ */
303
+ function failWebsocketConnection (handler, code, reason) {
304
+ // If _The WebSocket Connection is Established_ prior to the point where
305
+ // the endpoint is required to _Fail the WebSocket Connection_, the
306
+ // endpoint SHOULD send a Close frame with an appropriate status code
307
+ // (Section 7.4) before proceeding to _Close the WebSocket Connection_.
308
+ if (isEstablished(handler.readyState)) {
309
+ closeWebSocketConnection(handler, code, reason, false)
310
+ }
311
+
312
+ handler.controller.abort()
313
+
314
+ if (handler.socket?.destroyed === false) {
315
+ handler.socket.destroy()
316
+ }
317
+
318
+ handler.onFail(code, reason)
319
+ }
320
+
321
+ module.exports = {
322
+ establishWebSocketConnection,
323
+ failWebsocketConnection,
324
+ closeWebSocketConnection
325
+ }
@@ -0,0 +1,126 @@
1
+ 'use strict'
2
+
3
+ /**
4
+ * This is a Globally Unique Identifier unique used to validate that the
5
+ * endpoint accepts websocket connections.
6
+ * @see https://www.rfc-editor.org/rfc/rfc6455.html#section-1.3
7
+ * @type {'258EAFA5-E914-47DA-95CA-C5AB0DC85B11'}
8
+ */
9
+ const uid = '258EAFA5-E914-47DA-95CA-C5AB0DC85B11'
10
+
11
+ /**
12
+ * @type {PropertyDescriptor}
13
+ */
14
+ const staticPropertyDescriptors = {
15
+ enumerable: true,
16
+ writable: false,
17
+ configurable: false
18
+ }
19
+
20
+ /**
21
+ * The states of the WebSocket connection.
22
+ *
23
+ * @readonly
24
+ * @enum
25
+ * @property {0} CONNECTING
26
+ * @property {1} OPEN
27
+ * @property {2} CLOSING
28
+ * @property {3} CLOSED
29
+ */
30
+ const states = {
31
+ CONNECTING: 0,
32
+ OPEN: 1,
33
+ CLOSING: 2,
34
+ CLOSED: 3
35
+ }
36
+
37
+ /**
38
+ * @readonly
39
+ * @enum
40
+ * @property {0} NOT_SENT
41
+ * @property {1} PROCESSING
42
+ * @property {2} SENT
43
+ */
44
+ const sentCloseFrameState = {
45
+ SENT: 1,
46
+ RECEIVED: 2
47
+ }
48
+
49
+ /**
50
+ * The WebSocket opcodes.
51
+ *
52
+ * @readonly
53
+ * @enum
54
+ * @property {0x0} CONTINUATION
55
+ * @property {0x1} TEXT
56
+ * @property {0x2} BINARY
57
+ * @property {0x8} CLOSE
58
+ * @property {0x9} PING
59
+ * @property {0xA} PONG
60
+ * @see https://datatracker.ietf.org/doc/html/rfc6455#section-5.2
61
+ */
62
+ const opcodes = {
63
+ CONTINUATION: 0x0,
64
+ TEXT: 0x1,
65
+ BINARY: 0x2,
66
+ CLOSE: 0x8,
67
+ PING: 0x9,
68
+ PONG: 0xA
69
+ }
70
+
71
+ /**
72
+ * The maximum value for an unsigned 16-bit integer.
73
+ *
74
+ * @type {65535} 2 ** 16 - 1
75
+ */
76
+ const maxUnsigned16Bit = 65535
77
+
78
+ /**
79
+ * The states of the parser.
80
+ *
81
+ * @readonly
82
+ * @enum
83
+ * @property {0} INFO
84
+ * @property {2} PAYLOADLENGTH_16
85
+ * @property {3} PAYLOADLENGTH_64
86
+ * @property {4} READ_DATA
87
+ */
88
+ const parserStates = {
89
+ INFO: 0,
90
+ PAYLOADLENGTH_16: 2,
91
+ PAYLOADLENGTH_64: 3,
92
+ READ_DATA: 4
93
+ }
94
+
95
+ /**
96
+ * An empty buffer.
97
+ *
98
+ * @type {Buffer}
99
+ */
100
+ const emptyBuffer = Buffer.allocUnsafe(0)
101
+
102
+ /**
103
+ * @readonly
104
+ * @property {1} text
105
+ * @property {2} typedArray
106
+ * @property {3} arrayBuffer
107
+ * @property {4} blob
108
+ */
109
+ const sendHints = {
110
+ text: 1,
111
+ typedArray: 2,
112
+ arrayBuffer: 3,
113
+ blob: 4
114
+ }
115
+
116
+ module.exports = {
117
+ uid,
118
+ sentCloseFrameState,
119
+ staticPropertyDescriptors,
120
+ states,
121
+ opcodes,
122
+ maxUnsigned16Bit,
123
+ parserStates,
124
+ emptyBuffer,
125
+ sendHints
126
+ }