@nocobase/plugin-idp-oauth 2.1.0-alpha.17 → 2.1.0-alpha.19

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 (221) hide show
  1. package/build.config.ts +1 -1
  2. package/dist/externalVersion.js +6 -4
  3. package/dist/node_modules/light-my-request/package.json +1 -1
  4. package/dist/node_modules/undici/LICENSE +21 -0
  5. package/dist/node_modules/undici/README.md +741 -0
  6. package/dist/node_modules/undici/docs/docs/api/Agent.md +84 -0
  7. package/dist/node_modules/undici/docs/docs/api/BalancedPool.md +99 -0
  8. package/dist/node_modules/undici/docs/docs/api/CacheStorage.md +30 -0
  9. package/dist/node_modules/undici/docs/docs/api/CacheStore.md +164 -0
  10. package/dist/node_modules/undici/docs/docs/api/Client.md +285 -0
  11. package/dist/node_modules/undici/docs/docs/api/ClientStats.md +27 -0
  12. package/dist/node_modules/undici/docs/docs/api/Connector.md +115 -0
  13. package/dist/node_modules/undici/docs/docs/api/ContentType.md +57 -0
  14. package/dist/node_modules/undici/docs/docs/api/Cookies.md +101 -0
  15. package/dist/node_modules/undici/docs/docs/api/Debug.md +62 -0
  16. package/dist/node_modules/undici/docs/docs/api/DiagnosticsChannel.md +315 -0
  17. package/dist/node_modules/undici/docs/docs/api/Dispatcher.md +1392 -0
  18. package/dist/node_modules/undici/docs/docs/api/EnvHttpProxyAgent.md +159 -0
  19. package/dist/node_modules/undici/docs/docs/api/Errors.md +49 -0
  20. package/dist/node_modules/undici/docs/docs/api/EventSource.md +45 -0
  21. package/dist/node_modules/undici/docs/docs/api/Fetch.md +60 -0
  22. package/dist/node_modules/undici/docs/docs/api/GlobalInstallation.md +139 -0
  23. package/dist/node_modules/undici/docs/docs/api/H2CClient.md +263 -0
  24. package/dist/node_modules/undici/docs/docs/api/MockAgent.md +603 -0
  25. package/dist/node_modules/undici/docs/docs/api/MockCallHistory.md +197 -0
  26. package/dist/node_modules/undici/docs/docs/api/MockCallHistoryLog.md +43 -0
  27. package/dist/node_modules/undici/docs/docs/api/MockClient.md +81 -0
  28. package/dist/node_modules/undici/docs/docs/api/MockErrors.md +12 -0
  29. package/dist/node_modules/undici/docs/docs/api/MockPool.md +555 -0
  30. package/dist/node_modules/undici/docs/docs/api/Pool.md +84 -0
  31. package/dist/node_modules/undici/docs/docs/api/PoolStats.md +35 -0
  32. package/dist/node_modules/undici/docs/docs/api/ProxyAgent.md +229 -0
  33. package/dist/node_modules/undici/docs/docs/api/RedirectHandler.md +93 -0
  34. package/dist/node_modules/undici/docs/docs/api/RetryAgent.md +50 -0
  35. package/dist/node_modules/undici/docs/docs/api/RetryHandler.md +118 -0
  36. package/dist/node_modules/undici/docs/docs/api/RoundRobinPool.md +145 -0
  37. package/dist/node_modules/undici/docs/docs/api/SnapshotAgent.md +616 -0
  38. package/dist/node_modules/undici/docs/docs/api/Socks5ProxyAgent.md +274 -0
  39. package/dist/node_modules/undici/docs/docs/api/Util.md +25 -0
  40. package/dist/node_modules/undici/docs/docs/api/WebSocket.md +141 -0
  41. package/dist/node_modules/undici/docs/docs/api/api-lifecycle.md +91 -0
  42. package/dist/node_modules/undici/docs/docs/best-practices/client-certificate.md +64 -0
  43. package/dist/node_modules/undici/docs/docs/best-practices/crawling.md +58 -0
  44. package/dist/node_modules/undici/docs/docs/best-practices/mocking-request.md +190 -0
  45. package/dist/node_modules/undici/docs/docs/best-practices/proxy.md +127 -0
  46. package/dist/node_modules/undici/docs/docs/best-practices/undici-vs-builtin-fetch.md +224 -0
  47. package/dist/node_modules/undici/docs/docs/best-practices/writing-tests.md +63 -0
  48. package/dist/node_modules/undici/index-fetch.js +65 -0
  49. package/dist/node_modules/undici/index.d.ts +3 -0
  50. package/dist/node_modules/undici/index.js +234 -0
  51. package/dist/node_modules/undici/lib/api/abort-signal.js +59 -0
  52. package/dist/node_modules/undici/lib/api/api-connect.js +110 -0
  53. package/dist/node_modules/undici/lib/api/api-pipeline.js +252 -0
  54. package/dist/node_modules/undici/lib/api/api-request.js +214 -0
  55. package/dist/node_modules/undici/lib/api/api-stream.js +209 -0
  56. package/dist/node_modules/undici/lib/api/api-upgrade.js +111 -0
  57. package/dist/node_modules/undici/lib/api/index.js +7 -0
  58. package/dist/node_modules/undici/lib/api/readable.js +580 -0
  59. package/dist/node_modules/undici/lib/cache/memory-cache-store.js +234 -0
  60. package/dist/node_modules/undici/lib/cache/sqlite-cache-store.js +461 -0
  61. package/dist/node_modules/undici/lib/core/connect.js +137 -0
  62. package/dist/node_modules/undici/lib/core/constants.js +143 -0
  63. package/dist/node_modules/undici/lib/core/diagnostics.js +227 -0
  64. package/dist/node_modules/undici/lib/core/errors.js +477 -0
  65. package/dist/node_modules/undici/lib/core/request.js +438 -0
  66. package/dist/node_modules/undici/lib/core/socks5-client.js +407 -0
  67. package/dist/node_modules/undici/lib/core/socks5-utils.js +203 -0
  68. package/dist/node_modules/undici/lib/core/symbols.js +75 -0
  69. package/dist/node_modules/undici/lib/core/tree.js +160 -0
  70. package/dist/node_modules/undici/lib/core/util.js +992 -0
  71. package/dist/node_modules/undici/lib/dispatcher/agent.js +158 -0
  72. package/dist/node_modules/undici/lib/dispatcher/balanced-pool.js +219 -0
  73. package/dist/node_modules/undici/lib/dispatcher/client-h1.js +1610 -0
  74. package/dist/node_modules/undici/lib/dispatcher/client-h2.js +995 -0
  75. package/dist/node_modules/undici/lib/dispatcher/client.js +659 -0
  76. package/dist/node_modules/undici/lib/dispatcher/dispatcher-base.js +165 -0
  77. package/dist/node_modules/undici/lib/dispatcher/dispatcher.js +48 -0
  78. package/dist/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +146 -0
  79. package/dist/node_modules/undici/lib/dispatcher/fixed-queue.js +135 -0
  80. package/dist/node_modules/undici/lib/dispatcher/h2c-client.js +51 -0
  81. package/dist/node_modules/undici/lib/dispatcher/pool-base.js +214 -0
  82. package/dist/node_modules/undici/lib/dispatcher/pool.js +118 -0
  83. package/dist/node_modules/undici/lib/dispatcher/proxy-agent.js +318 -0
  84. package/dist/node_modules/undici/lib/dispatcher/retry-agent.js +35 -0
  85. package/dist/node_modules/undici/lib/dispatcher/round-robin-pool.js +137 -0
  86. package/dist/node_modules/undici/lib/dispatcher/socks5-proxy-agent.js +249 -0
  87. package/dist/node_modules/undici/lib/encoding/index.js +33 -0
  88. package/dist/node_modules/undici/lib/global.js +50 -0
  89. package/dist/node_modules/undici/lib/handler/cache-handler.js +578 -0
  90. package/dist/node_modules/undici/lib/handler/cache-revalidation-handler.js +124 -0
  91. package/dist/node_modules/undici/lib/handler/decorator-handler.js +67 -0
  92. package/dist/node_modules/undici/lib/handler/deduplication-handler.js +460 -0
  93. package/dist/node_modules/undici/lib/handler/redirect-handler.js +238 -0
  94. package/dist/node_modules/undici/lib/handler/retry-handler.js +394 -0
  95. package/dist/node_modules/undici/lib/handler/unwrap-handler.js +100 -0
  96. package/dist/node_modules/undici/lib/handler/wrap-handler.js +105 -0
  97. package/dist/node_modules/undici/lib/interceptor/cache.js +495 -0
  98. package/dist/node_modules/undici/lib/interceptor/decompress.js +259 -0
  99. package/dist/node_modules/undici/lib/interceptor/deduplicate.js +117 -0
  100. package/dist/node_modules/undici/lib/interceptor/dns.js +571 -0
  101. package/dist/node_modules/undici/lib/interceptor/dump.js +112 -0
  102. package/dist/node_modules/undici/lib/interceptor/redirect.js +21 -0
  103. package/dist/node_modules/undici/lib/interceptor/response-error.js +95 -0
  104. package/dist/node_modules/undici/lib/interceptor/retry.js +19 -0
  105. package/dist/node_modules/undici/lib/llhttp/.gitkeep +0 -0
  106. package/dist/node_modules/undici/lib/llhttp/constants.d.ts +195 -0
  107. package/dist/node_modules/undici/lib/llhttp/constants.js +531 -0
  108. package/dist/node_modules/undici/lib/llhttp/llhttp-wasm.js +15 -0
  109. package/dist/node_modules/undici/lib/llhttp/llhttp_simd-wasm.js +15 -0
  110. package/dist/node_modules/undici/lib/llhttp/utils.d.ts +2 -0
  111. package/dist/node_modules/undici/lib/llhttp/utils.js +12 -0
  112. package/dist/node_modules/undici/lib/mock/mock-agent.js +232 -0
  113. package/dist/node_modules/undici/lib/mock/mock-call-history.js +248 -0
  114. package/dist/node_modules/undici/lib/mock/mock-client.js +68 -0
  115. package/dist/node_modules/undici/lib/mock/mock-errors.js +29 -0
  116. package/dist/node_modules/undici/lib/mock/mock-interceptor.js +209 -0
  117. package/dist/node_modules/undici/lib/mock/mock-pool.js +68 -0
  118. package/dist/node_modules/undici/lib/mock/mock-symbols.js +32 -0
  119. package/dist/node_modules/undici/lib/mock/mock-utils.js +486 -0
  120. package/dist/node_modules/undici/lib/mock/pending-interceptors-formatter.js +43 -0
  121. package/dist/node_modules/undici/lib/mock/snapshot-agent.js +353 -0
  122. package/dist/node_modules/undici/lib/mock/snapshot-recorder.js +588 -0
  123. package/dist/node_modules/undici/lib/mock/snapshot-utils.js +158 -0
  124. package/dist/node_modules/undici/lib/util/cache.js +407 -0
  125. package/dist/node_modules/undici/lib/util/date.js +653 -0
  126. package/dist/node_modules/undici/lib/util/promise.js +28 -0
  127. package/dist/node_modules/undici/lib/util/runtime-features.js +124 -0
  128. package/dist/node_modules/undici/lib/util/stats.js +32 -0
  129. package/dist/node_modules/undici/lib/util/timers.js +425 -0
  130. package/dist/node_modules/undici/lib/web/cache/cache.js +864 -0
  131. package/dist/node_modules/undici/lib/web/cache/cachestorage.js +152 -0
  132. package/dist/node_modules/undici/lib/web/cache/util.js +45 -0
  133. package/dist/node_modules/undici/lib/web/cookies/constants.js +12 -0
  134. package/dist/node_modules/undici/lib/web/cookies/index.js +199 -0
  135. package/dist/node_modules/undici/lib/web/cookies/parse.js +322 -0
  136. package/dist/node_modules/undici/lib/web/cookies/util.js +282 -0
  137. package/dist/node_modules/undici/lib/web/eventsource/eventsource-stream.js +399 -0
  138. package/dist/node_modules/undici/lib/web/eventsource/eventsource.js +501 -0
  139. package/dist/node_modules/undici/lib/web/eventsource/util.js +29 -0
  140. package/dist/node_modules/undici/lib/web/fetch/LICENSE +21 -0
  141. package/dist/node_modules/undici/lib/web/fetch/body.js +509 -0
  142. package/dist/node_modules/undici/lib/web/fetch/constants.js +131 -0
  143. package/dist/node_modules/undici/lib/web/fetch/data-url.js +596 -0
  144. package/dist/node_modules/undici/lib/web/fetch/formdata-parser.js +575 -0
  145. package/dist/node_modules/undici/lib/web/fetch/formdata.js +259 -0
  146. package/dist/node_modules/undici/lib/web/fetch/global.js +40 -0
  147. package/dist/node_modules/undici/lib/web/fetch/headers.js +719 -0
  148. package/dist/node_modules/undici/lib/web/fetch/index.js +2397 -0
  149. package/dist/node_modules/undici/lib/web/fetch/request.js +1115 -0
  150. package/dist/node_modules/undici/lib/web/fetch/response.js +641 -0
  151. package/dist/node_modules/undici/lib/web/fetch/util.js +1520 -0
  152. package/dist/node_modules/undici/lib/web/infra/index.js +229 -0
  153. package/dist/node_modules/undici/lib/web/subresource-integrity/Readme.md +9 -0
  154. package/dist/node_modules/undici/lib/web/subresource-integrity/subresource-integrity.js +307 -0
  155. package/dist/node_modules/undici/lib/web/webidl/index.js +1006 -0
  156. package/dist/node_modules/undici/lib/web/websocket/connection.js +329 -0
  157. package/dist/node_modules/undici/lib/web/websocket/constants.js +126 -0
  158. package/dist/node_modules/undici/lib/web/websocket/events.js +331 -0
  159. package/dist/node_modules/undici/lib/web/websocket/frame.js +133 -0
  160. package/dist/node_modules/undici/lib/web/websocket/permessage-deflate.js +118 -0
  161. package/dist/node_modules/undici/lib/web/websocket/receiver.js +450 -0
  162. package/dist/node_modules/undici/lib/web/websocket/sender.js +109 -0
  163. package/dist/node_modules/undici/lib/web/websocket/stream/websocketerror.js +104 -0
  164. package/dist/node_modules/undici/lib/web/websocket/stream/websocketstream.js +497 -0
  165. package/dist/node_modules/undici/lib/web/websocket/util.js +347 -0
  166. package/dist/node_modules/undici/lib/web/websocket/websocket.js +751 -0
  167. package/dist/node_modules/undici/package.json +152 -0
  168. package/dist/node_modules/undici/scripts/strip-comments.js +10 -0
  169. package/dist/node_modules/undici/types/README.md +6 -0
  170. package/dist/node_modules/undici/types/agent.d.ts +32 -0
  171. package/dist/node_modules/undici/types/api.d.ts +43 -0
  172. package/dist/node_modules/undici/types/balanced-pool.d.ts +30 -0
  173. package/dist/node_modules/undici/types/cache-interceptor.d.ts +179 -0
  174. package/dist/node_modules/undici/types/cache.d.ts +36 -0
  175. package/dist/node_modules/undici/types/client-stats.d.ts +15 -0
  176. package/dist/node_modules/undici/types/client.d.ts +123 -0
  177. package/dist/node_modules/undici/types/connector.d.ts +36 -0
  178. package/dist/node_modules/undici/types/content-type.d.ts +21 -0
  179. package/dist/node_modules/undici/types/cookies.d.ts +30 -0
  180. package/dist/node_modules/undici/types/diagnostics-channel.d.ts +74 -0
  181. package/dist/node_modules/undici/types/dispatcher.d.ts +273 -0
  182. package/dist/node_modules/undici/types/env-http-proxy-agent.d.ts +22 -0
  183. package/dist/node_modules/undici/types/errors.d.ts +177 -0
  184. package/dist/node_modules/undici/types/eventsource.d.ts +66 -0
  185. package/dist/node_modules/undici/types/fetch.d.ts +231 -0
  186. package/dist/node_modules/undici/types/formdata.d.ts +114 -0
  187. package/dist/node_modules/undici/types/global-dispatcher.d.ts +9 -0
  188. package/dist/node_modules/undici/types/global-origin.d.ts +7 -0
  189. package/dist/node_modules/undici/types/h2c-client.d.ts +73 -0
  190. package/dist/node_modules/undici/types/handlers.d.ts +14 -0
  191. package/dist/node_modules/undici/types/header.d.ts +160 -0
  192. package/dist/node_modules/undici/types/index.d.ts +91 -0
  193. package/dist/node_modules/undici/types/interceptors.d.ts +80 -0
  194. package/dist/node_modules/undici/types/mock-agent.d.ts +68 -0
  195. package/dist/node_modules/undici/types/mock-call-history.d.ts +111 -0
  196. package/dist/node_modules/undici/types/mock-client.d.ts +27 -0
  197. package/dist/node_modules/undici/types/mock-errors.d.ts +12 -0
  198. package/dist/node_modules/undici/types/mock-interceptor.d.ts +94 -0
  199. package/dist/node_modules/undici/types/mock-pool.d.ts +27 -0
  200. package/dist/node_modules/undici/types/patch.d.ts +29 -0
  201. package/dist/node_modules/undici/types/pool-stats.d.ts +19 -0
  202. package/dist/node_modules/undici/types/pool.d.ts +41 -0
  203. package/dist/node_modules/undici/types/proxy-agent.d.ts +29 -0
  204. package/dist/node_modules/undici/types/readable.d.ts +68 -0
  205. package/dist/node_modules/undici/types/retry-agent.d.ts +8 -0
  206. package/dist/node_modules/undici/types/retry-handler.d.ts +125 -0
  207. package/dist/node_modules/undici/types/round-robin-pool.d.ts +41 -0
  208. package/dist/node_modules/undici/types/snapshot-agent.d.ts +109 -0
  209. package/dist/node_modules/undici/types/socks5-proxy-agent.d.ts +25 -0
  210. package/dist/node_modules/undici/types/util.d.ts +18 -0
  211. package/dist/node_modules/undici/types/utility.d.ts +7 -0
  212. package/dist/node_modules/undici/types/webidl.d.ts +347 -0
  213. package/dist/node_modules/undici/types/websocket.d.ts +188 -0
  214. package/dist/server/collections/oidcStates.d.ts +10 -0
  215. package/dist/server/collections/oidcStates.js +96 -0
  216. package/dist/server/db-adapter.d.ts +25 -0
  217. package/dist/server/db-adapter.js +156 -0
  218. package/dist/server/service.js +11 -10
  219. package/package.json +2 -2
  220. package/dist/server/cache-adapter.d.ts +0 -33
  221. package/dist/server/cache-adapter.js +0 -159
@@ -0,0 +1,509 @@
1
+ 'use strict'
2
+
3
+ const util = require('../../core/util')
4
+ const {
5
+ ReadableStreamFrom,
6
+ readableStreamClose,
7
+ fullyReadBody,
8
+ extractMimeType
9
+ } = require('./util')
10
+ const { FormData, setFormDataState } = require('./formdata')
11
+ const { webidl } = require('../webidl')
12
+ const assert = require('node:assert')
13
+ const { isErrored, isDisturbed } = require('node:stream')
14
+ const { isUint8Array } = require('node:util/types')
15
+ const { serializeAMimeType } = require('./data-url')
16
+ const { multipartFormDataParser } = require('./formdata-parser')
17
+ const { createDeferredPromise } = require('../../util/promise')
18
+ const { parseJSONFromBytes } = require('../infra')
19
+ const { utf8DecodeBytes } = require('../../encoding')
20
+ const { runtimeFeatures } = require('../../util/runtime-features.js')
21
+
22
+ const random = runtimeFeatures.has('crypto')
23
+ ? require('node:crypto').randomInt
24
+ : (max) => Math.floor(Math.random() * max)
25
+
26
+ const textEncoder = new TextEncoder()
27
+ function noop () {}
28
+
29
+ const streamRegistry = new FinalizationRegistry((weakRef) => {
30
+ const stream = weakRef.deref()
31
+ if (stream && !stream.locked && !isDisturbed(stream) && !isErrored(stream)) {
32
+ stream.cancel('Response object has been garbage collected').catch(noop)
33
+ }
34
+ })
35
+
36
+ /**
37
+ * Extract a body with type from a byte sequence or BodyInit object
38
+ *
39
+ * @param {import('../../../types').BodyInit} object - The BodyInit object to extract from
40
+ * @param {boolean} [keepalive=false] - If true, indicates that the body
41
+ * @returns {[{stream: ReadableStream, source: any, length: number | null}, string | null]} - Returns a tuple containing the body and its type
42
+ *
43
+ * @see https://fetch.spec.whatwg.org/#concept-bodyinit-extract
44
+ */
45
+ function extractBody (object, keepalive = false) {
46
+ // 1. Let stream be null.
47
+ let stream = null
48
+ let controller = null
49
+
50
+ // 2. If object is a ReadableStream object, then set stream to object.
51
+ if (webidl.is.ReadableStream(object)) {
52
+ stream = object
53
+ } else if (webidl.is.Blob(object)) {
54
+ // 3. Otherwise, if object is a Blob object, set stream to the
55
+ // result of running object’s get stream.
56
+ stream = object.stream()
57
+ } else {
58
+ // 4. Otherwise, set stream to a new ReadableStream object, and set
59
+ // up stream with byte reading support.
60
+ stream = new ReadableStream({
61
+ pull () {},
62
+ start (c) {
63
+ controller = c
64
+ },
65
+ cancel () {},
66
+ type: 'bytes'
67
+ })
68
+ }
69
+
70
+ // 5. Assert: stream is a ReadableStream object.
71
+ assert(webidl.is.ReadableStream(stream))
72
+
73
+ // 6. Let action be null.
74
+ let action = null
75
+
76
+ // 7. Let source be null.
77
+ let source = null
78
+
79
+ // 8. Let length be null.
80
+ let length = null
81
+
82
+ // 9. Let type be null.
83
+ let type = null
84
+
85
+ // 10. Switch on object:
86
+ if (typeof object === 'string') {
87
+ // Set source to the UTF-8 encoding of object.
88
+ // Note: setting source to a Uint8Array here breaks some mocking assumptions.
89
+ source = object
90
+
91
+ // Set type to `text/plain;charset=UTF-8`.
92
+ type = 'text/plain;charset=UTF-8'
93
+ } else if (webidl.is.URLSearchParams(object)) {
94
+ // URLSearchParams
95
+
96
+ // spec says to run application/x-www-form-urlencoded on body.list
97
+ // this is implemented in Node.js as apart of an URLSearchParams instance toString method
98
+ // See: https://github.com/nodejs/node/blob/e46c680bf2b211bbd52cf959ca17ee98c7f657f5/lib/internal/url.js#L490
99
+ // and https://github.com/nodejs/node/blob/e46c680bf2b211bbd52cf959ca17ee98c7f657f5/lib/internal/url.js#L1100
100
+
101
+ // Set source to the result of running the application/x-www-form-urlencoded serializer with object’s list.
102
+ source = object.toString()
103
+
104
+ // Set type to `application/x-www-form-urlencoded;charset=UTF-8`.
105
+ type = 'application/x-www-form-urlencoded;charset=UTF-8'
106
+ } else if (webidl.is.BufferSource(object)) {
107
+ // Set source to a copy of the bytes held by object.
108
+ source = webidl.util.getCopyOfBytesHeldByBufferSource(object)
109
+ } else if (webidl.is.FormData(object)) {
110
+ const boundary = `----formdata-undici-0${`${random(1e11)}`.padStart(11, '0')}`
111
+ const prefix = `--${boundary}\r\nContent-Disposition: form-data`
112
+
113
+ /*! formdata-polyfill. MIT License. Jimmy Wärting <https://jimmy.warting.se/opensource> */
114
+ const formdataEscape = (str) =>
115
+ str.replace(/\n/g, '%0A').replace(/\r/g, '%0D').replace(/"/g, '%22')
116
+ const normalizeLinefeeds = (value) => value.replace(/\r?\n|\r/g, '\r\n')
117
+
118
+ // Set action to this step: run the multipart/form-data
119
+ // encoding algorithm, with object’s entry list and UTF-8.
120
+ // - This ensures that the body is immutable and can't be changed afterwords
121
+ // - That the content-length is calculated in advance.
122
+ // - And that all parts are pre-encoded and ready to be sent.
123
+
124
+ const blobParts = []
125
+ const rn = new Uint8Array([13, 10]) // '\r\n'
126
+ length = 0
127
+ let hasUnknownSizeValue = false
128
+
129
+ for (const [name, value] of object) {
130
+ if (typeof value === 'string') {
131
+ const chunk = textEncoder.encode(prefix +
132
+ `; name="${formdataEscape(normalizeLinefeeds(name))}"` +
133
+ `\r\n\r\n${normalizeLinefeeds(value)}\r\n`)
134
+ blobParts.push(chunk)
135
+ length += chunk.byteLength
136
+ } else {
137
+ const chunk = textEncoder.encode(`${prefix}; name="${formdataEscape(normalizeLinefeeds(name))}"` +
138
+ (value.name ? `; filename="${formdataEscape(value.name)}"` : '') + '\r\n' +
139
+ `Content-Type: ${
140
+ value.type || 'application/octet-stream'
141
+ }\r\n\r\n`)
142
+ blobParts.push(chunk, value, rn)
143
+ if (typeof value.size === 'number') {
144
+ length += chunk.byteLength + value.size + rn.byteLength
145
+ } else {
146
+ hasUnknownSizeValue = true
147
+ }
148
+ }
149
+ }
150
+
151
+ // CRLF is appended to the body to function with legacy servers and match other implementations.
152
+ // https://github.com/curl/curl/blob/3434c6b46e682452973972e8313613dfa58cd690/lib/mime.c#L1029-L1030
153
+ // https://github.com/form-data/form-data/issues/63
154
+ const chunk = textEncoder.encode(`--${boundary}--\r\n`)
155
+ blobParts.push(chunk)
156
+ length += chunk.byteLength
157
+ if (hasUnknownSizeValue) {
158
+ length = null
159
+ }
160
+
161
+ // Set source to object.
162
+ source = object
163
+
164
+ action = async function * () {
165
+ for (const part of blobParts) {
166
+ if (part.stream) {
167
+ yield * part.stream()
168
+ } else {
169
+ yield part
170
+ }
171
+ }
172
+ }
173
+
174
+ // Set type to `multipart/form-data; boundary=`,
175
+ // followed by the multipart/form-data boundary string generated
176
+ // by the multipart/form-data encoding algorithm.
177
+ type = `multipart/form-data; boundary=${boundary}`
178
+ } else if (webidl.is.Blob(object)) {
179
+ // Blob
180
+
181
+ // Set source to object.
182
+ source = object
183
+
184
+ // Set length to object’s size.
185
+ length = object.size
186
+
187
+ // If object’s type attribute is not the empty byte sequence, set
188
+ // type to its value.
189
+ if (object.type) {
190
+ type = object.type
191
+ }
192
+ } else if (typeof object[Symbol.asyncIterator] === 'function') {
193
+ // If keepalive is true, then throw a TypeError.
194
+ if (keepalive) {
195
+ throw new TypeError('keepalive')
196
+ }
197
+
198
+ // If object is disturbed or locked, then throw a TypeError.
199
+ if (util.isDisturbed(object) || object.locked) {
200
+ throw new TypeError(
201
+ 'Response body object should not be disturbed or locked'
202
+ )
203
+ }
204
+
205
+ stream =
206
+ webidl.is.ReadableStream(object) ? object : ReadableStreamFrom(object)
207
+ }
208
+
209
+ // 11. If source is a byte sequence, then set action to a
210
+ // step that returns source and length to source’s length.
211
+ if (typeof source === 'string' || isUint8Array(source)) {
212
+ action = () => {
213
+ length = typeof source === 'string' ? Buffer.byteLength(source) : source.length
214
+ return source
215
+ }
216
+ }
217
+
218
+ // 12. If action is non-null, then run these steps in parallel:
219
+ if (action != null) {
220
+ ;(async () => {
221
+ // 1. Run action.
222
+ const result = action()
223
+
224
+ // 2. Whenever one or more bytes are available and stream is not errored,
225
+ // enqueue the result of creating a Uint8Array from the available bytes into stream.
226
+ const iterator = result?.[Symbol.asyncIterator]?.()
227
+ if (iterator) {
228
+ for await (const bytes of iterator) {
229
+ if (isErrored(stream)) break
230
+ if (bytes.length) {
231
+ controller.enqueue(new Uint8Array(bytes))
232
+ }
233
+ }
234
+ } else if (result?.length && !isErrored(stream)) {
235
+ controller.enqueue(typeof result === 'string' ? textEncoder.encode(result) : new Uint8Array(result))
236
+ }
237
+
238
+ // 3. When running action is done, close stream.
239
+ queueMicrotask(() => readableStreamClose(controller))
240
+ })()
241
+ }
242
+
243
+ // 13. Let body be a body whose stream is stream, source is source,
244
+ // and length is length.
245
+ const body = { stream, source, length }
246
+
247
+ // 14. Return (body, type).
248
+ return [body, type]
249
+ }
250
+
251
+ /**
252
+ * @typedef {object} ExtractBodyResult
253
+ * @property {ReadableStream<Uint8Array<ArrayBuffer>>} stream - The ReadableStream containing the body data
254
+ * @property {any} source - The original source of the body data
255
+ * @property {number | null} length - The length of the body data, or null
256
+ */
257
+
258
+ /**
259
+ * Safely extract a body with type from a byte sequence or BodyInit object.
260
+ *
261
+ * @param {import('../../../types').BodyInit} object - The BodyInit object to extract from
262
+ * @param {boolean} [keepalive=false] - If true, indicates that the body
263
+ * @returns {[ExtractBodyResult, string | null]} - Returns a tuple containing the body and its type
264
+ *
265
+ * @see https://fetch.spec.whatwg.org/#bodyinit-safely-extract
266
+ */
267
+ function safelyExtractBody (object, keepalive = false) {
268
+ // To safely extract a body and a `Content-Type` value from
269
+ // a byte sequence or BodyInit object object, run these steps:
270
+
271
+ // 1. If object is a ReadableStream object, then:
272
+ if (webidl.is.ReadableStream(object)) {
273
+ // Assert: object is neither disturbed nor locked.
274
+ assert(!util.isDisturbed(object), 'The body has already been consumed.')
275
+ assert(!object.locked, 'The stream is locked.')
276
+ }
277
+
278
+ // 2. Return the results of extracting object.
279
+ return extractBody(object, keepalive)
280
+ }
281
+
282
+ function cloneBody (body) {
283
+ // To clone a body body, run these steps:
284
+
285
+ // https://fetch.spec.whatwg.org/#concept-body-clone
286
+
287
+ // 1. Let « out1, out2 » be the result of teeing body’s stream.
288
+ const { 0: out1, 1: out2 } = body.stream.tee()
289
+
290
+ // 2. Set body’s stream to out1.
291
+ body.stream = out1
292
+
293
+ // 3. Return a body whose stream is out2 and other members are copied from body.
294
+ return {
295
+ stream: out2,
296
+ length: body.length,
297
+ source: body.source
298
+ }
299
+ }
300
+
301
+ function bodyMixinMethods (instance, getInternalState) {
302
+ const methods = {
303
+ blob () {
304
+ // The blob() method steps are to return the result of
305
+ // running consume body with this and the following step
306
+ // given a byte sequence bytes: return a Blob whose
307
+ // contents are bytes and whose type attribute is this’s
308
+ // MIME type.
309
+ return consumeBody(this, (bytes) => {
310
+ let mimeType = bodyMimeType(getInternalState(this))
311
+
312
+ if (mimeType === null) {
313
+ mimeType = ''
314
+ } else if (mimeType) {
315
+ mimeType = serializeAMimeType(mimeType)
316
+ }
317
+
318
+ // Return a Blob whose contents are bytes and type attribute
319
+ // is mimeType.
320
+ return new Blob([bytes], { type: mimeType })
321
+ }, instance, getInternalState)
322
+ },
323
+
324
+ arrayBuffer () {
325
+ // The arrayBuffer() method steps are to return the result
326
+ // of running consume body with this and the following step
327
+ // given a byte sequence bytes: return a new ArrayBuffer
328
+ // whose contents are bytes.
329
+ return consumeBody(this, (bytes) => {
330
+ return new Uint8Array(bytes).buffer
331
+ }, instance, getInternalState)
332
+ },
333
+
334
+ text () {
335
+ // The text() method steps are to return the result of running
336
+ // consume body with this and UTF-8 decode.
337
+ return consumeBody(this, utf8DecodeBytes, instance, getInternalState)
338
+ },
339
+
340
+ json () {
341
+ // The json() method steps are to return the result of running
342
+ // consume body with this and parse JSON from bytes.
343
+ return consumeBody(this, parseJSONFromBytes, instance, getInternalState)
344
+ },
345
+
346
+ formData () {
347
+ // The formData() method steps are to return the result of running
348
+ // consume body with this and the following step given a byte sequence bytes:
349
+ return consumeBody(this, (value) => {
350
+ // 1. Let mimeType be the result of get the MIME type with this.
351
+ const mimeType = bodyMimeType(getInternalState(this))
352
+
353
+ // 2. If mimeType is non-null, then switch on mimeType’s essence and run
354
+ // the corresponding steps:
355
+ if (mimeType !== null) {
356
+ switch (mimeType.essence) {
357
+ case 'multipart/form-data': {
358
+ // 1. ... [long step]
359
+ // 2. If that fails for some reason, then throw a TypeError.
360
+ const parsed = multipartFormDataParser(value, mimeType)
361
+
362
+ // 3. Return a new FormData object, appending each entry,
363
+ // resulting from the parsing operation, to its entry list.
364
+ const fd = new FormData()
365
+ setFormDataState(fd, parsed)
366
+
367
+ return fd
368
+ }
369
+ case 'application/x-www-form-urlencoded': {
370
+ // 1. Let entries be the result of parsing bytes.
371
+ const entries = new URLSearchParams(value.toString())
372
+
373
+ // 2. If entries is failure, then throw a TypeError.
374
+
375
+ // 3. Return a new FormData object whose entry list is entries.
376
+ const fd = new FormData()
377
+
378
+ for (const [name, value] of entries) {
379
+ fd.append(name, value)
380
+ }
381
+
382
+ return fd
383
+ }
384
+ }
385
+ }
386
+
387
+ // 3. Throw a TypeError.
388
+ throw new TypeError(
389
+ 'Content-Type was not one of "multipart/form-data" or "application/x-www-form-urlencoded".'
390
+ )
391
+ }, instance, getInternalState)
392
+ },
393
+
394
+ bytes () {
395
+ // The bytes() method steps are to return the result of running consume body
396
+ // with this and the following step given a byte sequence bytes: return the
397
+ // result of creating a Uint8Array from bytes in this’s relevant realm.
398
+ return consumeBody(this, (bytes) => {
399
+ return new Uint8Array(bytes)
400
+ }, instance, getInternalState)
401
+ }
402
+ }
403
+
404
+ return methods
405
+ }
406
+
407
+ function mixinBody (prototype, getInternalState) {
408
+ Object.assign(prototype.prototype, bodyMixinMethods(prototype, getInternalState))
409
+ }
410
+
411
+ /**
412
+ * @see https://fetch.spec.whatwg.org/#concept-body-consume-body
413
+ * @param {any} object internal state
414
+ * @param {(value: unknown) => unknown} convertBytesToJSValue
415
+ * @param {any} instance
416
+ * @param {(target: any) => any} getInternalState
417
+ */
418
+ function consumeBody (object, convertBytesToJSValue, instance, getInternalState) {
419
+ try {
420
+ webidl.brandCheck(object, instance)
421
+ } catch (e) {
422
+ return Promise.reject(e)
423
+ }
424
+
425
+ object = getInternalState(object)
426
+
427
+ // 1. If object is unusable, then return a promise rejected
428
+ // with a TypeError.
429
+ if (bodyUnusable(object)) {
430
+ return Promise.reject(new TypeError('Body is unusable: Body has already been read'))
431
+ }
432
+
433
+ // 2. Let promise be a new promise.
434
+ const promise = createDeferredPromise()
435
+
436
+ // 3. Let errorSteps given error be to reject promise with error.
437
+ const errorSteps = promise.reject
438
+
439
+ // 4. Let successSteps given a byte sequence data be to resolve
440
+ // promise with the result of running convertBytesToJSValue
441
+ // with data. If that threw an exception, then run errorSteps
442
+ // with that exception.
443
+ const successSteps = (data) => {
444
+ try {
445
+ promise.resolve(convertBytesToJSValue(data))
446
+ } catch (e) {
447
+ errorSteps(e)
448
+ }
449
+ }
450
+
451
+ // 5. If object’s body is null, then run successSteps with an
452
+ // empty byte sequence.
453
+ if (object.body == null) {
454
+ successSteps(Buffer.allocUnsafe(0))
455
+ return promise.promise
456
+ }
457
+
458
+ // 6. Otherwise, fully read object’s body given successSteps,
459
+ // errorSteps, and object’s relevant global object.
460
+ fullyReadBody(object.body, successSteps, errorSteps)
461
+
462
+ // 7. Return promise.
463
+ return promise.promise
464
+ }
465
+
466
+ /**
467
+ * @see https://fetch.spec.whatwg.org/#body-unusable
468
+ * @param {any} object internal state
469
+ */
470
+ function bodyUnusable (object) {
471
+ const body = object.body
472
+
473
+ // An object including the Body interface mixin is
474
+ // said to be unusable if its body is non-null and
475
+ // its body’s stream is disturbed or locked.
476
+ return body != null && (body.stream.locked || util.isDisturbed(body.stream))
477
+ }
478
+
479
+ /**
480
+ * @see https://fetch.spec.whatwg.org/#concept-body-mime-type
481
+ * @param {any} requestOrResponse internal state
482
+ */
483
+ function bodyMimeType (requestOrResponse) {
484
+ // 1. Let headers be null.
485
+ // 2. If requestOrResponse is a Request object, then set headers to requestOrResponse’s request’s header list.
486
+ // 3. Otherwise, set headers to requestOrResponse’s response’s header list.
487
+ /** @type {import('./headers').HeadersList} */
488
+ const headers = requestOrResponse.headersList
489
+
490
+ // 4. Let mimeType be the result of extracting a MIME type from headers.
491
+ const mimeType = extractMimeType(headers)
492
+
493
+ // 5. If mimeType is failure, then return null.
494
+ if (mimeType === 'failure') {
495
+ return null
496
+ }
497
+
498
+ // 6. Return mimeType.
499
+ return mimeType
500
+ }
501
+
502
+ module.exports = {
503
+ extractBody,
504
+ safelyExtractBody,
505
+ cloneBody,
506
+ mixinBody,
507
+ streamRegistry,
508
+ bodyUnusable
509
+ }
@@ -0,0 +1,131 @@
1
+ 'use strict'
2
+
3
+ const corsSafeListedMethods = /** @type {const} */ (['GET', 'HEAD', 'POST'])
4
+ const corsSafeListedMethodsSet = new Set(corsSafeListedMethods)
5
+
6
+ const nullBodyStatus = /** @type {const} */ ([101, 204, 205, 304])
7
+
8
+ const redirectStatus = /** @type {const} */ ([301, 302, 303, 307, 308])
9
+ const redirectStatusSet = new Set(redirectStatus)
10
+
11
+ /**
12
+ * @see https://fetch.spec.whatwg.org/#block-bad-port
13
+ */
14
+ const badPorts = /** @type {const} */ ([
15
+ '1', '7', '9', '11', '13', '15', '17', '19', '20', '21', '22', '23', '25', '37', '42', '43', '53', '69', '77', '79',
16
+ '87', '95', '101', '102', '103', '104', '109', '110', '111', '113', '115', '117', '119', '123', '135', '137',
17
+ '139', '143', '161', '179', '389', '427', '465', '512', '513', '514', '515', '526', '530', '531', '532',
18
+ '540', '548', '554', '556', '563', '587', '601', '636', '989', '990', '993', '995', '1719', '1720', '1723',
19
+ '2049', '3659', '4045', '4190', '5060', '5061', '6000', '6566', '6665', '6666', '6667', '6668', '6669', '6679',
20
+ '6697', '10080'
21
+ ])
22
+ const badPortsSet = new Set(badPorts)
23
+
24
+ /**
25
+ * @see https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-header
26
+ */
27
+ const referrerPolicyTokens = /** @type {const} */ ([
28
+ 'no-referrer',
29
+ 'no-referrer-when-downgrade',
30
+ 'same-origin',
31
+ 'origin',
32
+ 'strict-origin',
33
+ 'origin-when-cross-origin',
34
+ 'strict-origin-when-cross-origin',
35
+ 'unsafe-url'
36
+ ])
37
+
38
+ /**
39
+ * @see https://w3c.github.io/webappsec-referrer-policy/#referrer-policies
40
+ */
41
+ const referrerPolicy = /** @type {const} */ ([
42
+ '',
43
+ ...referrerPolicyTokens
44
+ ])
45
+ const referrerPolicyTokensSet = new Set(referrerPolicyTokens)
46
+
47
+ const requestRedirect = /** @type {const} */ (['follow', 'manual', 'error'])
48
+
49
+ const safeMethods = /** @type {const} */ (['GET', 'HEAD', 'OPTIONS', 'TRACE'])
50
+ const safeMethodsSet = new Set(safeMethods)
51
+
52
+ const requestMode = /** @type {const} */ (['navigate', 'same-origin', 'no-cors', 'cors'])
53
+
54
+ const requestCredentials = /** @type {const} */ (['omit', 'same-origin', 'include'])
55
+
56
+ const requestCache = /** @type {const} */ ([
57
+ 'default',
58
+ 'no-store',
59
+ 'reload',
60
+ 'no-cache',
61
+ 'force-cache',
62
+ 'only-if-cached'
63
+ ])
64
+
65
+ /**
66
+ * @see https://fetch.spec.whatwg.org/#request-body-header-name
67
+ */
68
+ const requestBodyHeader = /** @type {const} */ ([
69
+ 'content-encoding',
70
+ 'content-language',
71
+ 'content-location',
72
+ 'content-type',
73
+ // See https://github.com/nodejs/undici/issues/2021
74
+ // 'Content-Length' is a forbidden header name, which is typically
75
+ // removed in the Headers implementation. However, undici doesn't
76
+ // filter out headers, so we add it here.
77
+ 'content-length'
78
+ ])
79
+
80
+ /**
81
+ * @see https://fetch.spec.whatwg.org/#enumdef-requestduplex
82
+ */
83
+ const requestDuplex = /** @type {const} */ ([
84
+ 'half'
85
+ ])
86
+
87
+ /**
88
+ * @see http://fetch.spec.whatwg.org/#forbidden-method
89
+ */
90
+ const forbiddenMethods = /** @type {const} */ (['CONNECT', 'TRACE', 'TRACK'])
91
+ const forbiddenMethodsSet = new Set(forbiddenMethods)
92
+
93
+ const subresource = /** @type {const} */ ([
94
+ 'audio',
95
+ 'audioworklet',
96
+ 'font',
97
+ 'image',
98
+ 'manifest',
99
+ 'paintworklet',
100
+ 'script',
101
+ 'style',
102
+ 'track',
103
+ 'video',
104
+ 'xslt',
105
+ ''
106
+ ])
107
+ const subresourceSet = new Set(subresource)
108
+
109
+ module.exports = {
110
+ subresource,
111
+ forbiddenMethods,
112
+ requestBodyHeader,
113
+ referrerPolicy,
114
+ requestRedirect,
115
+ requestMode,
116
+ requestCredentials,
117
+ requestCache,
118
+ redirectStatus,
119
+ corsSafeListedMethods,
120
+ nullBodyStatus,
121
+ safeMethods,
122
+ badPorts,
123
+ requestDuplex,
124
+ subresourceSet,
125
+ badPortsSet,
126
+ redirectStatusSet,
127
+ corsSafeListedMethodsSet,
128
+ safeMethodsSet,
129
+ forbiddenMethodsSet,
130
+ referrerPolicyTokens: referrerPolicyTokensSet
131
+ }