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,244 @@
1
+ 'use strict'
2
+
3
+ class UndiciError extends Error {
4
+ constructor (message, options) {
5
+ super(message, options)
6
+ this.name = 'UndiciError'
7
+ this.code = 'UND_ERR'
8
+ }
9
+ }
10
+
11
+ class ConnectTimeoutError extends UndiciError {
12
+ constructor (message) {
13
+ super(message)
14
+ this.name = 'ConnectTimeoutError'
15
+ this.message = message || 'Connect Timeout Error'
16
+ this.code = 'UND_ERR_CONNECT_TIMEOUT'
17
+ }
18
+ }
19
+
20
+ class HeadersTimeoutError extends UndiciError {
21
+ constructor (message) {
22
+ super(message)
23
+ this.name = 'HeadersTimeoutError'
24
+ this.message = message || 'Headers Timeout Error'
25
+ this.code = 'UND_ERR_HEADERS_TIMEOUT'
26
+ }
27
+ }
28
+
29
+ class HeadersOverflowError extends UndiciError {
30
+ constructor (message) {
31
+ super(message)
32
+ this.name = 'HeadersOverflowError'
33
+ this.message = message || 'Headers Overflow Error'
34
+ this.code = 'UND_ERR_HEADERS_OVERFLOW'
35
+ }
36
+ }
37
+
38
+ class BodyTimeoutError extends UndiciError {
39
+ constructor (message) {
40
+ super(message)
41
+ this.name = 'BodyTimeoutError'
42
+ this.message = message || 'Body Timeout Error'
43
+ this.code = 'UND_ERR_BODY_TIMEOUT'
44
+ }
45
+ }
46
+
47
+ class ResponseStatusCodeError extends UndiciError {
48
+ constructor (message, statusCode, headers, body) {
49
+ super(message)
50
+ this.name = 'ResponseStatusCodeError'
51
+ this.message = message || 'Response Status Code Error'
52
+ this.code = 'UND_ERR_RESPONSE_STATUS_CODE'
53
+ this.body = body
54
+ this.status = statusCode
55
+ this.statusCode = statusCode
56
+ this.headers = headers
57
+ }
58
+ }
59
+
60
+ class InvalidArgumentError extends UndiciError {
61
+ constructor (message) {
62
+ super(message)
63
+ this.name = 'InvalidArgumentError'
64
+ this.message = message || 'Invalid Argument Error'
65
+ this.code = 'UND_ERR_INVALID_ARG'
66
+ }
67
+ }
68
+
69
+ class InvalidReturnValueError extends UndiciError {
70
+ constructor (message) {
71
+ super(message)
72
+ this.name = 'InvalidReturnValueError'
73
+ this.message = message || 'Invalid Return Value Error'
74
+ this.code = 'UND_ERR_INVALID_RETURN_VALUE'
75
+ }
76
+ }
77
+
78
+ class AbortError extends UndiciError {
79
+ constructor (message) {
80
+ super(message)
81
+ this.name = 'AbortError'
82
+ this.message = message || 'The operation was aborted'
83
+ }
84
+ }
85
+
86
+ class RequestAbortedError extends AbortError {
87
+ constructor (message) {
88
+ super(message)
89
+ this.name = 'AbortError'
90
+ this.message = message || 'Request aborted'
91
+ this.code = 'UND_ERR_ABORTED'
92
+ }
93
+ }
94
+
95
+ class InformationalError extends UndiciError {
96
+ constructor (message) {
97
+ super(message)
98
+ this.name = 'InformationalError'
99
+ this.message = message || 'Request information'
100
+ this.code = 'UND_ERR_INFO'
101
+ }
102
+ }
103
+
104
+ class RequestContentLengthMismatchError extends UndiciError {
105
+ constructor (message) {
106
+ super(message)
107
+ this.name = 'RequestContentLengthMismatchError'
108
+ this.message = message || 'Request body length does not match content-length header'
109
+ this.code = 'UND_ERR_REQ_CONTENT_LENGTH_MISMATCH'
110
+ }
111
+ }
112
+
113
+ class ResponseContentLengthMismatchError extends UndiciError {
114
+ constructor (message) {
115
+ super(message)
116
+ this.name = 'ResponseContentLengthMismatchError'
117
+ this.message = message || 'Response body length does not match content-length header'
118
+ this.code = 'UND_ERR_RES_CONTENT_LENGTH_MISMATCH'
119
+ }
120
+ }
121
+
122
+ class ClientDestroyedError extends UndiciError {
123
+ constructor (message) {
124
+ super(message)
125
+ this.name = 'ClientDestroyedError'
126
+ this.message = message || 'The client is destroyed'
127
+ this.code = 'UND_ERR_DESTROYED'
128
+ }
129
+ }
130
+
131
+ class ClientClosedError extends UndiciError {
132
+ constructor (message) {
133
+ super(message)
134
+ this.name = 'ClientClosedError'
135
+ this.message = message || 'The client is closed'
136
+ this.code = 'UND_ERR_CLOSED'
137
+ }
138
+ }
139
+
140
+ class SocketError extends UndiciError {
141
+ constructor (message, socket) {
142
+ super(message)
143
+ this.name = 'SocketError'
144
+ this.message = message || 'Socket error'
145
+ this.code = 'UND_ERR_SOCKET'
146
+ this.socket = socket
147
+ }
148
+ }
149
+
150
+ class NotSupportedError extends UndiciError {
151
+ constructor (message) {
152
+ super(message)
153
+ this.name = 'NotSupportedError'
154
+ this.message = message || 'Not supported error'
155
+ this.code = 'UND_ERR_NOT_SUPPORTED'
156
+ }
157
+ }
158
+
159
+ class BalancedPoolMissingUpstreamError extends UndiciError {
160
+ constructor (message) {
161
+ super(message)
162
+ this.name = 'MissingUpstreamError'
163
+ this.message = message || 'No upstream has been added to the BalancedPool'
164
+ this.code = 'UND_ERR_BPL_MISSING_UPSTREAM'
165
+ }
166
+ }
167
+
168
+ class HTTPParserError extends Error {
169
+ constructor (message, code, data) {
170
+ super(message)
171
+ this.name = 'HTTPParserError'
172
+ this.code = code ? `HPE_${code}` : undefined
173
+ this.data = data ? data.toString() : undefined
174
+ }
175
+ }
176
+
177
+ class ResponseExceededMaxSizeError extends UndiciError {
178
+ constructor (message) {
179
+ super(message)
180
+ this.name = 'ResponseExceededMaxSizeError'
181
+ this.message = message || 'Response content exceeded max size'
182
+ this.code = 'UND_ERR_RES_EXCEEDED_MAX_SIZE'
183
+ }
184
+ }
185
+
186
+ class RequestRetryError extends UndiciError {
187
+ constructor (message, code, { headers, data }) {
188
+ super(message)
189
+ this.name = 'RequestRetryError'
190
+ this.message = message || 'Request retry error'
191
+ this.code = 'UND_ERR_REQ_RETRY'
192
+ this.statusCode = code
193
+ this.data = data
194
+ this.headers = headers
195
+ }
196
+ }
197
+
198
+ class ResponseError extends UndiciError {
199
+ constructor (message, code, { headers, body }) {
200
+ super(message)
201
+ this.name = 'ResponseError'
202
+ this.message = message || 'Response error'
203
+ this.code = 'UND_ERR_RESPONSE'
204
+ this.statusCode = code
205
+ this.body = body
206
+ this.headers = headers
207
+ }
208
+ }
209
+
210
+ class SecureProxyConnectionError extends UndiciError {
211
+ constructor (cause, message, options = {}) {
212
+ super(message, { cause, ...options })
213
+ this.name = 'SecureProxyConnectionError'
214
+ this.message = message || 'Secure Proxy Connection failed'
215
+ this.code = 'UND_ERR_PRX_TLS'
216
+ this.cause = cause
217
+ }
218
+ }
219
+
220
+ module.exports = {
221
+ AbortError,
222
+ HTTPParserError,
223
+ UndiciError,
224
+ HeadersTimeoutError,
225
+ HeadersOverflowError,
226
+ BodyTimeoutError,
227
+ RequestContentLengthMismatchError,
228
+ ConnectTimeoutError,
229
+ ResponseStatusCodeError,
230
+ InvalidArgumentError,
231
+ InvalidReturnValueError,
232
+ RequestAbortedError,
233
+ ClientDestroyedError,
234
+ ClientClosedError,
235
+ InformationalError,
236
+ SocketError,
237
+ NotSupportedError,
238
+ ResponseContentLengthMismatchError,
239
+ BalancedPoolMissingUpstreamError,
240
+ ResponseExceededMaxSizeError,
241
+ RequestRetryError,
242
+ ResponseError,
243
+ SecureProxyConnectionError
244
+ }
@@ -0,0 +1,397 @@
1
+ 'use strict'
2
+
3
+ const {
4
+ InvalidArgumentError,
5
+ NotSupportedError
6
+ } = require('./errors')
7
+ const assert = require('node:assert')
8
+ const {
9
+ isValidHTTPToken,
10
+ isValidHeaderValue,
11
+ isStream,
12
+ destroy,
13
+ isBuffer,
14
+ isFormDataLike,
15
+ isIterable,
16
+ isBlobLike,
17
+ serializePathWithQuery,
18
+ assertRequestHandler,
19
+ getServerName,
20
+ normalizedMethodRecords
21
+ } = require('./util')
22
+ const { channels } = require('./diagnostics.js')
23
+ const { headerNameLowerCasedRecord } = require('./constants')
24
+
25
+ // Verifies that a given path is valid does not contain control chars \x00 to \x20
26
+ const invalidPathRegex = /[^\u0021-\u00ff]/
27
+
28
+ const kHandler = Symbol('handler')
29
+
30
+ class Request {
31
+ constructor (origin, {
32
+ path,
33
+ method,
34
+ body,
35
+ headers,
36
+ query,
37
+ idempotent,
38
+ blocking,
39
+ upgrade,
40
+ headersTimeout,
41
+ bodyTimeout,
42
+ reset,
43
+ expectContinue,
44
+ servername,
45
+ throwOnError
46
+ }, handler) {
47
+ if (typeof path !== 'string') {
48
+ throw new InvalidArgumentError('path must be a string')
49
+ } else if (
50
+ path[0] !== '/' &&
51
+ !(path.startsWith('http://') || path.startsWith('https://')) &&
52
+ method !== 'CONNECT'
53
+ ) {
54
+ throw new InvalidArgumentError('path must be an absolute URL or start with a slash')
55
+ } else if (invalidPathRegex.test(path)) {
56
+ throw new InvalidArgumentError('invalid request path')
57
+ }
58
+
59
+ if (typeof method !== 'string') {
60
+ throw new InvalidArgumentError('method must be a string')
61
+ } else if (normalizedMethodRecords[method] === undefined && !isValidHTTPToken(method)) {
62
+ throw new InvalidArgumentError('invalid request method')
63
+ }
64
+
65
+ if (upgrade && typeof upgrade !== 'string') {
66
+ throw new InvalidArgumentError('upgrade must be a string')
67
+ }
68
+
69
+ if (headersTimeout != null && (!Number.isFinite(headersTimeout) || headersTimeout < 0)) {
70
+ throw new InvalidArgumentError('invalid headersTimeout')
71
+ }
72
+
73
+ if (bodyTimeout != null && (!Number.isFinite(bodyTimeout) || bodyTimeout < 0)) {
74
+ throw new InvalidArgumentError('invalid bodyTimeout')
75
+ }
76
+
77
+ if (reset != null && typeof reset !== 'boolean') {
78
+ throw new InvalidArgumentError('invalid reset')
79
+ }
80
+
81
+ if (expectContinue != null && typeof expectContinue !== 'boolean') {
82
+ throw new InvalidArgumentError('invalid expectContinue')
83
+ }
84
+
85
+ if (throwOnError != null) {
86
+ throw new InvalidArgumentError('invalid throwOnError')
87
+ }
88
+
89
+ this.headersTimeout = headersTimeout
90
+
91
+ this.bodyTimeout = bodyTimeout
92
+
93
+ this.method = method
94
+
95
+ this.abort = null
96
+
97
+ if (body == null) {
98
+ this.body = null
99
+ } else if (isStream(body)) {
100
+ this.body = body
101
+
102
+ const rState = this.body._readableState
103
+ if (!rState || !rState.autoDestroy) {
104
+ this.endHandler = function autoDestroy () {
105
+ destroy(this)
106
+ }
107
+ this.body.on('end', this.endHandler)
108
+ }
109
+
110
+ this.errorHandler = err => {
111
+ if (this.abort) {
112
+ this.abort(err)
113
+ } else {
114
+ this.error = err
115
+ }
116
+ }
117
+ this.body.on('error', this.errorHandler)
118
+ } else if (isBuffer(body)) {
119
+ this.body = body.byteLength ? body : null
120
+ } else if (ArrayBuffer.isView(body)) {
121
+ this.body = body.buffer.byteLength ? Buffer.from(body.buffer, body.byteOffset, body.byteLength) : null
122
+ } else if (body instanceof ArrayBuffer) {
123
+ this.body = body.byteLength ? Buffer.from(body) : null
124
+ } else if (typeof body === 'string') {
125
+ this.body = body.length ? Buffer.from(body) : null
126
+ } else if (isFormDataLike(body) || isIterable(body) || isBlobLike(body)) {
127
+ this.body = body
128
+ } else {
129
+ throw new InvalidArgumentError('body must be a string, a Buffer, a Readable stream, an iterable, or an async iterable')
130
+ }
131
+
132
+ this.completed = false
133
+ this.aborted = false
134
+
135
+ this.upgrade = upgrade || null
136
+
137
+ this.path = query ? serializePathWithQuery(path, query) : path
138
+
139
+ this.origin = origin
140
+
141
+ this.idempotent = idempotent == null
142
+ ? method === 'HEAD' || method === 'GET'
143
+ : idempotent
144
+
145
+ this.blocking = blocking ?? this.method !== 'HEAD'
146
+
147
+ this.reset = reset == null ? null : reset
148
+
149
+ this.host = null
150
+
151
+ this.contentLength = null
152
+
153
+ this.contentType = null
154
+
155
+ this.headers = []
156
+
157
+ // Only for H2
158
+ this.expectContinue = expectContinue != null ? expectContinue : false
159
+
160
+ if (Array.isArray(headers)) {
161
+ if (headers.length % 2 !== 0) {
162
+ throw new InvalidArgumentError('headers array must be even')
163
+ }
164
+ for (let i = 0; i < headers.length; i += 2) {
165
+ processHeader(this, headers[i], headers[i + 1])
166
+ }
167
+ } else if (headers && typeof headers === 'object') {
168
+ if (headers[Symbol.iterator]) {
169
+ for (const header of headers) {
170
+ if (!Array.isArray(header) || header.length !== 2) {
171
+ throw new InvalidArgumentError('headers must be in key-value pair format')
172
+ }
173
+ processHeader(this, header[0], header[1])
174
+ }
175
+ } else {
176
+ const keys = Object.keys(headers)
177
+ for (let i = 0; i < keys.length; ++i) {
178
+ processHeader(this, keys[i], headers[keys[i]])
179
+ }
180
+ }
181
+ } else if (headers != null) {
182
+ throw new InvalidArgumentError('headers must be an object or an array')
183
+ }
184
+
185
+ assertRequestHandler(handler, method, upgrade)
186
+
187
+ this.servername = servername || getServerName(this.host) || null
188
+
189
+ this[kHandler] = handler
190
+
191
+ if (channels.create.hasSubscribers) {
192
+ channels.create.publish({ request: this })
193
+ }
194
+ }
195
+
196
+ onBodySent (chunk) {
197
+ if (this[kHandler].onBodySent) {
198
+ try {
199
+ return this[kHandler].onBodySent(chunk)
200
+ } catch (err) {
201
+ this.abort(err)
202
+ }
203
+ }
204
+ }
205
+
206
+ onRequestSent () {
207
+ if (channels.bodySent.hasSubscribers) {
208
+ channels.bodySent.publish({ request: this })
209
+ }
210
+
211
+ if (this[kHandler].onRequestSent) {
212
+ try {
213
+ return this[kHandler].onRequestSent()
214
+ } catch (err) {
215
+ this.abort(err)
216
+ }
217
+ }
218
+ }
219
+
220
+ onConnect (abort) {
221
+ assert(!this.aborted)
222
+ assert(!this.completed)
223
+
224
+ if (this.error) {
225
+ abort(this.error)
226
+ } else {
227
+ this.abort = abort
228
+ return this[kHandler].onConnect(abort)
229
+ }
230
+ }
231
+
232
+ onResponseStarted () {
233
+ return this[kHandler].onResponseStarted?.()
234
+ }
235
+
236
+ onHeaders (statusCode, headers, resume, statusText) {
237
+ assert(!this.aborted)
238
+ assert(!this.completed)
239
+
240
+ if (channels.headers.hasSubscribers) {
241
+ channels.headers.publish({ request: this, response: { statusCode, headers, statusText } })
242
+ }
243
+
244
+ try {
245
+ return this[kHandler].onHeaders(statusCode, headers, resume, statusText)
246
+ } catch (err) {
247
+ this.abort(err)
248
+ }
249
+ }
250
+
251
+ onData (chunk) {
252
+ assert(!this.aborted)
253
+ assert(!this.completed)
254
+
255
+ try {
256
+ return this[kHandler].onData(chunk)
257
+ } catch (err) {
258
+ this.abort(err)
259
+ return false
260
+ }
261
+ }
262
+
263
+ onUpgrade (statusCode, headers, socket) {
264
+ assert(!this.aborted)
265
+ assert(!this.completed)
266
+
267
+ return this[kHandler].onUpgrade(statusCode, headers, socket)
268
+ }
269
+
270
+ onComplete (trailers) {
271
+ this.onFinally()
272
+
273
+ assert(!this.aborted)
274
+ assert(!this.completed)
275
+
276
+ this.completed = true
277
+ if (channels.trailers.hasSubscribers) {
278
+ channels.trailers.publish({ request: this, trailers })
279
+ }
280
+
281
+ try {
282
+ return this[kHandler].onComplete(trailers)
283
+ } catch (err) {
284
+ // TODO (fix): This might be a bad idea?
285
+ this.onError(err)
286
+ }
287
+ }
288
+
289
+ onError (error) {
290
+ this.onFinally()
291
+
292
+ if (channels.error.hasSubscribers) {
293
+ channels.error.publish({ request: this, error })
294
+ }
295
+
296
+ if (this.aborted) {
297
+ return
298
+ }
299
+ this.aborted = true
300
+
301
+ return this[kHandler].onError(error)
302
+ }
303
+
304
+ onFinally () {
305
+ if (this.errorHandler) {
306
+ this.body.off('error', this.errorHandler)
307
+ this.errorHandler = null
308
+ }
309
+
310
+ if (this.endHandler) {
311
+ this.body.off('end', this.endHandler)
312
+ this.endHandler = null
313
+ }
314
+ }
315
+
316
+ addHeader (key, value) {
317
+ processHeader(this, key, value)
318
+ return this
319
+ }
320
+ }
321
+
322
+ function processHeader (request, key, val) {
323
+ if (val && (typeof val === 'object' && !Array.isArray(val))) {
324
+ throw new InvalidArgumentError(`invalid ${key} header`)
325
+ } else if (val === undefined) {
326
+ return
327
+ }
328
+
329
+ let headerName = headerNameLowerCasedRecord[key]
330
+
331
+ if (headerName === undefined) {
332
+ headerName = key.toLowerCase()
333
+ if (headerNameLowerCasedRecord[headerName] === undefined && !isValidHTTPToken(headerName)) {
334
+ throw new InvalidArgumentError('invalid header key')
335
+ }
336
+ }
337
+
338
+ if (Array.isArray(val)) {
339
+ const arr = []
340
+ for (let i = 0; i < val.length; i++) {
341
+ if (typeof val[i] === 'string') {
342
+ if (!isValidHeaderValue(val[i])) {
343
+ throw new InvalidArgumentError(`invalid ${key} header`)
344
+ }
345
+ arr.push(val[i])
346
+ } else if (val[i] === null) {
347
+ arr.push('')
348
+ } else if (typeof val[i] === 'object') {
349
+ throw new InvalidArgumentError(`invalid ${key} header`)
350
+ } else {
351
+ arr.push(`${val[i]}`)
352
+ }
353
+ }
354
+ val = arr
355
+ } else if (typeof val === 'string') {
356
+ if (!isValidHeaderValue(val)) {
357
+ throw new InvalidArgumentError(`invalid ${key} header`)
358
+ }
359
+ } else if (val === null) {
360
+ val = ''
361
+ } else {
362
+ val = `${val}`
363
+ }
364
+
365
+ if (request.host === null && headerName === 'host') {
366
+ if (typeof val !== 'string') {
367
+ throw new InvalidArgumentError('invalid host header')
368
+ }
369
+ // Consumed by Client
370
+ request.host = val
371
+ } else if (request.contentLength === null && headerName === 'content-length') {
372
+ request.contentLength = parseInt(val, 10)
373
+ if (!Number.isFinite(request.contentLength)) {
374
+ throw new InvalidArgumentError('invalid content-length header')
375
+ }
376
+ } else if (request.contentType === null && headerName === 'content-type') {
377
+ request.contentType = val
378
+ request.headers.push(key, val)
379
+ } else if (headerName === 'transfer-encoding' || headerName === 'keep-alive' || headerName === 'upgrade') {
380
+ throw new InvalidArgumentError(`invalid ${headerName} header`)
381
+ } else if (headerName === 'connection') {
382
+ const value = typeof val === 'string' ? val.toLowerCase() : null
383
+ if (value !== 'close' && value !== 'keep-alive') {
384
+ throw new InvalidArgumentError('invalid connection header')
385
+ }
386
+
387
+ if (value === 'close') {
388
+ request.reset = true
389
+ }
390
+ } else if (headerName === 'expect') {
391
+ throw new NotSupportedError('expect header not supported')
392
+ } else {
393
+ request.headers.push(key, val)
394
+ }
395
+ }
396
+
397
+ module.exports = Request
@@ -0,0 +1,68 @@
1
+ 'use strict'
2
+
3
+ module.exports = {
4
+ kClose: Symbol('close'),
5
+ kDestroy: Symbol('destroy'),
6
+ kDispatch: Symbol('dispatch'),
7
+ kUrl: Symbol('url'),
8
+ kWriting: Symbol('writing'),
9
+ kResuming: Symbol('resuming'),
10
+ kQueue: Symbol('queue'),
11
+ kConnect: Symbol('connect'),
12
+ kConnecting: Symbol('connecting'),
13
+ kKeepAliveDefaultTimeout: Symbol('default keep alive timeout'),
14
+ kKeepAliveMaxTimeout: Symbol('max keep alive timeout'),
15
+ kKeepAliveTimeoutThreshold: Symbol('keep alive timeout threshold'),
16
+ kKeepAliveTimeoutValue: Symbol('keep alive timeout'),
17
+ kKeepAlive: Symbol('keep alive'),
18
+ kHeadersTimeout: Symbol('headers timeout'),
19
+ kBodyTimeout: Symbol('body timeout'),
20
+ kServerName: Symbol('server name'),
21
+ kLocalAddress: Symbol('local address'),
22
+ kHost: Symbol('host'),
23
+ kNoRef: Symbol('no ref'),
24
+ kBodyUsed: Symbol('used'),
25
+ kBody: Symbol('abstracted request body'),
26
+ kRunning: Symbol('running'),
27
+ kBlocking: Symbol('blocking'),
28
+ kPending: Symbol('pending'),
29
+ kSize: Symbol('size'),
30
+ kBusy: Symbol('busy'),
31
+ kQueued: Symbol('queued'),
32
+ kFree: Symbol('free'),
33
+ kConnected: Symbol('connected'),
34
+ kClosed: Symbol('closed'),
35
+ kNeedDrain: Symbol('need drain'),
36
+ kReset: Symbol('reset'),
37
+ kDestroyed: Symbol.for('nodejs.stream.destroyed'),
38
+ kResume: Symbol('resume'),
39
+ kOnError: Symbol('on error'),
40
+ kMaxHeadersSize: Symbol('max headers size'),
41
+ kRunningIdx: Symbol('running index'),
42
+ kPendingIdx: Symbol('pending index'),
43
+ kError: Symbol('error'),
44
+ kClients: Symbol('clients'),
45
+ kClient: Symbol('client'),
46
+ kParser: Symbol('parser'),
47
+ kOnDestroyed: Symbol('destroy callbacks'),
48
+ kPipelining: Symbol('pipelining'),
49
+ kSocket: Symbol('socket'),
50
+ kHostHeader: Symbol('host header'),
51
+ kConnector: Symbol('connector'),
52
+ kStrictContentLength: Symbol('strict content length'),
53
+ kMaxRedirections: Symbol('maxRedirections'),
54
+ kMaxRequests: Symbol('maxRequestsPerClient'),
55
+ kProxy: Symbol('proxy agent options'),
56
+ kCounter: Symbol('socket request counter'),
57
+ kMaxResponseSize: Symbol('max response size'),
58
+ kHTTP2Session: Symbol('http2Session'),
59
+ kHTTP2SessionState: Symbol('http2Session state'),
60
+ kRetryHandlerDefaultRetry: Symbol('retry agent default retry'),
61
+ kConstruct: Symbol('constructable'),
62
+ kListeners: Symbol('listeners'),
63
+ kHTTPContext: Symbol('http context'),
64
+ kMaxConcurrentStreams: Symbol('max concurrent streams'),
65
+ kNoProxyAgent: Symbol('no proxy agent'),
66
+ kHttpProxyAgent: Symbol('http proxy agent'),
67
+ kHttpsProxyAgent: Symbol('https proxy agent')
68
+ }