wrangler 2.0.12 → 2.0.16

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 (149) hide show
  1. package/README.md +7 -1
  2. package/bin/wrangler.js +111 -57
  3. package/miniflare-dist/index.mjs +9 -2
  4. package/package.json +156 -154
  5. package/src/__tests__/config-cache-without-cache-dir.test.ts +38 -0
  6. package/src/__tests__/config-cache.test.ts +30 -24
  7. package/src/__tests__/configuration.test.ts +3935 -3476
  8. package/src/__tests__/dev.test.tsx +1128 -979
  9. package/src/__tests__/guess-worker-format.test.ts +68 -68
  10. package/src/__tests__/helpers/cmd-shim.d.ts +6 -6
  11. package/src/__tests__/helpers/faye-websocket.d.ts +4 -4
  12. package/src/__tests__/helpers/mock-account-id.ts +24 -24
  13. package/src/__tests__/helpers/mock-bin.ts +20 -20
  14. package/src/__tests__/helpers/mock-cfetch.ts +92 -92
  15. package/src/__tests__/helpers/mock-console.ts +49 -39
  16. package/src/__tests__/helpers/mock-dialogs.ts +94 -71
  17. package/src/__tests__/helpers/mock-http-server.ts +30 -30
  18. package/src/__tests__/helpers/mock-istty.ts +65 -18
  19. package/src/__tests__/helpers/mock-kv.ts +26 -26
  20. package/src/__tests__/helpers/mock-oauth-flow.ts +223 -228
  21. package/src/__tests__/helpers/mock-process.ts +39 -0
  22. package/src/__tests__/helpers/mock-stdin.ts +82 -77
  23. package/src/__tests__/helpers/mock-web-socket.ts +21 -21
  24. package/src/__tests__/helpers/run-in-tmp.ts +27 -27
  25. package/src/__tests__/helpers/run-wrangler.ts +8 -8
  26. package/src/__tests__/helpers/write-worker-source.ts +16 -16
  27. package/src/__tests__/helpers/write-wrangler-toml.ts +9 -9
  28. package/src/__tests__/https-options.test.ts +104 -104
  29. package/src/__tests__/index.test.ts +239 -234
  30. package/src/__tests__/init.test.ts +1605 -1250
  31. package/src/__tests__/jest.setup.ts +63 -33
  32. package/src/__tests__/kv.test.ts +1128 -1011
  33. package/src/__tests__/logger.test.ts +100 -74
  34. package/src/__tests__/package-manager.test.ts +303 -303
  35. package/src/__tests__/pages.test.ts +1152 -652
  36. package/src/__tests__/parse.test.ts +252 -252
  37. package/src/__tests__/publish.test.ts +6371 -5622
  38. package/src/__tests__/pubsub.test.ts +367 -0
  39. package/src/__tests__/r2.test.ts +133 -133
  40. package/src/__tests__/route.test.ts +18 -18
  41. package/src/__tests__/secret.test.ts +382 -377
  42. package/src/__tests__/tail.test.ts +530 -530
  43. package/src/__tests__/user.test.ts +123 -111
  44. package/src/__tests__/whoami.test.tsx +198 -117
  45. package/src/__tests__/worker-namespace.test.ts +327 -0
  46. package/src/abort.d.ts +1 -1
  47. package/src/api/dev.ts +49 -0
  48. package/src/api/index.ts +1 -0
  49. package/src/bundle-reporter.tsx +29 -0
  50. package/src/bundle.ts +157 -149
  51. package/src/cfetch/index.ts +80 -80
  52. package/src/cfetch/internal.ts +90 -83
  53. package/src/cli.ts +21 -7
  54. package/src/config/config.ts +204 -195
  55. package/src/config/diagnostics.ts +61 -61
  56. package/src/config/environment.ts +390 -357
  57. package/src/config/index.ts +206 -193
  58. package/src/config/validation-helpers.ts +366 -366
  59. package/src/config/validation.ts +1573 -1376
  60. package/src/config-cache.ts +79 -41
  61. package/src/create-worker-preview.ts +206 -136
  62. package/src/create-worker-upload-form.ts +247 -238
  63. package/src/dev/dev-vars.ts +13 -13
  64. package/src/dev/dev.tsx +329 -307
  65. package/src/dev/local.tsx +304 -275
  66. package/src/dev/remote.tsx +366 -224
  67. package/src/dev/use-esbuild.ts +126 -91
  68. package/src/dev.tsx +538 -0
  69. package/src/dialogs.tsx +97 -97
  70. package/src/durable.ts +87 -87
  71. package/src/entry.ts +234 -228
  72. package/src/environment-variables.ts +23 -23
  73. package/src/errors.ts +6 -6
  74. package/src/generate.ts +33 -0
  75. package/src/git-client.ts +42 -0
  76. package/src/https-options.ts +79 -79
  77. package/src/index.tsx +1775 -2763
  78. package/src/init.ts +549 -0
  79. package/src/inspect.ts +593 -593
  80. package/src/intl-polyfill.d.ts +123 -123
  81. package/src/is-interactive.ts +12 -0
  82. package/src/kv.ts +277 -277
  83. package/src/logger.ts +46 -39
  84. package/src/miniflare-cli/enum-keys.ts +8 -8
  85. package/src/miniflare-cli/index.ts +42 -31
  86. package/src/miniflare-cli/request-context.ts +18 -18
  87. package/src/module-collection.ts +212 -212
  88. package/src/open-in-browser.ts +4 -6
  89. package/src/package-manager.ts +123 -123
  90. package/src/pages/build.tsx +202 -0
  91. package/src/pages/constants.ts +7 -0
  92. package/src/pages/deployments.tsx +101 -0
  93. package/src/pages/dev.tsx +964 -0
  94. package/src/pages/functions/buildPlugin.ts +105 -0
  95. package/src/pages/functions/buildWorker.ts +151 -0
  96. package/{pages → src/pages}/functions/filepath-routing.test.ts +113 -113
  97. package/src/pages/functions/filepath-routing.ts +189 -0
  98. package/src/pages/functions/identifiers.ts +78 -0
  99. package/src/pages/functions/routes.ts +151 -0
  100. package/src/pages/index.tsx +84 -0
  101. package/src/pages/projects.tsx +157 -0
  102. package/src/pages/publish.tsx +335 -0
  103. package/src/pages/types.ts +40 -0
  104. package/src/pages/upload.tsx +384 -0
  105. package/src/pages/utils.ts +12 -0
  106. package/src/parse.ts +202 -138
  107. package/src/paths.ts +6 -6
  108. package/src/preview.ts +31 -0
  109. package/src/proxy.ts +400 -402
  110. package/src/publish.ts +667 -621
  111. package/src/pubsub/index.ts +286 -0
  112. package/src/pubsub/pubsub-commands.tsx +577 -0
  113. package/src/r2.ts +19 -19
  114. package/src/selfsigned.d.ts +23 -23
  115. package/src/sites.tsx +271 -225
  116. package/src/tail/filters.ts +108 -108
  117. package/src/tail/index.ts +217 -217
  118. package/src/tail/printing.ts +45 -45
  119. package/src/update-check.ts +11 -11
  120. package/src/user/choose-account.tsx +60 -0
  121. package/src/user/env-vars.ts +46 -0
  122. package/src/user/generate-auth-url.ts +33 -0
  123. package/src/user/generate-random-state.ts +16 -0
  124. package/src/user/index.ts +3 -0
  125. package/src/user/user.tsx +1161 -0
  126. package/src/whoami.tsx +61 -42
  127. package/src/worker-namespace.ts +190 -0
  128. package/src/worker.ts +110 -100
  129. package/src/zones.ts +39 -36
  130. package/templates/checked-fetch.js +17 -0
  131. package/templates/new-worker-scheduled.js +3 -3
  132. package/templates/new-worker-scheduled.ts +15 -15
  133. package/templates/new-worker.js +3 -3
  134. package/templates/new-worker.ts +15 -15
  135. package/templates/no-op-worker.js +10 -0
  136. package/templates/pages-template-plugin.ts +155 -0
  137. package/templates/pages-template-worker.ts +161 -0
  138. package/templates/static-asset-facade.js +31 -31
  139. package/templates/tsconfig.json +95 -95
  140. package/wrangler-dist/cli.js +55383 -54138
  141. package/pages/functions/buildPlugin.ts +0 -105
  142. package/pages/functions/buildWorker.ts +0 -151
  143. package/pages/functions/filepath-routing.ts +0 -189
  144. package/pages/functions/identifiers.ts +0 -78
  145. package/pages/functions/routes.ts +0 -156
  146. package/pages/functions/template-plugin.ts +0 -147
  147. package/pages/functions/template-worker.ts +0 -143
  148. package/src/pages.tsx +0 -2093
  149. package/src/user.tsx +0 -1214
@@ -0,0 +1,286 @@
1
+ import { fetchResult } from "../cfetch";
2
+
3
+ export const pubSubBetaWarning =
4
+ "👷🏽 'wrangler pubsub ...' commands are currently in private beta. If your account isn't authorized, commands will fail. Visit the Pub/Sub docs for more info: https://developers.cloudflare.com/pub-sub/";
5
+
6
+ /**
7
+ * Namespaces represent a collection of Pub/Sub Brokers.
8
+ */
9
+ export interface PubSubNamespace {
10
+ id?: string;
11
+ name: string;
12
+ description?: string;
13
+ created_on?: string;
14
+ modified_on?: string;
15
+ }
16
+
17
+ /**
18
+ * A Pub/Sub Broker's on-publish hook configuration.
19
+ */
20
+ export interface PubSubBrokerOnPublish {
21
+ url: string;
22
+ }
23
+ /**
24
+ * PubSubBroker represents a single Broker configuration and endpoint.
25
+ */
26
+ export interface PubSubBroker {
27
+ id?: string;
28
+ name: string;
29
+ description?: string;
30
+ auth_type?: string;
31
+ expiration?: number;
32
+ created_on?: string;
33
+ modified_on?: string;
34
+ on_publish?: PubSubBrokerOnPublish;
35
+ }
36
+
37
+ /**
38
+ * PubSubBrokerUpdate is the set of values that can be updated on an existing Broker.
39
+ */
40
+ export interface PubSubBrokerUpdate {
41
+ description?: string;
42
+ expiration?: number;
43
+ on_publish?: PubSubBrokerOnPublish;
44
+ }
45
+
46
+ /**
47
+ * Fetch a list of all the Namespaces under the given `accountId`.
48
+ */
49
+ export async function listPubSubNamespaces(
50
+ accountId: string
51
+ ): Promise<PubSubNamespace[]> {
52
+ return await fetchResult<PubSubNamespace[]>(
53
+ `/accounts/${accountId}/pubsub/namespaces`
54
+ );
55
+ }
56
+
57
+ /**
58
+ *
59
+ * Create a Namespace with the given `namespace` within the account given by `accountId`.
60
+ *
61
+ * A HTTP 400 (Bad Request) is returned if this Namespace already exists, as
62
+ * Namespaces are globally unique.
63
+ */
64
+ export async function createPubSubNamespace(
65
+ accountId: string,
66
+ namespace: PubSubNamespace
67
+ ): Promise<void> {
68
+ return await fetchResult<void>(`/accounts/${accountId}/pubsub/namespaces`, {
69
+ method: "POST",
70
+ body: JSON.stringify(namespace),
71
+ });
72
+ }
73
+
74
+ /**
75
+ * Delete a Pub/Sub Namespace with the given `namespace` name.
76
+ *
77
+ * Deleting a namespace is destructive and should be done with care.
78
+ */
79
+ export async function deletePubSubNamespace(
80
+ accountId: string,
81
+ namespace: string
82
+ ): Promise<void> {
83
+ return await fetchResult<void>(
84
+ `/accounts/${accountId}/pubsub/namespaces/${namespace}`,
85
+ { method: "DELETE" }
86
+ );
87
+ }
88
+
89
+ /**
90
+ * Describe a single Pub/Sub Namespace by its `namespace` name.
91
+ */
92
+ export async function describePubSubNamespace(
93
+ accountId: string,
94
+ namespace: string
95
+ ): Promise<void> {
96
+ return await fetchResult<void>(
97
+ `/accounts/${accountId}/pubsub/namespaces/${namespace}`,
98
+ { method: "GET" }
99
+ );
100
+ }
101
+
102
+ /**
103
+ * Delete a Pub/Sub Broker with the given `broker` name within the associated `namespace`.
104
+ *
105
+ * Deleting a Broker is destructive and will immediately break all existing
106
+ * connections to the Broker.
107
+ */
108
+ export async function deletePubSubBroker(
109
+ accountId: string,
110
+ namespace: string,
111
+ broker: string
112
+ ): Promise<void> {
113
+ return await fetchResult<void>(
114
+ `/accounts/${accountId}/pubsub/namespaces/${namespace}/brokers/${broker}`,
115
+ { method: "DELETE" }
116
+ );
117
+ }
118
+
119
+ /**
120
+ * Describe a single Pub/Sub Broker for the given `broker` name within the associated `namespace`.
121
+ */
122
+ export async function describePubSubBroker(
123
+ accountId: string,
124
+ namespace: string,
125
+ broker: string
126
+ ): Promise<void> {
127
+ return await fetchResult<void>(
128
+ `/accounts/${accountId}/pubsub/namespaces/${namespace}/brokers/${broker}`,
129
+ { method: "GET" }
130
+ );
131
+ }
132
+
133
+ /**
134
+ * Fetch a list of all the Pub/Sub Brokers under the given `namespace`.
135
+ */
136
+ export async function listPubSubBrokers(
137
+ accountId: string,
138
+ namespace: string
139
+ ): Promise<PubSubBroker[]> {
140
+ return await fetchResult<PubSubBroker[]>(
141
+ `/accounts/${accountId}/pubsub/namespaces/${namespace}/brokers`
142
+ );
143
+ }
144
+
145
+ /**
146
+ * Create a Pub/Sub Broker within given `namespace`.
147
+ */
148
+ export async function createPubSubBroker(
149
+ accountId: string,
150
+ namespace: string,
151
+ broker: PubSubBroker
152
+ ): Promise<void> {
153
+ return await fetchResult<void>(
154
+ `/accounts/${accountId}/pubsub/namespaces/${namespace}/brokers`,
155
+ { method: "POST", body: JSON.stringify(broker) }
156
+ );
157
+ }
158
+
159
+ /**
160
+ * Update a Pub/Sub Broker configuration.
161
+ */
162
+ export async function updatePubSubBroker(
163
+ accountId: string,
164
+ namespace: string,
165
+ broker: string,
166
+ update: PubSubBrokerUpdate
167
+ ): Promise<void> {
168
+ return await fetchResult<void>(
169
+ `/accounts/${accountId}/pubsub/namespaces/${namespace}/brokers/${broker}`,
170
+ { method: "PATCH", body: JSON.stringify(update) }
171
+ );
172
+ }
173
+
174
+ /**
175
+ * Get the public keys uniquely associated with a Pub/Sub Broker.
176
+ *
177
+ * These keys can be used for verifying Pub/Sub on-publish hooks over HTTPS.
178
+ */
179
+ export async function getPubSubBrokerPublicKeys(
180
+ accountId: string,
181
+ namespace: string,
182
+ broker: string
183
+ ): Promise<Record<string, string>> {
184
+ return await fetchResult<Record<string, string>>(
185
+ `/accounts/${accountId}/pubsub/namespaces/${namespace}/brokers/${broker}/publickeys`
186
+ );
187
+ }
188
+
189
+ /**
190
+ * Issue client credentials for the given `broker`.
191
+ *
192
+ * Multiple credentials can be generated at once by providing a `number`.
193
+ */
194
+ export async function issuePubSubBrokerTokens(
195
+ accountId: string,
196
+ namespace: string,
197
+ broker: string,
198
+ number: number,
199
+ type: string,
200
+ clientIds?: string[],
201
+ expiration?: number
202
+ ): Promise<Record<string, string>> {
203
+ let url = `/accounts/${accountId}/pubsub/namespaces/${namespace}/brokers/${broker}/credentials`;
204
+
205
+ const params = new URLSearchParams();
206
+ params.append("number", `${number}`);
207
+ params.append("type", type);
208
+
209
+ if (clientIds) {
210
+ for (const id of clientIds) {
211
+ params.append("clientid", id);
212
+ }
213
+ }
214
+
215
+ if (expiration) {
216
+ params.append("expiration", `${expiration}`);
217
+ }
218
+
219
+ // We have to concat these as the URL class requires a base URL, which we
220
+ // don't know within the scope of this function.
221
+ url = url + `?${params.toString()}`;
222
+
223
+ return await fetchResult<Record<string, string>>(url);
224
+ }
225
+
226
+ /**
227
+ * Revoke client credentials for the given `broker`.
228
+ *
229
+ * Credentials are revoked based on the JTI (a unique ID for each token).
230
+ * Multiple credentials can be revoked at once.
231
+ */
232
+ export async function revokePubSubBrokerTokens(
233
+ accountId: string,
234
+ namespace: string,
235
+ broker: string,
236
+ jti: string[]
237
+ ): Promise<void> {
238
+ let url = `/accounts/${accountId}/pubsub/namespaces/${namespace}/brokers/${broker}/revocations`;
239
+
240
+ const params = new URLSearchParams();
241
+ for (const j of jti) {
242
+ params.append("jti", j);
243
+ }
244
+
245
+ url = url + `?${params.toString()}`;
246
+ return await fetchResult<void>(url, { method: "POST", body: "" });
247
+ }
248
+
249
+ /**
250
+ *
251
+ * Unrevoke client credentials for the given `broker`.
252
+ *
253
+ * This deletes an existing revocation, allowing the credentials to be used again.
254
+ * Credentials that have expired may be unrevoked, but will no longer be valid.
255
+ */
256
+ export async function unrevokePubSubBrokerTokens(
257
+ accountId: string,
258
+ namespace: string,
259
+ broker: string,
260
+ jti: string[]
261
+ ): Promise<void> {
262
+ let url = `/accounts/${accountId}/pubsub/namespaces/${namespace}/brokers/${broker}/revocations`;
263
+ const params = new URLSearchParams();
264
+ for (const j of jti) {
265
+ params.append("jti", j);
266
+ }
267
+
268
+ url = url + `?${params.toString()}`;
269
+ return await fetchResult<void>(url, { method: "DELETE" });
270
+ }
271
+
272
+ /**
273
+ *
274
+ * List revoked client credentials for the given `broker`.
275
+ *
276
+ * This shows all existing revocations against a Broker.
277
+ */
278
+ export async function listRevokedPubSubBrokerTokens(
279
+ accountId: string,
280
+ namespace: string,
281
+ broker: string
282
+ ): Promise<void> {
283
+ return await fetchResult<void>(
284
+ `/accounts/${accountId}/pubsub/namespaces/${namespace}/brokers/${broker}/revocations`
285
+ );
286
+ }