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.
- package/README.md +7 -1
- package/bin/wrangler.js +111 -57
- package/miniflare-dist/index.mjs +9 -2
- package/package.json +156 -154
- package/src/__tests__/config-cache-without-cache-dir.test.ts +38 -0
- package/src/__tests__/config-cache.test.ts +30 -24
- package/src/__tests__/configuration.test.ts +3935 -3476
- package/src/__tests__/dev.test.tsx +1128 -979
- package/src/__tests__/guess-worker-format.test.ts +68 -68
- package/src/__tests__/helpers/cmd-shim.d.ts +6 -6
- package/src/__tests__/helpers/faye-websocket.d.ts +4 -4
- package/src/__tests__/helpers/mock-account-id.ts +24 -24
- package/src/__tests__/helpers/mock-bin.ts +20 -20
- package/src/__tests__/helpers/mock-cfetch.ts +92 -92
- package/src/__tests__/helpers/mock-console.ts +49 -39
- package/src/__tests__/helpers/mock-dialogs.ts +94 -71
- package/src/__tests__/helpers/mock-http-server.ts +30 -30
- package/src/__tests__/helpers/mock-istty.ts +65 -18
- package/src/__tests__/helpers/mock-kv.ts +26 -26
- package/src/__tests__/helpers/mock-oauth-flow.ts +223 -228
- package/src/__tests__/helpers/mock-process.ts +39 -0
- package/src/__tests__/helpers/mock-stdin.ts +82 -77
- package/src/__tests__/helpers/mock-web-socket.ts +21 -21
- package/src/__tests__/helpers/run-in-tmp.ts +27 -27
- package/src/__tests__/helpers/run-wrangler.ts +8 -8
- package/src/__tests__/helpers/write-worker-source.ts +16 -16
- package/src/__tests__/helpers/write-wrangler-toml.ts +9 -9
- package/src/__tests__/https-options.test.ts +104 -104
- package/src/__tests__/index.test.ts +239 -234
- package/src/__tests__/init.test.ts +1605 -1250
- package/src/__tests__/jest.setup.ts +63 -33
- package/src/__tests__/kv.test.ts +1128 -1011
- package/src/__tests__/logger.test.ts +100 -74
- package/src/__tests__/package-manager.test.ts +303 -303
- package/src/__tests__/pages.test.ts +1152 -652
- package/src/__tests__/parse.test.ts +252 -252
- package/src/__tests__/publish.test.ts +6371 -5622
- package/src/__tests__/pubsub.test.ts +367 -0
- package/src/__tests__/r2.test.ts +133 -133
- package/src/__tests__/route.test.ts +18 -18
- package/src/__tests__/secret.test.ts +382 -377
- package/src/__tests__/tail.test.ts +530 -530
- package/src/__tests__/user.test.ts +123 -111
- package/src/__tests__/whoami.test.tsx +198 -117
- package/src/__tests__/worker-namespace.test.ts +327 -0
- package/src/abort.d.ts +1 -1
- package/src/api/dev.ts +49 -0
- package/src/api/index.ts +1 -0
- package/src/bundle-reporter.tsx +29 -0
- package/src/bundle.ts +157 -149
- package/src/cfetch/index.ts +80 -80
- package/src/cfetch/internal.ts +90 -83
- package/src/cli.ts +21 -7
- package/src/config/config.ts +204 -195
- package/src/config/diagnostics.ts +61 -61
- package/src/config/environment.ts +390 -357
- package/src/config/index.ts +206 -193
- package/src/config/validation-helpers.ts +366 -366
- package/src/config/validation.ts +1573 -1376
- package/src/config-cache.ts +79 -41
- package/src/create-worker-preview.ts +206 -136
- package/src/create-worker-upload-form.ts +247 -238
- package/src/dev/dev-vars.ts +13 -13
- package/src/dev/dev.tsx +329 -307
- package/src/dev/local.tsx +304 -275
- package/src/dev/remote.tsx +366 -224
- package/src/dev/use-esbuild.ts +126 -91
- package/src/dev.tsx +538 -0
- package/src/dialogs.tsx +97 -97
- package/src/durable.ts +87 -87
- package/src/entry.ts +234 -228
- package/src/environment-variables.ts +23 -23
- package/src/errors.ts +6 -6
- package/src/generate.ts +33 -0
- package/src/git-client.ts +42 -0
- package/src/https-options.ts +79 -79
- package/src/index.tsx +1775 -2763
- package/src/init.ts +549 -0
- package/src/inspect.ts +593 -593
- package/src/intl-polyfill.d.ts +123 -123
- package/src/is-interactive.ts +12 -0
- package/src/kv.ts +277 -277
- package/src/logger.ts +46 -39
- package/src/miniflare-cli/enum-keys.ts +8 -8
- package/src/miniflare-cli/index.ts +42 -31
- package/src/miniflare-cli/request-context.ts +18 -18
- package/src/module-collection.ts +212 -212
- package/src/open-in-browser.ts +4 -6
- package/src/package-manager.ts +123 -123
- package/src/pages/build.tsx +202 -0
- package/src/pages/constants.ts +7 -0
- package/src/pages/deployments.tsx +101 -0
- package/src/pages/dev.tsx +964 -0
- package/src/pages/functions/buildPlugin.ts +105 -0
- package/src/pages/functions/buildWorker.ts +151 -0
- package/{pages → src/pages}/functions/filepath-routing.test.ts +113 -113
- package/src/pages/functions/filepath-routing.ts +189 -0
- package/src/pages/functions/identifiers.ts +78 -0
- package/src/pages/functions/routes.ts +151 -0
- package/src/pages/index.tsx +84 -0
- package/src/pages/projects.tsx +157 -0
- package/src/pages/publish.tsx +335 -0
- package/src/pages/types.ts +40 -0
- package/src/pages/upload.tsx +384 -0
- package/src/pages/utils.ts +12 -0
- package/src/parse.ts +202 -138
- package/src/paths.ts +6 -6
- package/src/preview.ts +31 -0
- package/src/proxy.ts +400 -402
- package/src/publish.ts +667 -621
- package/src/pubsub/index.ts +286 -0
- package/src/pubsub/pubsub-commands.tsx +577 -0
- package/src/r2.ts +19 -19
- package/src/selfsigned.d.ts +23 -23
- package/src/sites.tsx +271 -225
- package/src/tail/filters.ts +108 -108
- package/src/tail/index.ts +217 -217
- package/src/tail/printing.ts +45 -45
- package/src/update-check.ts +11 -11
- package/src/user/choose-account.tsx +60 -0
- package/src/user/env-vars.ts +46 -0
- package/src/user/generate-auth-url.ts +33 -0
- package/src/user/generate-random-state.ts +16 -0
- package/src/user/index.ts +3 -0
- package/src/user/user.tsx +1161 -0
- package/src/whoami.tsx +61 -42
- package/src/worker-namespace.ts +190 -0
- package/src/worker.ts +110 -100
- package/src/zones.ts +39 -36
- package/templates/checked-fetch.js +17 -0
- package/templates/new-worker-scheduled.js +3 -3
- package/templates/new-worker-scheduled.ts +15 -15
- package/templates/new-worker.js +3 -3
- package/templates/new-worker.ts +15 -15
- package/templates/no-op-worker.js +10 -0
- package/templates/pages-template-plugin.ts +155 -0
- package/templates/pages-template-worker.ts +161 -0
- package/templates/static-asset-facade.js +31 -31
- package/templates/tsconfig.json +95 -95
- package/wrangler-dist/cli.js +55383 -54138
- package/pages/functions/buildPlugin.ts +0 -105
- package/pages/functions/buildWorker.ts +0 -151
- package/pages/functions/filepath-routing.ts +0 -189
- package/pages/functions/identifiers.ts +0 -78
- package/pages/functions/routes.ts +0 -156
- package/pages/functions/template-plugin.ts +0 -147
- package/pages/functions/template-worker.ts +0 -143
- package/src/pages.tsx +0 -2093
- package/src/user.tsx +0 -1214
package/src/config-cache.ts
CHANGED
|
@@ -1,45 +1,83 @@
|
|
|
1
1
|
import { mkdirSync, readFileSync, rmSync, writeFileSync } from "fs";
|
|
2
|
-
import
|
|
2
|
+
import * as path from "path";
|
|
3
|
+
import { findUpSync } from "find-up";
|
|
4
|
+
import isInteractive from "./is-interactive";
|
|
5
|
+
import { logger } from "./logger";
|
|
3
6
|
|
|
4
7
|
let cacheMessageShown = false;
|
|
5
8
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
9
|
+
let __cacheFolder: string | null;
|
|
10
|
+
function getCacheFolder() {
|
|
11
|
+
if (__cacheFolder || __cacheFolder === null) return __cacheFolder;
|
|
12
|
+
|
|
13
|
+
const closestNodeModulesDirectory = findUpSync("node_modules", {
|
|
14
|
+
type: "directory",
|
|
15
|
+
});
|
|
16
|
+
__cacheFolder = closestNodeModulesDirectory
|
|
17
|
+
? path.join(closestNodeModulesDirectory, ".cache/wrangler")
|
|
18
|
+
: null;
|
|
19
|
+
|
|
20
|
+
if (!__cacheFolder) {
|
|
21
|
+
logger.debug("No folder available to cache configuration");
|
|
22
|
+
}
|
|
23
|
+
return __cacheFolder;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
const arrayFormatter = new Intl.ListFormat("en", {
|
|
27
|
+
style: "long",
|
|
28
|
+
type: "conjunction",
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
function showCacheMessage(fields: string[], folder: string) {
|
|
32
|
+
if (!cacheMessageShown && isInteractive()) {
|
|
33
|
+
if (fields.length > 0) {
|
|
34
|
+
logger.log(
|
|
35
|
+
`Retrieving cached values for ${arrayFormatter.format(
|
|
36
|
+
fields
|
|
37
|
+
)} from ${path.relative(process.cwd(), folder)}`
|
|
38
|
+
);
|
|
39
|
+
cacheMessageShown = true;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export function getConfigCache<T>(fileName: string): Partial<T> {
|
|
45
|
+
try {
|
|
46
|
+
const cacheFolder = getCacheFolder();
|
|
47
|
+
if (cacheFolder) {
|
|
48
|
+
const configCacheLocation = path.join(cacheFolder, fileName);
|
|
49
|
+
const configCache = JSON.parse(
|
|
50
|
+
readFileSync(configCacheLocation, "utf-8")
|
|
51
|
+
);
|
|
52
|
+
showCacheMessage(Object.keys(configCache), cacheFolder);
|
|
53
|
+
return configCache;
|
|
54
|
+
} else return {};
|
|
55
|
+
} catch (err) {
|
|
56
|
+
return {};
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export function saveToConfigCache<T>(
|
|
61
|
+
fileName: string,
|
|
62
|
+
newValues: Partial<T>
|
|
63
|
+
): void {
|
|
64
|
+
const cacheFolder = getCacheFolder();
|
|
65
|
+
if (cacheFolder) {
|
|
66
|
+
logger.debug(`Saving to cache: ${JSON.stringify(newValues)}`);
|
|
67
|
+
const configCacheLocation = path.join(cacheFolder, fileName);
|
|
68
|
+
const existingValues = getConfigCache(fileName);
|
|
69
|
+
|
|
70
|
+
mkdirSync(path.dirname(configCacheLocation), { recursive: true });
|
|
71
|
+
writeFileSync(
|
|
72
|
+
configCacheLocation,
|
|
73
|
+
JSON.stringify({ ...existingValues, ...newValues }, null, 2)
|
|
74
|
+
);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export function purgeConfigCaches() {
|
|
79
|
+
const cacheFolder = getCacheFolder();
|
|
80
|
+
if (cacheFolder) {
|
|
81
|
+
rmSync(cacheFolder, { recursive: true, force: true });
|
|
82
|
+
}
|
|
83
|
+
}
|
|
@@ -5,6 +5,46 @@ import { createWorkerUploadForm } from "./create-worker-upload-form";
|
|
|
5
5
|
import { logger } from "./logger";
|
|
6
6
|
import type { CfAccount, CfWorkerContext, CfWorkerInit } from "./worker";
|
|
7
7
|
|
|
8
|
+
/**
|
|
9
|
+
* A Preview Session on the edge
|
|
10
|
+
*/
|
|
11
|
+
export interface CfPreviewSession {
|
|
12
|
+
/**
|
|
13
|
+
* A randomly generated id for this session
|
|
14
|
+
*/
|
|
15
|
+
id: string;
|
|
16
|
+
/**
|
|
17
|
+
* A value to use when creating a worker preview under a session
|
|
18
|
+
*/
|
|
19
|
+
value: string;
|
|
20
|
+
/**
|
|
21
|
+
* The host where the session is available.
|
|
22
|
+
*/
|
|
23
|
+
host: string;
|
|
24
|
+
/**
|
|
25
|
+
* A websocket url to a DevTools inspector.
|
|
26
|
+
*
|
|
27
|
+
* Workers does not have a fully-featured implementation
|
|
28
|
+
* of the Chrome DevTools protocol, but supports the following:
|
|
29
|
+
* * `console.log()` output.
|
|
30
|
+
* * `Error` stack traces.
|
|
31
|
+
* * `fetch()` events.
|
|
32
|
+
*
|
|
33
|
+
* There is no support for breakpoints, but we want to implement
|
|
34
|
+
* this eventually.
|
|
35
|
+
*
|
|
36
|
+
* @link https://chromedevtools.github.io/devtools-protocol/
|
|
37
|
+
*/
|
|
38
|
+
inspectorUrl: URL;
|
|
39
|
+
/**
|
|
40
|
+
* A url to prewarm the preview session.
|
|
41
|
+
*
|
|
42
|
+
* @example
|
|
43
|
+
* fetch(prewarmUrl, { method: 'POST' })
|
|
44
|
+
*/
|
|
45
|
+
prewarmUrl: URL;
|
|
46
|
+
}
|
|
47
|
+
|
|
8
48
|
/**
|
|
9
49
|
* A preview mode.
|
|
10
50
|
*
|
|
@@ -17,145 +57,160 @@ type CfPreviewMode = { workers_dev: boolean } | { routes: string[] };
|
|
|
17
57
|
* A preview token.
|
|
18
58
|
*/
|
|
19
59
|
export interface CfPreviewToken {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
60
|
+
/**
|
|
61
|
+
* The header value required to trigger a preview.
|
|
62
|
+
*
|
|
63
|
+
* @example
|
|
64
|
+
* const headers = { 'cf-workers-preview-token': value }
|
|
65
|
+
* const response = await fetch('https://' + host, { headers })
|
|
66
|
+
*/
|
|
67
|
+
value: string;
|
|
68
|
+
/**
|
|
69
|
+
* The host where the preview is available.
|
|
70
|
+
*/
|
|
71
|
+
host: string;
|
|
72
|
+
/**
|
|
73
|
+
* A websocket url to a DevTools inspector.
|
|
74
|
+
*
|
|
75
|
+
* Workers does not have a fully-featured implementation
|
|
76
|
+
* of the Chrome DevTools protocol, but supports the following:
|
|
77
|
+
* * `console.log()` output.
|
|
78
|
+
* * `Error` stack traces.
|
|
79
|
+
* * `fetch()` events.
|
|
80
|
+
*
|
|
81
|
+
* There is no support for breakpoints, but we want to implement
|
|
82
|
+
* this eventually.
|
|
83
|
+
*
|
|
84
|
+
* @link https://chromedevtools.github.io/devtools-protocol/
|
|
85
|
+
*/
|
|
86
|
+
inspectorUrl: URL;
|
|
87
|
+
/**
|
|
88
|
+
* A url to prewarm the preview session.
|
|
89
|
+
*
|
|
90
|
+
* @example
|
|
91
|
+
* fetch(prewarmUrl, { method: 'POST',
|
|
92
|
+
* headers: {
|
|
93
|
+
* "cf-workers-preview-token": (preview)token.value,
|
|
94
|
+
* }
|
|
95
|
+
* })
|
|
96
|
+
*/
|
|
97
|
+
prewarmUrl: URL;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// Credit: https://stackoverflow.com/a/2117523
|
|
101
|
+
function randomId(): string {
|
|
102
|
+
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, function (c) {
|
|
103
|
+
const r = (Math.random() * 16) | 0,
|
|
104
|
+
v = c == "x" ? r : (r & 0x3) | 0x8;
|
|
105
|
+
return v.toString(16);
|
|
106
|
+
});
|
|
54
107
|
}
|
|
55
108
|
|
|
56
109
|
/**
|
|
57
110
|
* Generates a preview session token.
|
|
58
111
|
*/
|
|
59
|
-
async function
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
): Promise<
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
112
|
+
export async function createPreviewSession(
|
|
113
|
+
account: CfAccount,
|
|
114
|
+
ctx: CfWorkerContext,
|
|
115
|
+
abortSignal: AbortSignal
|
|
116
|
+
): Promise<CfPreviewSession> {
|
|
117
|
+
const { accountId } = account;
|
|
118
|
+
const initUrl = ctx.zone
|
|
119
|
+
? `/zones/${ctx.zone}/workers/edge-preview`
|
|
120
|
+
: `/accounts/${accountId}/workers/subdomain/edge-preview`;
|
|
68
121
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
122
|
+
const { exchange_url } = await fetchResult<{ exchange_url: string }>(
|
|
123
|
+
initUrl,
|
|
124
|
+
undefined,
|
|
125
|
+
undefined,
|
|
126
|
+
abortSignal
|
|
127
|
+
);
|
|
128
|
+
const { inspector_websocket, prewarm, token } = (await (
|
|
129
|
+
await fetch(exchange_url, { signal: abortSignal })
|
|
130
|
+
).json()) as { inspector_websocket: string; token: string; prewarm: string };
|
|
131
|
+
const { host } = new URL(inspector_websocket);
|
|
132
|
+
const query = `cf_workers_preview_token=${token}`;
|
|
80
133
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
// Credit: https://stackoverflow.com/a/2117523
|
|
90
|
-
function randomId(): string {
|
|
91
|
-
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, function (c) {
|
|
92
|
-
const r = (Math.random() * 16) | 0,
|
|
93
|
-
v = c == "x" ? r : (r & 0x3) | 0x8;
|
|
94
|
-
return v.toString(16);
|
|
95
|
-
});
|
|
134
|
+
return {
|
|
135
|
+
id: randomId(),
|
|
136
|
+
value: token,
|
|
137
|
+
host,
|
|
138
|
+
inspectorUrl: new URL(`${inspector_websocket}?${query}`),
|
|
139
|
+
prewarmUrl: new URL(prewarm),
|
|
140
|
+
};
|
|
96
141
|
}
|
|
97
142
|
|
|
98
143
|
/**
|
|
99
144
|
* Creates a preview token.
|
|
100
145
|
*/
|
|
101
146
|
async function createPreviewToken(
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
147
|
+
account: CfAccount,
|
|
148
|
+
worker: CfWorkerInit,
|
|
149
|
+
ctx: CfWorkerContext,
|
|
150
|
+
session: CfPreviewSession,
|
|
151
|
+
abortSignal: AbortSignal
|
|
106
152
|
): Promise<CfPreviewToken> {
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
const scriptId = worker.name || (ctx.zone ? randomId() : host.split(".")[0]);
|
|
115
|
-
const url =
|
|
116
|
-
ctx.env && !ctx.legacyEnv
|
|
117
|
-
? `/accounts/${accountId}/workers/services/${scriptId}/environments/${ctx.env}/edge-preview`
|
|
118
|
-
: `/accounts/${accountId}/workers/scripts/${scriptId}/edge-preview`;
|
|
153
|
+
const { value, host, inspectorUrl, prewarmUrl } = session;
|
|
154
|
+
const { accountId } = account;
|
|
155
|
+
const scriptId = worker.name || (ctx.zone ? session.id : host.split(".")[0]);
|
|
156
|
+
const url =
|
|
157
|
+
ctx.env && !ctx.legacyEnv
|
|
158
|
+
? `/accounts/${accountId}/workers/services/${scriptId}/environments/${ctx.env}/edge-preview`
|
|
159
|
+
: `/accounts/${accountId}/workers/scripts/${scriptId}/edge-preview`;
|
|
119
160
|
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
161
|
+
const mode: CfPreviewMode = ctx.zone
|
|
162
|
+
? {
|
|
163
|
+
routes: ctx.routes
|
|
164
|
+
? // extract all the route patterns
|
|
165
|
+
ctx.routes.map((route) => {
|
|
166
|
+
if (typeof route === "string") {
|
|
167
|
+
return route;
|
|
168
|
+
}
|
|
169
|
+
if (route.custom_domain) {
|
|
170
|
+
return `${route.pattern}/*`;
|
|
171
|
+
}
|
|
172
|
+
return route.pattern;
|
|
173
|
+
})
|
|
174
|
+
: // if there aren't any patterns, then just match on all routes
|
|
175
|
+
["*/*"],
|
|
176
|
+
}
|
|
177
|
+
: { workers_dev: true };
|
|
123
178
|
|
|
124
|
-
|
|
125
|
-
|
|
179
|
+
const formData = createWorkerUploadForm(worker);
|
|
180
|
+
formData.set("wrangler-session-config", JSON.stringify(mode));
|
|
126
181
|
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
182
|
+
const { preview_token } = await fetchResult<{ preview_token: string }>(
|
|
183
|
+
url,
|
|
184
|
+
{
|
|
185
|
+
method: "POST",
|
|
186
|
+
body: formData,
|
|
187
|
+
headers: {
|
|
188
|
+
"cf-preview-upload-config-token": value,
|
|
189
|
+
},
|
|
190
|
+
},
|
|
191
|
+
undefined,
|
|
192
|
+
abortSignal
|
|
193
|
+
);
|
|
139
194
|
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
195
|
+
return {
|
|
196
|
+
value: preview_token,
|
|
197
|
+
host:
|
|
198
|
+
ctx.host ??
|
|
199
|
+
(worker.name
|
|
200
|
+
? `${
|
|
201
|
+
worker.name
|
|
202
|
+
// TODO: this should also probably have the env prefix
|
|
203
|
+
// but it doesn't appear to work yet, instead giving us the
|
|
204
|
+
// "There is nothing here yet" screen
|
|
205
|
+
// ctx.env && !ctx.legacyEnv
|
|
206
|
+
// ? `${ctx.env}.${worker.name}`
|
|
207
|
+
// : worker.name
|
|
208
|
+
}.${host.split(".").slice(1).join(".")}`
|
|
209
|
+
: host),
|
|
155
210
|
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
211
|
+
inspectorUrl,
|
|
212
|
+
prewarmUrl,
|
|
213
|
+
};
|
|
159
214
|
}
|
|
160
215
|
|
|
161
216
|
/**
|
|
@@ -165,21 +220,36 @@ async function createPreviewToken(
|
|
|
165
220
|
* const {value, host} = await createWorker(init, acct);
|
|
166
221
|
*/
|
|
167
222
|
export async function createWorkerPreview(
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
223
|
+
init: CfWorkerInit,
|
|
224
|
+
account: CfAccount,
|
|
225
|
+
ctx: CfWorkerContext,
|
|
226
|
+
session: CfPreviewSession,
|
|
227
|
+
abortSignal: AbortSignal
|
|
172
228
|
): Promise<CfPreviewToken> {
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
229
|
+
const token = await createPreviewToken(
|
|
230
|
+
account,
|
|
231
|
+
init,
|
|
232
|
+
ctx,
|
|
233
|
+
session,
|
|
234
|
+
abortSignal
|
|
235
|
+
);
|
|
236
|
+
// fire and forget the prewarm call
|
|
237
|
+
fetch(token.prewarmUrl.href, {
|
|
238
|
+
method: "POST",
|
|
239
|
+
signal: abortSignal,
|
|
240
|
+
headers: {
|
|
241
|
+
"cf-workers-preview-token": token.value,
|
|
242
|
+
},
|
|
243
|
+
}).then(
|
|
244
|
+
(response) => {
|
|
245
|
+
if (!response.ok) {
|
|
246
|
+
logger.warn("worker failed to prewarm: ", response.statusText);
|
|
247
|
+
}
|
|
248
|
+
},
|
|
249
|
+
(err) => {
|
|
250
|
+
logger.warn("worker failed to prewarm: ", err);
|
|
251
|
+
}
|
|
252
|
+
);
|
|
253
|
+
|
|
254
|
+
return token;
|
|
185
255
|
}
|