@pnpm/exe 11.0.5 → 11.0.7

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 (381) hide show
  1. package/dist/node-gyp-bin/node-gyp +0 -0
  2. package/dist/node-gyp-bin/node-gyp.cmd +0 -0
  3. package/dist/node_modules/node-gyp/.release-please-manifest.json +1 -1
  4. package/dist/node_modules/node-gyp/bin/node-gyp.js +0 -0
  5. package/dist/node_modules/node-gyp/gyp/.release-please-manifest.json +1 -1
  6. package/dist/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py +11 -3
  7. package/dist/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +2 -3
  8. package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +1 -1
  9. package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +2 -1
  10. package/dist/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py +26 -16
  11. package/dist/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py +1 -1
  12. package/dist/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +1 -1
  13. package/dist/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py +2 -2
  14. package/dist/node_modules/node-gyp/gyp/pylib/packaging/metadata.py +3 -20
  15. package/dist/node_modules/node-gyp/gyp/pylib/packaging/tags.py +2 -14
  16. package/dist/node_modules/node-gyp/gyp/pyproject.toml +5 -3
  17. package/dist/node_modules/node-gyp/lib/download.js +55 -8
  18. package/dist/node_modules/node-gyp/lib/find-visualstudio.js +1 -1
  19. package/dist/node_modules/node-gyp/lib/process-release.js +17 -19
  20. package/dist/node_modules/node-gyp/package.json +3 -3
  21. package/dist/node_modules/{safer-buffer → undici}/LICENSE +1 -1
  22. package/dist/node_modules/undici/index-fetch.js +35 -0
  23. package/dist/node_modules/undici/index.js +169 -0
  24. package/dist/node_modules/undici/lib/api/abort-signal.js +57 -0
  25. package/dist/node_modules/undici/lib/api/api-connect.js +108 -0
  26. package/dist/node_modules/undici/lib/api/api-pipeline.js +251 -0
  27. package/dist/node_modules/undici/lib/api/api-request.js +214 -0
  28. package/dist/node_modules/undici/lib/api/api-stream.js +220 -0
  29. package/dist/node_modules/undici/lib/api/api-upgrade.js +108 -0
  30. package/dist/node_modules/undici/lib/api/index.js +7 -0
  31. package/dist/node_modules/undici/lib/api/readable.js +385 -0
  32. package/dist/node_modules/undici/lib/api/util.js +93 -0
  33. package/dist/node_modules/undici/lib/core/connect.js +240 -0
  34. package/dist/node_modules/undici/lib/core/constants.js +118 -0
  35. package/dist/node_modules/undici/lib/core/diagnostics.js +202 -0
  36. package/dist/node_modules/undici/lib/core/errors.js +425 -0
  37. package/dist/node_modules/undici/lib/core/request.js +405 -0
  38. package/dist/node_modules/undici/lib/core/symbols.js +67 -0
  39. package/dist/node_modules/undici/lib/core/tree.js +152 -0
  40. package/dist/node_modules/undici/lib/core/util.js +719 -0
  41. package/dist/node_modules/undici/lib/dispatcher/agent.js +130 -0
  42. package/dist/node_modules/undici/lib/dispatcher/balanced-pool.js +209 -0
  43. package/dist/node_modules/undici/lib/dispatcher/client-h1.js +1370 -0
  44. package/dist/node_modules/undici/lib/dispatcher/client-h2.js +744 -0
  45. package/dist/node_modules/undici/lib/dispatcher/client.js +623 -0
  46. package/dist/node_modules/undici/lib/dispatcher/dispatcher-base.js +198 -0
  47. package/dist/node_modules/undici/lib/dispatcher/dispatcher.js +65 -0
  48. package/dist/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +160 -0
  49. package/dist/node_modules/undici/lib/dispatcher/fixed-queue.js +117 -0
  50. package/dist/node_modules/undici/lib/dispatcher/pool-base.js +194 -0
  51. package/dist/node_modules/undici/lib/dispatcher/pool-stats.js +34 -0
  52. package/dist/node_modules/undici/lib/dispatcher/pool.js +107 -0
  53. package/dist/node_modules/undici/lib/dispatcher/proxy-agent.js +274 -0
  54. package/dist/node_modules/undici/lib/dispatcher/retry-agent.js +35 -0
  55. package/dist/node_modules/undici/lib/global.js +32 -0
  56. package/dist/node_modules/undici/lib/handler/decorator-handler.js +44 -0
  57. package/dist/node_modules/undici/lib/handler/redirect-handler.js +232 -0
  58. package/dist/node_modules/undici/lib/handler/retry-handler.js +374 -0
  59. package/dist/node_modules/undici/lib/interceptor/dns.js +375 -0
  60. package/dist/node_modules/undici/lib/interceptor/dump.js +123 -0
  61. package/dist/node_modules/undici/lib/interceptor/redirect-interceptor.js +21 -0
  62. package/dist/node_modules/undici/lib/interceptor/redirect.js +24 -0
  63. package/dist/node_modules/undici/lib/interceptor/response-error.js +86 -0
  64. package/dist/node_modules/undici/lib/interceptor/retry.js +19 -0
  65. package/dist/node_modules/undici/lib/llhttp/.gitkeep +0 -0
  66. package/dist/node_modules/undici/lib/llhttp/constants.js +278 -0
  67. package/dist/node_modules/undici/lib/llhttp/llhttp-wasm.js +5 -0
  68. package/dist/node_modules/undici/lib/llhttp/llhttp_simd-wasm.js +5 -0
  69. package/dist/node_modules/undici/lib/llhttp/utils.js +15 -0
  70. package/dist/node_modules/undici/lib/mock/mock-agent.js +160 -0
  71. package/dist/node_modules/undici/lib/mock/mock-client.js +59 -0
  72. package/dist/node_modules/undici/lib/mock/mock-errors.js +28 -0
  73. package/dist/node_modules/undici/lib/mock/mock-interceptor.js +207 -0
  74. package/dist/node_modules/undici/lib/mock/mock-pool.js +59 -0
  75. package/dist/node_modules/undici/lib/mock/mock-symbols.js +23 -0
  76. package/dist/node_modules/undici/lib/mock/mock-utils.js +367 -0
  77. package/dist/node_modules/undici/lib/mock/pending-interceptors-formatter.js +43 -0
  78. package/dist/node_modules/undici/lib/mock/pluralizer.js +29 -0
  79. package/dist/node_modules/undici/lib/util/timers.js +423 -0
  80. package/dist/node_modules/undici/lib/web/cache/cache.js +859 -0
  81. package/dist/node_modules/undici/lib/web/cache/cachestorage.js +152 -0
  82. package/dist/node_modules/undici/lib/web/cache/symbols.js +5 -0
  83. package/dist/node_modules/undici/lib/web/cache/util.js +45 -0
  84. package/dist/node_modules/undici/lib/web/cookies/constants.js +12 -0
  85. package/dist/node_modules/undici/lib/web/cookies/index.js +184 -0
  86. package/dist/node_modules/undici/lib/web/cookies/parse.js +317 -0
  87. package/dist/node_modules/undici/lib/web/cookies/util.js +282 -0
  88. package/dist/node_modules/undici/lib/web/eventsource/eventsource-stream.js +398 -0
  89. package/dist/node_modules/undici/lib/web/eventsource/eventsource.js +480 -0
  90. package/dist/node_modules/undici/lib/web/eventsource/util.js +37 -0
  91. package/dist/node_modules/{@npmcli/redact → undici/lib/web/fetch}/LICENSE +1 -1
  92. package/dist/node_modules/undici/lib/web/fetch/body.js +529 -0
  93. package/dist/node_modules/undici/lib/web/fetch/constants.js +124 -0
  94. package/dist/node_modules/undici/lib/web/fetch/data-url.js +744 -0
  95. package/dist/node_modules/undici/lib/web/fetch/dispatcher-weakref.js +46 -0
  96. package/dist/node_modules/undici/lib/web/fetch/file.js +126 -0
  97. package/dist/node_modules/undici/lib/web/fetch/formdata-parser.js +474 -0
  98. package/dist/node_modules/undici/lib/web/fetch/formdata.js +252 -0
  99. package/dist/node_modules/undici/lib/web/fetch/global.js +40 -0
  100. package/dist/node_modules/undici/lib/web/fetch/headers.js +687 -0
  101. package/dist/node_modules/undici/lib/web/fetch/index.js +2272 -0
  102. package/dist/node_modules/undici/lib/web/fetch/request.js +1037 -0
  103. package/dist/node_modules/undici/lib/web/fetch/response.js +610 -0
  104. package/dist/node_modules/undici/lib/web/fetch/symbols.js +9 -0
  105. package/dist/node_modules/undici/lib/web/fetch/util.js +1632 -0
  106. package/dist/node_modules/undici/lib/web/fetch/webidl.js +695 -0
  107. package/dist/node_modules/undici/lib/web/fileapi/encoding.js +290 -0
  108. package/dist/node_modules/undici/lib/web/fileapi/filereader.js +344 -0
  109. package/dist/node_modules/undici/lib/web/fileapi/progressevent.js +78 -0
  110. package/dist/node_modules/undici/lib/web/fileapi/symbols.js +10 -0
  111. package/dist/node_modules/undici/lib/web/fileapi/util.js +391 -0
  112. package/dist/node_modules/undici/lib/web/websocket/connection.js +371 -0
  113. package/dist/node_modules/undici/lib/web/websocket/constants.js +66 -0
  114. package/dist/node_modules/undici/lib/web/websocket/events.js +329 -0
  115. package/dist/node_modules/undici/lib/web/websocket/frame.js +96 -0
  116. package/dist/node_modules/undici/lib/web/websocket/permessage-deflate.js +100 -0
  117. package/dist/node_modules/undici/lib/web/websocket/receiver.js +490 -0
  118. package/dist/node_modules/undici/lib/web/websocket/sender.js +104 -0
  119. package/dist/node_modules/undici/lib/web/websocket/symbols.js +12 -0
  120. package/dist/node_modules/undici/lib/web/websocket/util.js +322 -0
  121. package/dist/node_modules/undici/lib/web/websocket/websocket.js +592 -0
  122. package/dist/node_modules/undici/package.json +160 -0
  123. package/dist/node_modules/undici/scripts/strip-comments.js +8 -0
  124. package/dist/node_modules/yallist/package.json +51 -12
  125. package/dist/pnpm.mjs +5915 -5140
  126. package/dist/worker.js +70 -67
  127. package/package.json +21 -13
  128. package/setup.js +17 -3
  129. package/dist/node_modules/@gar/promise-retry/LICENSE +0 -20
  130. package/dist/node_modules/@gar/promise-retry/lib/index.js +0 -62
  131. package/dist/node_modules/@gar/promise-retry/lib/retry.js +0 -109
  132. package/dist/node_modules/@gar/promise-retry/package.json +0 -45
  133. package/dist/node_modules/@npmcli/agent/lib/agents.js +0 -206
  134. package/dist/node_modules/@npmcli/agent/lib/dns.js +0 -53
  135. package/dist/node_modules/@npmcli/agent/lib/errors.js +0 -61
  136. package/dist/node_modules/@npmcli/agent/lib/index.js +0 -56
  137. package/dist/node_modules/@npmcli/agent/lib/options.js +0 -86
  138. package/dist/node_modules/@npmcli/agent/lib/proxy.js +0 -88
  139. package/dist/node_modules/@npmcli/agent/package.json +0 -60
  140. package/dist/node_modules/@npmcli/fs/lib/common/get-options.js +0 -20
  141. package/dist/node_modules/@npmcli/fs/lib/common/node.js +0 -9
  142. package/dist/node_modules/@npmcli/fs/lib/cp/LICENSE +0 -15
  143. package/dist/node_modules/@npmcli/fs/lib/cp/errors.js +0 -129
  144. package/dist/node_modules/@npmcli/fs/lib/cp/index.js +0 -22
  145. package/dist/node_modules/@npmcli/fs/lib/cp/polyfill.js +0 -428
  146. package/dist/node_modules/@npmcli/fs/lib/index.js +0 -13
  147. package/dist/node_modules/@npmcli/fs/lib/move-file.js +0 -78
  148. package/dist/node_modules/@npmcli/fs/lib/readdir-scoped.js +0 -20
  149. package/dist/node_modules/@npmcli/fs/lib/with-temp-dir.js +0 -39
  150. package/dist/node_modules/@npmcli/fs/package.json +0 -54
  151. package/dist/node_modules/@npmcli/redact/lib/deep-map.js +0 -71
  152. package/dist/node_modules/@npmcli/redact/lib/error.js +0 -28
  153. package/dist/node_modules/@npmcli/redact/lib/index.js +0 -44
  154. package/dist/node_modules/@npmcli/redact/lib/matchers.js +0 -88
  155. package/dist/node_modules/@npmcli/redact/lib/server.js +0 -59
  156. package/dist/node_modules/@npmcli/redact/lib/utils.js +0 -202
  157. package/dist/node_modules/@npmcli/redact/package.json +0 -52
  158. package/dist/node_modules/agent-base/LICENSE +0 -22
  159. package/dist/node_modules/agent-base/dist/helpers.js +0 -66
  160. package/dist/node_modules/agent-base/dist/index.js +0 -178
  161. package/dist/node_modules/agent-base/package.json +0 -46
  162. package/dist/node_modules/balanced-match/dist/commonjs/index.js +0 -59
  163. package/dist/node_modules/balanced-match/dist/esm/index.js +0 -54
  164. package/dist/node_modules/balanced-match/package.json +0 -68
  165. package/dist/node_modules/brace-expansion/LICENSE +0 -23
  166. package/dist/node_modules/brace-expansion/dist/commonjs/index.js +0 -201
  167. package/dist/node_modules/brace-expansion/dist/commonjs/package.json +0 -3
  168. package/dist/node_modules/brace-expansion/dist/esm/index.js +0 -197
  169. package/dist/node_modules/brace-expansion/dist/esm/package.json +0 -3
  170. package/dist/node_modules/brace-expansion/package.json +0 -64
  171. package/dist/node_modules/cacache/lib/content/path.js +0 -29
  172. package/dist/node_modules/cacache/lib/content/read.js +0 -165
  173. package/dist/node_modules/cacache/lib/content/rm.js +0 -18
  174. package/dist/node_modules/cacache/lib/content/write.js +0 -206
  175. package/dist/node_modules/cacache/lib/entry-index.js +0 -336
  176. package/dist/node_modules/cacache/lib/get.js +0 -170
  177. package/dist/node_modules/cacache/lib/index.js +0 -42
  178. package/dist/node_modules/cacache/lib/memoization.js +0 -72
  179. package/dist/node_modules/cacache/lib/put.js +0 -80
  180. package/dist/node_modules/cacache/lib/rm.js +0 -31
  181. package/dist/node_modules/cacache/lib/util/glob.js +0 -7
  182. package/dist/node_modules/cacache/lib/util/hash-to-segments.js +0 -7
  183. package/dist/node_modules/cacache/lib/util/tmp.js +0 -32
  184. package/dist/node_modules/cacache/lib/verify.js +0 -258
  185. package/dist/node_modules/cacache/package.json +0 -81
  186. package/dist/node_modules/debug/LICENSE +0 -20
  187. package/dist/node_modules/debug/package.json +0 -64
  188. package/dist/node_modules/debug/src/browser.js +0 -272
  189. package/dist/node_modules/debug/src/common.js +0 -292
  190. package/dist/node_modules/debug/src/index.js +0 -10
  191. package/dist/node_modules/debug/src/node.js +0 -263
  192. package/dist/node_modules/fs-minipass/LICENSE +0 -15
  193. package/dist/node_modules/fs-minipass/lib/index.js +0 -443
  194. package/dist/node_modules/fs-minipass/package.json +0 -54
  195. package/dist/node_modules/glob/dist/commonjs/glob.js +0 -248
  196. package/dist/node_modules/glob/dist/commonjs/has-magic.js +0 -27
  197. package/dist/node_modules/glob/dist/commonjs/ignore.js +0 -119
  198. package/dist/node_modules/glob/dist/commonjs/index.js +0 -68
  199. package/dist/node_modules/glob/dist/commonjs/index.min.js +0 -4
  200. package/dist/node_modules/glob/dist/commonjs/package.json +0 -3
  201. package/dist/node_modules/glob/dist/commonjs/pattern.js +0 -223
  202. package/dist/node_modules/glob/dist/commonjs/processor.js +0 -301
  203. package/dist/node_modules/glob/dist/commonjs/walker.js +0 -387
  204. package/dist/node_modules/glob/dist/esm/glob.js +0 -244
  205. package/dist/node_modules/glob/dist/esm/has-magic.js +0 -23
  206. package/dist/node_modules/glob/dist/esm/ignore.js +0 -115
  207. package/dist/node_modules/glob/dist/esm/index.js +0 -55
  208. package/dist/node_modules/glob/dist/esm/index.min.js +0 -4
  209. package/dist/node_modules/glob/dist/esm/package.json +0 -3
  210. package/dist/node_modules/glob/dist/esm/pattern.js +0 -219
  211. package/dist/node_modules/glob/dist/esm/processor.js +0 -294
  212. package/dist/node_modules/glob/dist/esm/walker.js +0 -381
  213. package/dist/node_modules/glob/package.json +0 -98
  214. package/dist/node_modules/http-cache-semantics/LICENSE +0 -9
  215. package/dist/node_modules/http-cache-semantics/index.js +0 -928
  216. package/dist/node_modules/http-cache-semantics/package.json +0 -22
  217. package/dist/node_modules/http-proxy-agent/LICENSE +0 -22
  218. package/dist/node_modules/http-proxy-agent/dist/index.js +0 -148
  219. package/dist/node_modules/http-proxy-agent/package.json +0 -47
  220. package/dist/node_modules/https-proxy-agent/LICENSE +0 -22
  221. package/dist/node_modules/https-proxy-agent/dist/index.js +0 -180
  222. package/dist/node_modules/https-proxy-agent/dist/parse-proxy-response.js +0 -101
  223. package/dist/node_modules/https-proxy-agent/package.json +0 -50
  224. package/dist/node_modules/iconv-lite/LICENSE +0 -21
  225. package/dist/node_modules/iconv-lite/encodings/dbcs-codec.js +0 -532
  226. package/dist/node_modules/iconv-lite/encodings/dbcs-data.js +0 -185
  227. package/dist/node_modules/iconv-lite/encodings/index.js +0 -23
  228. package/dist/node_modules/iconv-lite/encodings/internal.js +0 -218
  229. package/dist/node_modules/iconv-lite/encodings/sbcs-codec.js +0 -75
  230. package/dist/node_modules/iconv-lite/encodings/sbcs-data-generated.js +0 -451
  231. package/dist/node_modules/iconv-lite/encodings/sbcs-data.js +0 -178
  232. package/dist/node_modules/iconv-lite/encodings/tables/big5-added.json +0 -122
  233. package/dist/node_modules/iconv-lite/encodings/tables/cp936.json +0 -264
  234. package/dist/node_modules/iconv-lite/encodings/tables/cp949.json +0 -273
  235. package/dist/node_modules/iconv-lite/encodings/tables/cp950.json +0 -177
  236. package/dist/node_modules/iconv-lite/encodings/tables/eucjp.json +0 -182
  237. package/dist/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +0 -1
  238. package/dist/node_modules/iconv-lite/encodings/tables/gbk-added.json +0 -56
  239. package/dist/node_modules/iconv-lite/encodings/tables/shiftjis.json +0 -125
  240. package/dist/node_modules/iconv-lite/encodings/utf16.js +0 -187
  241. package/dist/node_modules/iconv-lite/encodings/utf32.js +0 -307
  242. package/dist/node_modules/iconv-lite/encodings/utf7.js +0 -283
  243. package/dist/node_modules/iconv-lite/lib/bom-handling.js +0 -48
  244. package/dist/node_modules/iconv-lite/lib/helpers/merge-exports.js +0 -13
  245. package/dist/node_modules/iconv-lite/lib/index.js +0 -182
  246. package/dist/node_modules/iconv-lite/lib/streams.js +0 -105
  247. package/dist/node_modules/iconv-lite/package.json +0 -70
  248. package/dist/node_modules/ip-address/LICENSE +0 -19
  249. package/dist/node_modules/ip-address/dist/address-error.js +0 -12
  250. package/dist/node_modules/ip-address/dist/common.js +0 -46
  251. package/dist/node_modules/ip-address/dist/ip-address.js +0 -35
  252. package/dist/node_modules/ip-address/dist/ipv4.js +0 -360
  253. package/dist/node_modules/ip-address/dist/ipv6.js +0 -1003
  254. package/dist/node_modules/ip-address/dist/v4/constants.js +0 -8
  255. package/dist/node_modules/ip-address/dist/v6/constants.js +0 -76
  256. package/dist/node_modules/ip-address/dist/v6/helpers.js +0 -45
  257. package/dist/node_modules/ip-address/dist/v6/regular-expressions.js +0 -95
  258. package/dist/node_modules/ip-address/package.json +0 -78
  259. package/dist/node_modules/lru-cache/dist/commonjs/diagnostics-channel.js +0 -10
  260. package/dist/node_modules/lru-cache/dist/commonjs/index.js +0 -1692
  261. package/dist/node_modules/lru-cache/dist/commonjs/index.min.js +0 -2
  262. package/dist/node_modules/lru-cache/dist/commonjs/package.json +0 -3
  263. package/dist/node_modules/lru-cache/dist/esm/browser/diagnostics-channel.js +0 -4
  264. package/dist/node_modules/lru-cache/dist/esm/browser/index.js +0 -1688
  265. package/dist/node_modules/lru-cache/dist/esm/browser/index.min.js +0 -2
  266. package/dist/node_modules/lru-cache/dist/esm/diagnostics-channel.js +0 -19
  267. package/dist/node_modules/lru-cache/dist/esm/index.js +0 -1688
  268. package/dist/node_modules/lru-cache/dist/esm/index.min.js +0 -2
  269. package/dist/node_modules/lru-cache/dist/esm/node/diagnostics-channel.js +0 -7
  270. package/dist/node_modules/lru-cache/dist/esm/node/index.js +0 -1688
  271. package/dist/node_modules/lru-cache/dist/esm/node/index.min.js +0 -2
  272. package/dist/node_modules/lru-cache/dist/esm/package.json +0 -3
  273. package/dist/node_modules/lru-cache/package.json +0 -126
  274. package/dist/node_modules/make-fetch-happen/LICENSE +0 -16
  275. package/dist/node_modules/make-fetch-happen/lib/cache/entry.js +0 -471
  276. package/dist/node_modules/make-fetch-happen/lib/cache/errors.js +0 -11
  277. package/dist/node_modules/make-fetch-happen/lib/cache/index.js +0 -49
  278. package/dist/node_modules/make-fetch-happen/lib/cache/key.js +0 -17
  279. package/dist/node_modules/make-fetch-happen/lib/cache/policy.js +0 -161
  280. package/dist/node_modules/make-fetch-happen/lib/fetch.js +0 -118
  281. package/dist/node_modules/make-fetch-happen/lib/index.js +0 -41
  282. package/dist/node_modules/make-fetch-happen/lib/options.js +0 -59
  283. package/dist/node_modules/make-fetch-happen/lib/pipeline.js +0 -41
  284. package/dist/node_modules/make-fetch-happen/lib/remote.js +0 -134
  285. package/dist/node_modules/make-fetch-happen/package.json +0 -75
  286. package/dist/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +0 -14
  287. package/dist/node_modules/minimatch/dist/commonjs/ast.js +0 -845
  288. package/dist/node_modules/minimatch/dist/commonjs/brace-expressions.js +0 -150
  289. package/dist/node_modules/minimatch/dist/commonjs/escape.js +0 -30
  290. package/dist/node_modules/minimatch/dist/commonjs/index.js +0 -1127
  291. package/dist/node_modules/minimatch/dist/commonjs/package.json +0 -3
  292. package/dist/node_modules/minimatch/dist/commonjs/unescape.js +0 -38
  293. package/dist/node_modules/minimatch/dist/esm/assert-valid-pattern.js +0 -10
  294. package/dist/node_modules/minimatch/dist/esm/ast.js +0 -841
  295. package/dist/node_modules/minimatch/dist/esm/brace-expressions.js +0 -146
  296. package/dist/node_modules/minimatch/dist/esm/escape.js +0 -26
  297. package/dist/node_modules/minimatch/dist/esm/index.js +0 -1114
  298. package/dist/node_modules/minimatch/dist/esm/package.json +0 -3
  299. package/dist/node_modules/minimatch/dist/esm/unescape.js +0 -34
  300. package/dist/node_modules/minimatch/package.json +0 -73
  301. package/dist/node_modules/minipass-collect/LICENSE +0 -15
  302. package/dist/node_modules/minipass-collect/index.js +0 -71
  303. package/dist/node_modules/minipass-collect/package.json +0 -30
  304. package/dist/node_modules/minipass-fetch/LICENSE +0 -28
  305. package/dist/node_modules/minipass-fetch/lib/abort-error.js +0 -17
  306. package/dist/node_modules/minipass-fetch/lib/blob.js +0 -97
  307. package/dist/node_modules/minipass-fetch/lib/body.js +0 -360
  308. package/dist/node_modules/minipass-fetch/lib/fetch-error.js +0 -32
  309. package/dist/node_modules/minipass-fetch/lib/headers.js +0 -267
  310. package/dist/node_modules/minipass-fetch/lib/index.js +0 -376
  311. package/dist/node_modules/minipass-fetch/lib/request.js +0 -282
  312. package/dist/node_modules/minipass-fetch/lib/response.js +0 -90
  313. package/dist/node_modules/minipass-fetch/package.json +0 -70
  314. package/dist/node_modules/minipass-flush/index.js +0 -39
  315. package/dist/node_modules/minipass-flush/node_modules/minipass/LICENSE +0 -15
  316. package/dist/node_modules/minipass-flush/node_modules/minipass/index.js +0 -649
  317. package/dist/node_modules/minipass-flush/node_modules/minipass/package.json +0 -56
  318. package/dist/node_modules/minipass-flush/package.json +0 -42
  319. package/dist/node_modules/minipass-pipeline/LICENSE +0 -15
  320. package/dist/node_modules/minipass-pipeline/index.js +0 -128
  321. package/dist/node_modules/minipass-pipeline/node_modules/minipass/LICENSE +0 -15
  322. package/dist/node_modules/minipass-pipeline/node_modules/minipass/index.js +0 -649
  323. package/dist/node_modules/minipass-pipeline/node_modules/minipass/package.json +0 -56
  324. package/dist/node_modules/minipass-pipeline/package.json +0 -29
  325. package/dist/node_modules/minipass-sized/LICENSE +0 -15
  326. package/dist/node_modules/minipass-sized/dist/commonjs/index.js +0 -69
  327. package/dist/node_modules/minipass-sized/dist/commonjs/package.json +0 -3
  328. package/dist/node_modules/minipass-sized/dist/esm/index.js +0 -64
  329. package/dist/node_modules/minipass-sized/dist/esm/package.json +0 -3
  330. package/dist/node_modules/minipass-sized/package.json +0 -69
  331. package/dist/node_modules/ms/index.js +0 -162
  332. package/dist/node_modules/ms/package.json +0 -38
  333. package/dist/node_modules/negotiator/LICENSE +0 -24
  334. package/dist/node_modules/negotiator/index.js +0 -83
  335. package/dist/node_modules/negotiator/lib/charset.js +0 -169
  336. package/dist/node_modules/negotiator/lib/encoding.js +0 -205
  337. package/dist/node_modules/negotiator/lib/language.js +0 -179
  338. package/dist/node_modules/negotiator/lib/mediaType.js +0 -294
  339. package/dist/node_modules/negotiator/package.json +0 -43
  340. package/dist/node_modules/p-map/index.js +0 -283
  341. package/dist/node_modules/p-map/license +0 -9
  342. package/dist/node_modules/p-map/package.json +0 -57
  343. package/dist/node_modules/path-scurry/dist/commonjs/index.js +0 -2018
  344. package/dist/node_modules/path-scurry/dist/commonjs/package.json +0 -3
  345. package/dist/node_modules/path-scurry/dist/esm/index.js +0 -1983
  346. package/dist/node_modules/path-scurry/dist/esm/package.json +0 -3
  347. package/dist/node_modules/path-scurry/package.json +0 -72
  348. package/dist/node_modules/safer-buffer/dangerous.js +0 -58
  349. package/dist/node_modules/safer-buffer/package.json +0 -34
  350. package/dist/node_modules/safer-buffer/safer.js +0 -77
  351. package/dist/node_modules/safer-buffer/tests.js +0 -406
  352. package/dist/node_modules/smart-buffer/.prettierrc.yaml +0 -5
  353. package/dist/node_modules/smart-buffer/LICENSE +0 -20
  354. package/dist/node_modules/smart-buffer/build/smartbuffer.js +0 -1233
  355. package/dist/node_modules/smart-buffer/build/utils.js +0 -108
  356. package/dist/node_modules/smart-buffer/package.json +0 -79
  357. package/dist/node_modules/socks/.eslintrc.cjs +0 -11
  358. package/dist/node_modules/socks/.prettierrc.yaml +0 -7
  359. package/dist/node_modules/socks/LICENSE +0 -20
  360. package/dist/node_modules/socks/build/client/socksclient.js +0 -793
  361. package/dist/node_modules/socks/build/common/constants.js +0 -108
  362. package/dist/node_modules/socks/build/common/helpers.js +0 -167
  363. package/dist/node_modules/socks/build/common/receivebuffer.js +0 -43
  364. package/dist/node_modules/socks/build/common/util.js +0 -25
  365. package/dist/node_modules/socks/build/index.js +0 -18
  366. package/dist/node_modules/socks/package.json +0 -58
  367. package/dist/node_modules/socks-proxy-agent/LICENSE +0 -22
  368. package/dist/node_modules/socks-proxy-agent/dist/index.js +0 -195
  369. package/dist/node_modules/socks-proxy-agent/package.json +0 -142
  370. package/dist/node_modules/ssri/lib/index.js +0 -550
  371. package/dist/node_modules/ssri/package.json +0 -66
  372. package/dist/node_modules/tar/node_modules/yallist/dist/commonjs/package.json +0 -3
  373. package/dist/node_modules/tar/node_modules/yallist/dist/esm/package.json +0 -3
  374. package/dist/node_modules/tar/node_modules/yallist/package.json +0 -68
  375. package/dist/node_modules/yallist/LICENSE +0 -15
  376. package/dist/node_modules/yallist/iterator.js +0 -8
  377. package/dist/node_modules/yallist/yallist.js +0 -426
  378. /package/dist/node_modules/{tar/node_modules/yallist → yallist}/dist/commonjs/index.js +0 -0
  379. /package/dist/node_modules/{balanced-match → yallist}/dist/commonjs/package.json +0 -0
  380. /package/dist/node_modules/{tar/node_modules/yallist → yallist}/dist/esm/index.js +0 -0
  381. /package/dist/node_modules/{balanced-match → yallist}/dist/esm/package.json +0 -0
@@ -0,0 +1,744 @@
1
+ 'use strict'
2
+
3
+ const assert = require('node:assert')
4
+ const { pipeline } = require('node:stream')
5
+ const util = require('../core/util.js')
6
+ const {
7
+ RequestContentLengthMismatchError,
8
+ RequestAbortedError,
9
+ SocketError,
10
+ InformationalError
11
+ } = require('../core/errors.js')
12
+ const {
13
+ kUrl,
14
+ kReset,
15
+ kClient,
16
+ kRunning,
17
+ kPending,
18
+ kQueue,
19
+ kPendingIdx,
20
+ kRunningIdx,
21
+ kError,
22
+ kSocket,
23
+ kStrictContentLength,
24
+ kOnError,
25
+ kMaxConcurrentStreams,
26
+ kHTTP2Session,
27
+ kResume,
28
+ kSize,
29
+ kHTTPContext
30
+ } = require('../core/symbols.js')
31
+
32
+ const kOpenStreams = Symbol('open streams')
33
+
34
+ let extractBody
35
+
36
+ // Experimental
37
+ let h2ExperimentalWarned = false
38
+
39
+ /** @type {import('http2')} */
40
+ let http2
41
+ try {
42
+ http2 = require('node:http2')
43
+ } catch {
44
+ // @ts-ignore
45
+ http2 = { constants: {} }
46
+ }
47
+
48
+ const {
49
+ constants: {
50
+ HTTP2_HEADER_AUTHORITY,
51
+ HTTP2_HEADER_METHOD,
52
+ HTTP2_HEADER_PATH,
53
+ HTTP2_HEADER_SCHEME,
54
+ HTTP2_HEADER_CONTENT_LENGTH,
55
+ HTTP2_HEADER_EXPECT,
56
+ HTTP2_HEADER_STATUS
57
+ }
58
+ } = http2
59
+
60
+ function parseH2Headers (headers) {
61
+ const result = []
62
+
63
+ for (const [name, value] of Object.entries(headers)) {
64
+ // h2 may concat the header value by array
65
+ // e.g. Set-Cookie
66
+ if (Array.isArray(value)) {
67
+ for (const subvalue of value) {
68
+ // we need to provide each header value of header name
69
+ // because the headers handler expect name-value pair
70
+ result.push(Buffer.from(name), Buffer.from(subvalue))
71
+ }
72
+ } else {
73
+ result.push(Buffer.from(name), Buffer.from(value))
74
+ }
75
+ }
76
+
77
+ return result
78
+ }
79
+
80
+ async function connectH2 (client, socket) {
81
+ client[kSocket] = socket
82
+
83
+ if (!h2ExperimentalWarned) {
84
+ h2ExperimentalWarned = true
85
+ process.emitWarning('H2 support is experimental, expect them to change at any time.', {
86
+ code: 'UNDICI-H2'
87
+ })
88
+ }
89
+
90
+ const session = http2.connect(client[kUrl], {
91
+ createConnection: () => socket,
92
+ peerMaxConcurrentStreams: client[kMaxConcurrentStreams]
93
+ })
94
+
95
+ session[kOpenStreams] = 0
96
+ session[kClient] = client
97
+ session[kSocket] = socket
98
+
99
+ util.addListener(session, 'error', onHttp2SessionError)
100
+ util.addListener(session, 'frameError', onHttp2FrameError)
101
+ util.addListener(session, 'end', onHttp2SessionEnd)
102
+ util.addListener(session, 'goaway', onHTTP2GoAway)
103
+ util.addListener(session, 'close', function () {
104
+ const { [kClient]: client } = this
105
+ const { [kSocket]: socket } = client
106
+
107
+ const err = this[kSocket][kError] || this[kError] || new SocketError('closed', util.getSocketInfo(socket))
108
+
109
+ client[kHTTP2Session] = null
110
+
111
+ if (client.destroyed) {
112
+ assert(client[kPending] === 0)
113
+
114
+ // Fail entire queue.
115
+ const requests = client[kQueue].splice(client[kRunningIdx])
116
+ for (let i = 0; i < requests.length; i++) {
117
+ const request = requests[i]
118
+ util.errorRequest(client, request, err)
119
+ }
120
+ }
121
+ })
122
+
123
+ session.unref()
124
+
125
+ client[kHTTP2Session] = session
126
+ socket[kHTTP2Session] = session
127
+
128
+ util.addListener(socket, 'error', function (err) {
129
+ assert(err.code !== 'ERR_TLS_CERT_ALTNAME_INVALID')
130
+
131
+ this[kError] = err
132
+
133
+ this[kClient][kOnError](err)
134
+ })
135
+
136
+ util.addListener(socket, 'end', function () {
137
+ util.destroy(this, new SocketError('other side closed', util.getSocketInfo(this)))
138
+ })
139
+
140
+ util.addListener(socket, 'close', function () {
141
+ const err = this[kError] || new SocketError('closed', util.getSocketInfo(this))
142
+
143
+ client[kSocket] = null
144
+
145
+ if (this[kHTTP2Session] != null) {
146
+ this[kHTTP2Session].destroy(err)
147
+ }
148
+
149
+ client[kPendingIdx] = client[kRunningIdx]
150
+
151
+ assert(client[kRunning] === 0)
152
+
153
+ client.emit('disconnect', client[kUrl], [client], err)
154
+
155
+ client[kResume]()
156
+ })
157
+
158
+ let closed = false
159
+ socket.on('close', () => {
160
+ closed = true
161
+ })
162
+
163
+ return {
164
+ version: 'h2',
165
+ defaultPipelining: Infinity,
166
+ write (...args) {
167
+ return writeH2(client, ...args)
168
+ },
169
+ resume () {
170
+ resumeH2(client)
171
+ },
172
+ destroy (err, callback) {
173
+ if (closed) {
174
+ queueMicrotask(callback)
175
+ } else {
176
+ // Destroying the socket will trigger the session close
177
+ socket.destroy(err).on('close', callback)
178
+ }
179
+ },
180
+ get destroyed () {
181
+ return socket.destroyed
182
+ },
183
+ busy () {
184
+ return false
185
+ }
186
+ }
187
+ }
188
+
189
+ function resumeH2 (client) {
190
+ const socket = client[kSocket]
191
+
192
+ if (socket?.destroyed === false) {
193
+ if (client[kSize] === 0 && client[kMaxConcurrentStreams] === 0) {
194
+ socket.unref()
195
+ client[kHTTP2Session].unref()
196
+ } else {
197
+ socket.ref()
198
+ client[kHTTP2Session].ref()
199
+ }
200
+ }
201
+ }
202
+
203
+ function onHttp2SessionError (err) {
204
+ assert(err.code !== 'ERR_TLS_CERT_ALTNAME_INVALID')
205
+
206
+ this[kSocket][kError] = err
207
+ this[kClient][kOnError](err)
208
+ }
209
+
210
+ function onHttp2FrameError (type, code, id) {
211
+ if (id === 0) {
212
+ const err = new InformationalError(`HTTP/2: "frameError" received - type ${type}, code ${code}`)
213
+ this[kSocket][kError] = err
214
+ this[kClient][kOnError](err)
215
+ }
216
+ }
217
+
218
+ function onHttp2SessionEnd () {
219
+ const err = new SocketError('other side closed', util.getSocketInfo(this[kSocket]))
220
+ this.destroy(err)
221
+ util.destroy(this[kSocket], err)
222
+ }
223
+
224
+ /**
225
+ * This is the root cause of #3011
226
+ * We need to handle GOAWAY frames properly, and trigger the session close
227
+ * along with the socket right away
228
+ */
229
+ function onHTTP2GoAway (code) {
230
+ // We cannot recover, so best to close the session and the socket
231
+ const err = this[kError] || new SocketError(`HTTP/2: "GOAWAY" frame received with code ${code}`, util.getSocketInfo(this))
232
+ const client = this[kClient]
233
+
234
+ client[kSocket] = null
235
+ client[kHTTPContext] = null
236
+
237
+ if (this[kHTTP2Session] != null) {
238
+ this[kHTTP2Session].destroy(err)
239
+ this[kHTTP2Session] = null
240
+ }
241
+
242
+ util.destroy(this[kSocket], err)
243
+
244
+ // Fail head of pipeline.
245
+ if (client[kRunningIdx] < client[kQueue].length) {
246
+ const request = client[kQueue][client[kRunningIdx]]
247
+ client[kQueue][client[kRunningIdx]++] = null
248
+ util.errorRequest(client, request, err)
249
+ client[kPendingIdx] = client[kRunningIdx]
250
+ }
251
+
252
+ assert(client[kRunning] === 0)
253
+
254
+ client.emit('disconnect', client[kUrl], [client], err)
255
+
256
+ client[kResume]()
257
+ }
258
+
259
+ // https://www.rfc-editor.org/rfc/rfc7230#section-3.3.2
260
+ function shouldSendContentLength (method) {
261
+ return method !== 'GET' && method !== 'HEAD' && method !== 'OPTIONS' && method !== 'TRACE' && method !== 'CONNECT'
262
+ }
263
+
264
+ function writeH2 (client, request) {
265
+ const session = client[kHTTP2Session]
266
+ const { method, path, host, upgrade, expectContinue, signal, headers: reqHeaders } = request
267
+ let { body } = request
268
+
269
+ if (upgrade) {
270
+ util.errorRequest(client, request, new Error('Upgrade not supported for H2'))
271
+ return false
272
+ }
273
+
274
+ const headers = {}
275
+ for (let n = 0; n < reqHeaders.length; n += 2) {
276
+ const key = reqHeaders[n + 0]
277
+ const val = reqHeaders[n + 1]
278
+
279
+ if (Array.isArray(val)) {
280
+ for (let i = 0; i < val.length; i++) {
281
+ if (headers[key]) {
282
+ headers[key] += `,${val[i]}`
283
+ } else {
284
+ headers[key] = val[i]
285
+ }
286
+ }
287
+ } else {
288
+ headers[key] = val
289
+ }
290
+ }
291
+
292
+ /** @type {import('node:http2').ClientHttp2Stream} */
293
+ let stream
294
+
295
+ const { hostname, port } = client[kUrl]
296
+
297
+ headers[HTTP2_HEADER_AUTHORITY] = host || `${hostname}${port ? `:${port}` : ''}`
298
+ headers[HTTP2_HEADER_METHOD] = method
299
+
300
+ const abort = (err) => {
301
+ if (request.aborted || request.completed) {
302
+ return
303
+ }
304
+
305
+ err = err || new RequestAbortedError()
306
+
307
+ util.errorRequest(client, request, err)
308
+
309
+ if (stream != null) {
310
+ util.destroy(stream, err)
311
+ }
312
+
313
+ // We do not destroy the socket as we can continue using the session
314
+ // the stream get's destroyed and the session remains to create new streams
315
+ util.destroy(body, err)
316
+ client[kQueue][client[kRunningIdx]++] = null
317
+ client[kResume]()
318
+ }
319
+
320
+ try {
321
+ // We are already connected, streams are pending.
322
+ // We can call on connect, and wait for abort
323
+ request.onConnect(abort)
324
+ } catch (err) {
325
+ util.errorRequest(client, request, err)
326
+ }
327
+
328
+ if (request.aborted) {
329
+ return false
330
+ }
331
+
332
+ if (method === 'CONNECT') {
333
+ session.ref()
334
+ // We are already connected, streams are pending, first request
335
+ // will create a new stream. We trigger a request to create the stream and wait until
336
+ // `ready` event is triggered
337
+ // We disabled endStream to allow the user to write to the stream
338
+ stream = session.request(headers, { endStream: false, signal })
339
+
340
+ if (stream.id && !stream.pending) {
341
+ request.onUpgrade(null, null, stream)
342
+ ++session[kOpenStreams]
343
+ client[kQueue][client[kRunningIdx]++] = null
344
+ } else {
345
+ stream.once('ready', () => {
346
+ request.onUpgrade(null, null, stream)
347
+ ++session[kOpenStreams]
348
+ client[kQueue][client[kRunningIdx]++] = null
349
+ })
350
+ }
351
+
352
+ stream.once('close', () => {
353
+ session[kOpenStreams] -= 1
354
+ if (session[kOpenStreams] === 0) session.unref()
355
+ })
356
+
357
+ return true
358
+ }
359
+
360
+ // https://tools.ietf.org/html/rfc7540#section-8.3
361
+ // :path and :scheme headers must be omitted when sending CONNECT
362
+
363
+ headers[HTTP2_HEADER_PATH] = path
364
+ headers[HTTP2_HEADER_SCHEME] = 'https'
365
+
366
+ // https://tools.ietf.org/html/rfc7231#section-4.3.1
367
+ // https://tools.ietf.org/html/rfc7231#section-4.3.2
368
+ // https://tools.ietf.org/html/rfc7231#section-4.3.5
369
+
370
+ // Sending a payload body on a request that does not
371
+ // expect it can cause undefined behavior on some
372
+ // servers and corrupt connection state. Do not
373
+ // re-use the connection for further requests.
374
+
375
+ const expectsPayload = (
376
+ method === 'PUT' ||
377
+ method === 'POST' ||
378
+ method === 'PATCH'
379
+ )
380
+
381
+ if (body && typeof body.read === 'function') {
382
+ // Try to read EOF in order to get length.
383
+ body.read(0)
384
+ }
385
+
386
+ let contentLength = util.bodyLength(body)
387
+
388
+ if (util.isFormDataLike(body)) {
389
+ extractBody ??= require('../web/fetch/body.js').extractBody
390
+
391
+ const [bodyStream, contentType] = extractBody(body)
392
+ headers['content-type'] = contentType
393
+
394
+ body = bodyStream.stream
395
+ contentLength = bodyStream.length
396
+ }
397
+
398
+ if (contentLength == null) {
399
+ contentLength = request.contentLength
400
+ }
401
+
402
+ if (contentLength === 0 || !expectsPayload) {
403
+ // https://tools.ietf.org/html/rfc7230#section-3.3.2
404
+ // A user agent SHOULD NOT send a Content-Length header field when
405
+ // the request message does not contain a payload body and the method
406
+ // semantics do not anticipate such a body.
407
+
408
+ contentLength = null
409
+ }
410
+
411
+ // https://github.com/nodejs/undici/issues/2046
412
+ // A user agent may send a Content-Length header with 0 value, this should be allowed.
413
+ if (shouldSendContentLength(method) && contentLength > 0 && request.contentLength != null && request.contentLength !== contentLength) {
414
+ if (client[kStrictContentLength]) {
415
+ util.errorRequest(client, request, new RequestContentLengthMismatchError())
416
+ return false
417
+ }
418
+
419
+ process.emitWarning(new RequestContentLengthMismatchError())
420
+ }
421
+
422
+ if (contentLength != null) {
423
+ assert(body, 'no body must not have content length')
424
+ headers[HTTP2_HEADER_CONTENT_LENGTH] = `${contentLength}`
425
+ }
426
+
427
+ session.ref()
428
+
429
+ const shouldEndStream = method === 'GET' || method === 'HEAD' || body === null
430
+ if (expectContinue) {
431
+ headers[HTTP2_HEADER_EXPECT] = '100-continue'
432
+ stream = session.request(headers, { endStream: shouldEndStream, signal })
433
+
434
+ stream.once('continue', writeBodyH2)
435
+ } else {
436
+ stream = session.request(headers, {
437
+ endStream: shouldEndStream,
438
+ signal
439
+ })
440
+ writeBodyH2()
441
+ }
442
+
443
+ // Increment counter as we have new streams open
444
+ ++session[kOpenStreams]
445
+
446
+ stream.once('response', headers => {
447
+ const { [HTTP2_HEADER_STATUS]: statusCode, ...realHeaders } = headers
448
+ request.onResponseStarted()
449
+
450
+ // Due to the stream nature, it is possible we face a race condition
451
+ // where the stream has been assigned, but the request has been aborted
452
+ // the request remains in-flight and headers hasn't been received yet
453
+ // for those scenarios, best effort is to destroy the stream immediately
454
+ // as there's no value to keep it open.
455
+ if (request.aborted) {
456
+ const err = new RequestAbortedError()
457
+ util.errorRequest(client, request, err)
458
+ util.destroy(stream, err)
459
+ return
460
+ }
461
+
462
+ if (request.onHeaders(Number(statusCode), parseH2Headers(realHeaders), stream.resume.bind(stream), '') === false) {
463
+ stream.pause()
464
+ }
465
+
466
+ stream.on('data', (chunk) => {
467
+ if (request.onData(chunk) === false) {
468
+ stream.pause()
469
+ }
470
+ })
471
+ })
472
+
473
+ stream.once('end', () => {
474
+ // When state is null, it means we haven't consumed body and the stream still do not have
475
+ // a state.
476
+ // Present specially when using pipeline or stream
477
+ if (stream.state?.state == null || stream.state.state < 6) {
478
+ request.onComplete([])
479
+ }
480
+
481
+ if (session[kOpenStreams] === 0) {
482
+ // Stream is closed or half-closed-remote (6), decrement counter and cleanup
483
+ // It does not have sense to continue working with the stream as we do not
484
+ // have yet RST_STREAM support on client-side
485
+
486
+ session.unref()
487
+ }
488
+
489
+ abort(new InformationalError('HTTP/2: stream half-closed (remote)'))
490
+ client[kQueue][client[kRunningIdx]++] = null
491
+ client[kPendingIdx] = client[kRunningIdx]
492
+ client[kResume]()
493
+ })
494
+
495
+ stream.once('close', () => {
496
+ session[kOpenStreams] -= 1
497
+ if (session[kOpenStreams] === 0) {
498
+ session.unref()
499
+ }
500
+ })
501
+
502
+ stream.once('error', function (err) {
503
+ abort(err)
504
+ })
505
+
506
+ stream.once('frameError', (type, code) => {
507
+ abort(new InformationalError(`HTTP/2: "frameError" received - type ${type}, code ${code}`))
508
+ })
509
+
510
+ // stream.on('aborted', () => {
511
+ // // TODO(HTTP/2): Support aborted
512
+ // })
513
+
514
+ // stream.on('timeout', () => {
515
+ // // TODO(HTTP/2): Support timeout
516
+ // })
517
+
518
+ // stream.on('push', headers => {
519
+ // // TODO(HTTP/2): Support push
520
+ // })
521
+
522
+ // stream.on('trailers', headers => {
523
+ // // TODO(HTTP/2): Support trailers
524
+ // })
525
+
526
+ return true
527
+
528
+ function writeBodyH2 () {
529
+ /* istanbul ignore else: assertion */
530
+ if (!body || contentLength === 0) {
531
+ writeBuffer(
532
+ abort,
533
+ stream,
534
+ null,
535
+ client,
536
+ request,
537
+ client[kSocket],
538
+ contentLength,
539
+ expectsPayload
540
+ )
541
+ } else if (util.isBuffer(body)) {
542
+ writeBuffer(
543
+ abort,
544
+ stream,
545
+ body,
546
+ client,
547
+ request,
548
+ client[kSocket],
549
+ contentLength,
550
+ expectsPayload
551
+ )
552
+ } else if (util.isBlobLike(body)) {
553
+ if (typeof body.stream === 'function') {
554
+ writeIterable(
555
+ abort,
556
+ stream,
557
+ body.stream(),
558
+ client,
559
+ request,
560
+ client[kSocket],
561
+ contentLength,
562
+ expectsPayload
563
+ )
564
+ } else {
565
+ writeBlob(
566
+ abort,
567
+ stream,
568
+ body,
569
+ client,
570
+ request,
571
+ client[kSocket],
572
+ contentLength,
573
+ expectsPayload
574
+ )
575
+ }
576
+ } else if (util.isStream(body)) {
577
+ writeStream(
578
+ abort,
579
+ client[kSocket],
580
+ expectsPayload,
581
+ stream,
582
+ body,
583
+ client,
584
+ request,
585
+ contentLength
586
+ )
587
+ } else if (util.isIterable(body)) {
588
+ writeIterable(
589
+ abort,
590
+ stream,
591
+ body,
592
+ client,
593
+ request,
594
+ client[kSocket],
595
+ contentLength,
596
+ expectsPayload
597
+ )
598
+ } else {
599
+ assert(false)
600
+ }
601
+ }
602
+ }
603
+
604
+ function writeBuffer (abort, h2stream, body, client, request, socket, contentLength, expectsPayload) {
605
+ try {
606
+ if (body != null && util.isBuffer(body)) {
607
+ assert(contentLength === body.byteLength, 'buffer body must have content length')
608
+ h2stream.cork()
609
+ h2stream.write(body)
610
+ h2stream.uncork()
611
+ h2stream.end()
612
+
613
+ request.onBodySent(body)
614
+ }
615
+
616
+ if (!expectsPayload) {
617
+ socket[kReset] = true
618
+ }
619
+
620
+ request.onRequestSent()
621
+ client[kResume]()
622
+ } catch (error) {
623
+ abort(error)
624
+ }
625
+ }
626
+
627
+ function writeStream (abort, socket, expectsPayload, h2stream, body, client, request, contentLength) {
628
+ assert(contentLength !== 0 || client[kRunning] === 0, 'stream body cannot be pipelined')
629
+
630
+ // For HTTP/2, is enough to pipe the stream
631
+ const pipe = pipeline(
632
+ body,
633
+ h2stream,
634
+ (err) => {
635
+ if (err) {
636
+ util.destroy(pipe, err)
637
+ abort(err)
638
+ } else {
639
+ util.removeAllListeners(pipe)
640
+ request.onRequestSent()
641
+
642
+ if (!expectsPayload) {
643
+ socket[kReset] = true
644
+ }
645
+
646
+ client[kResume]()
647
+ }
648
+ }
649
+ )
650
+
651
+ util.addListener(pipe, 'data', onPipeData)
652
+
653
+ function onPipeData (chunk) {
654
+ request.onBodySent(chunk)
655
+ }
656
+ }
657
+
658
+ async function writeBlob (abort, h2stream, body, client, request, socket, contentLength, expectsPayload) {
659
+ assert(contentLength === body.size, 'blob body must have content length')
660
+
661
+ try {
662
+ if (contentLength != null && contentLength !== body.size) {
663
+ throw new RequestContentLengthMismatchError()
664
+ }
665
+
666
+ const buffer = Buffer.from(await body.arrayBuffer())
667
+
668
+ h2stream.cork()
669
+ h2stream.write(buffer)
670
+ h2stream.uncork()
671
+ h2stream.end()
672
+
673
+ request.onBodySent(buffer)
674
+ request.onRequestSent()
675
+
676
+ if (!expectsPayload) {
677
+ socket[kReset] = true
678
+ }
679
+
680
+ client[kResume]()
681
+ } catch (err) {
682
+ abort(err)
683
+ }
684
+ }
685
+
686
+ async function writeIterable (abort, h2stream, body, client, request, socket, contentLength, expectsPayload) {
687
+ assert(contentLength !== 0 || client[kRunning] === 0, 'iterator body cannot be pipelined')
688
+
689
+ let callback = null
690
+ function onDrain () {
691
+ if (callback) {
692
+ const cb = callback
693
+ callback = null
694
+ cb()
695
+ }
696
+ }
697
+
698
+ const waitForDrain = () => new Promise((resolve, reject) => {
699
+ assert(callback === null)
700
+
701
+ if (socket[kError]) {
702
+ reject(socket[kError])
703
+ } else {
704
+ callback = resolve
705
+ }
706
+ })
707
+
708
+ h2stream
709
+ .on('close', onDrain)
710
+ .on('drain', onDrain)
711
+
712
+ try {
713
+ // It's up to the user to somehow abort the async iterable.
714
+ for await (const chunk of body) {
715
+ if (socket[kError]) {
716
+ throw socket[kError]
717
+ }
718
+
719
+ const res = h2stream.write(chunk)
720
+ request.onBodySent(chunk)
721
+ if (!res) {
722
+ await waitForDrain()
723
+ }
724
+ }
725
+
726
+ h2stream.end()
727
+
728
+ request.onRequestSent()
729
+
730
+ if (!expectsPayload) {
731
+ socket[kReset] = true
732
+ }
733
+
734
+ client[kResume]()
735
+ } catch (err) {
736
+ abort(err)
737
+ } finally {
738
+ h2stream
739
+ .off('close', onDrain)
740
+ .off('drain', onDrain)
741
+ }
742
+ }
743
+
744
+ module.exports = connectH2