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
|
@@ -1,147 +0,0 @@
|
|
|
1
|
-
import { match } from "path-to-regexp";
|
|
2
|
-
import type { HTTPMethod } from "./routes";
|
|
3
|
-
|
|
4
|
-
/* TODO: Grab these from @cloudflare/workers-types instead */
|
|
5
|
-
type Params<P extends string = string> = Record<P, string | string[]>;
|
|
6
|
-
|
|
7
|
-
type EventContext<Env, P extends string, Data> = {
|
|
8
|
-
request: Request;
|
|
9
|
-
functionPath: string;
|
|
10
|
-
waitUntil: (promise: Promise<unknown>) => void;
|
|
11
|
-
next: (input?: Request | string, init?: RequestInit) => Promise<Response>;
|
|
12
|
-
env: Env & { ASSETS: { fetch: typeof fetch } };
|
|
13
|
-
params: Params<P>;
|
|
14
|
-
data: Data;
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
type EventPluginContext<Env, P extends string, Data, PluginArgs> = {
|
|
18
|
-
request: Request;
|
|
19
|
-
functionPath: string;
|
|
20
|
-
waitUntil: (promise: Promise<unknown>) => void;
|
|
21
|
-
next: (input?: Request | string, init?: RequestInit) => Promise<Response>;
|
|
22
|
-
env: Env & { ASSETS: { fetch: typeof fetch } };
|
|
23
|
-
params: Params<P>;
|
|
24
|
-
data: Data;
|
|
25
|
-
pluginArgs: PluginArgs;
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
declare type PagesFunction<
|
|
29
|
-
Env = unknown,
|
|
30
|
-
P extends string = string,
|
|
31
|
-
Data extends Record<string, unknown> = Record<string, unknown>
|
|
32
|
-
> = (context: EventContext<Env, P, Data>) => Response | Promise<Response>;
|
|
33
|
-
|
|
34
|
-
declare type PagesPluginFunction<
|
|
35
|
-
Env = unknown,
|
|
36
|
-
P extends string = string,
|
|
37
|
-
Data extends Record<string, unknown> = Record<string, unknown>,
|
|
38
|
-
PluginArgs = unknown
|
|
39
|
-
> = (
|
|
40
|
-
context: EventPluginContext<Env, P, Data, PluginArgs>
|
|
41
|
-
) => Response | Promise<Response>;
|
|
42
|
-
/* end @cloudflare/workers-types */
|
|
43
|
-
|
|
44
|
-
type RouteHandler = {
|
|
45
|
-
routePath: string;
|
|
46
|
-
mountPath: string;
|
|
47
|
-
method?: HTTPMethod;
|
|
48
|
-
modules: PagesFunction[];
|
|
49
|
-
middlewares: PagesFunction[];
|
|
50
|
-
};
|
|
51
|
-
|
|
52
|
-
// inject `routes` via ESBuild
|
|
53
|
-
declare const routes: RouteHandler[];
|
|
54
|
-
|
|
55
|
-
function* executeRequest(request: Request, relativePathname: string) {
|
|
56
|
-
// First, iterate through the routes (backwards) and execute "middlewares" on partial route matches
|
|
57
|
-
for (const route of [...routes].reverse()) {
|
|
58
|
-
if (route.method && route.method !== request.method) {
|
|
59
|
-
continue;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
const routeMatcher = match(route.routePath, { end: false });
|
|
63
|
-
const mountMatcher = match(route.mountPath, { end: false });
|
|
64
|
-
const matchResult = routeMatcher(relativePathname);
|
|
65
|
-
const mountMatchResult = mountMatcher(relativePathname);
|
|
66
|
-
if (matchResult && mountMatchResult) {
|
|
67
|
-
for (const handler of route.middlewares.flat()) {
|
|
68
|
-
yield {
|
|
69
|
-
handler,
|
|
70
|
-
params: matchResult.params as Params,
|
|
71
|
-
path: mountMatchResult.path,
|
|
72
|
-
};
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
// Then look for the first exact route match and execute its "modules"
|
|
78
|
-
for (const route of routes) {
|
|
79
|
-
if (route.method && route.method !== request.method) {
|
|
80
|
-
continue;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
const routeMatcher = match(route.routePath, { end: true });
|
|
84
|
-
const mountMatcher = match(route.mountPath, { end: false });
|
|
85
|
-
const matchResult = routeMatcher(relativePathname);
|
|
86
|
-
const mountMatchResult = mountMatcher(relativePathname);
|
|
87
|
-
if (matchResult && mountMatchResult && route.modules.length) {
|
|
88
|
-
for (const handler of route.modules.flat()) {
|
|
89
|
-
yield {
|
|
90
|
-
handler,
|
|
91
|
-
params: matchResult.params as Params,
|
|
92
|
-
path: matchResult.path,
|
|
93
|
-
};
|
|
94
|
-
}
|
|
95
|
-
break;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
export default function (pluginArgs) {
|
|
101
|
-
const onRequest: PagesPluginFunction = async (workerContext) => {
|
|
102
|
-
let { request } = workerContext;
|
|
103
|
-
const { env, next, data } = workerContext;
|
|
104
|
-
|
|
105
|
-
const url = new URL(request.url);
|
|
106
|
-
const relativePathname = `/${
|
|
107
|
-
url.pathname.split(workerContext.functionPath)[1] || ""
|
|
108
|
-
}`.replace(/^\/\//, "/");
|
|
109
|
-
|
|
110
|
-
const handlerIterator = executeRequest(request, relativePathname);
|
|
111
|
-
const pluginNext = async (input?: RequestInfo, init?: RequestInit) => {
|
|
112
|
-
if (input !== undefined) {
|
|
113
|
-
request = new Request(input, init);
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
const result = handlerIterator.next();
|
|
117
|
-
// Note we can't use `!result.done` because this doesn't narrow to the correct type
|
|
118
|
-
if (result.done === false) {
|
|
119
|
-
const { handler, params, path } = result.value;
|
|
120
|
-
const context = {
|
|
121
|
-
request,
|
|
122
|
-
functionPath: workerContext.functionPath + path,
|
|
123
|
-
next: pluginNext,
|
|
124
|
-
params,
|
|
125
|
-
data,
|
|
126
|
-
pluginArgs,
|
|
127
|
-
env,
|
|
128
|
-
waitUntil: workerContext.waitUntil.bind(workerContext),
|
|
129
|
-
};
|
|
130
|
-
|
|
131
|
-
const response = await handler(context);
|
|
132
|
-
|
|
133
|
-
// https://fetch.spec.whatwg.org/#null-body-status
|
|
134
|
-
return new Response(
|
|
135
|
-
[101, 204, 205, 304].includes(response.status) ? null : response.body,
|
|
136
|
-
{ ...response, headers: new Headers(response.headers) }
|
|
137
|
-
);
|
|
138
|
-
} else {
|
|
139
|
-
return next();
|
|
140
|
-
}
|
|
141
|
-
};
|
|
142
|
-
|
|
143
|
-
return pluginNext();
|
|
144
|
-
};
|
|
145
|
-
|
|
146
|
-
return onRequest;
|
|
147
|
-
}
|
|
@@ -1,143 +0,0 @@
|
|
|
1
|
-
import { match } from "path-to-regexp";
|
|
2
|
-
import type { HTTPMethod } from "./routes";
|
|
3
|
-
|
|
4
|
-
/* TODO: Grab these from @cloudflare/workers-types instead */
|
|
5
|
-
type Params<P extends string = string> = Record<P, string | string[]>;
|
|
6
|
-
|
|
7
|
-
type EventContext<Env, P extends string, Data> = {
|
|
8
|
-
request: Request;
|
|
9
|
-
functionPath: string;
|
|
10
|
-
waitUntil: (promise: Promise<unknown>) => void;
|
|
11
|
-
next: (input?: Request | string, init?: RequestInit) => Promise<Response>;
|
|
12
|
-
env: Env & { ASSETS: { fetch: typeof fetch } };
|
|
13
|
-
params: Params<P>;
|
|
14
|
-
data: Data;
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
declare type PagesFunction<
|
|
18
|
-
Env = unknown,
|
|
19
|
-
P extends string = string,
|
|
20
|
-
Data extends Record<string, unknown> = Record<string, unknown>
|
|
21
|
-
> = (context: EventContext<Env, P, Data>) => Response | Promise<Response>;
|
|
22
|
-
/* end @cloudflare/workers-types */
|
|
23
|
-
|
|
24
|
-
type RouteHandler = {
|
|
25
|
-
routePath: string;
|
|
26
|
-
mountPath: string;
|
|
27
|
-
method?: HTTPMethod;
|
|
28
|
-
modules: PagesFunction[];
|
|
29
|
-
middlewares: PagesFunction[];
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
// inject `routes` via ESBuild
|
|
33
|
-
declare const routes: RouteHandler[];
|
|
34
|
-
// define `__FALLBACK_SERVICE__` via ESBuild
|
|
35
|
-
declare const __FALLBACK_SERVICE__: string;
|
|
36
|
-
|
|
37
|
-
// expect an ASSETS fetcher binding pointing to the asset-server stage
|
|
38
|
-
type FetchEnv = {
|
|
39
|
-
[name: string]: { fetch: typeof fetch };
|
|
40
|
-
ASSETS: { fetch: typeof fetch };
|
|
41
|
-
};
|
|
42
|
-
|
|
43
|
-
type WorkerContext = {
|
|
44
|
-
waitUntil: (promise: Promise<unknown>) => void;
|
|
45
|
-
};
|
|
46
|
-
|
|
47
|
-
function* executeRequest(request: Request) {
|
|
48
|
-
const requestPath = new URL(request.url).pathname;
|
|
49
|
-
|
|
50
|
-
// First, iterate through the routes (backwards) and execute "middlewares" on partial route matches
|
|
51
|
-
for (const route of [...routes].reverse()) {
|
|
52
|
-
if (route.method && route.method !== request.method) {
|
|
53
|
-
continue;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
const routeMatcher = match(route.routePath, { end: false });
|
|
57
|
-
const mountMatcher = match(route.mountPath, { end: false });
|
|
58
|
-
const matchResult = routeMatcher(requestPath);
|
|
59
|
-
const mountMatchResult = mountMatcher(requestPath);
|
|
60
|
-
if (matchResult && mountMatchResult) {
|
|
61
|
-
for (const handler of route.middlewares.flat()) {
|
|
62
|
-
yield {
|
|
63
|
-
handler,
|
|
64
|
-
params: matchResult.params as Params,
|
|
65
|
-
path: mountMatchResult.path,
|
|
66
|
-
};
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
// Then look for the first exact route match and execute its "modules"
|
|
72
|
-
for (const route of routes) {
|
|
73
|
-
if (route.method && route.method !== request.method) {
|
|
74
|
-
continue;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
const routeMatcher = match(route.routePath, { end: true });
|
|
78
|
-
const mountMatcher = match(route.mountPath, { end: false });
|
|
79
|
-
const matchResult = routeMatcher(requestPath);
|
|
80
|
-
const mountMatchResult = mountMatcher(requestPath);
|
|
81
|
-
if (matchResult && mountMatchResult && route.modules.length) {
|
|
82
|
-
for (const handler of route.modules.flat()) {
|
|
83
|
-
yield {
|
|
84
|
-
handler,
|
|
85
|
-
params: matchResult.params as Params,
|
|
86
|
-
path: matchResult.path,
|
|
87
|
-
};
|
|
88
|
-
}
|
|
89
|
-
break;
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
export default {
|
|
95
|
-
async fetch(request: Request, env: FetchEnv, workerContext: WorkerContext) {
|
|
96
|
-
const handlerIterator = executeRequest(request);
|
|
97
|
-
const data = {}; // arbitrary data the user can set between functions
|
|
98
|
-
const next = async (input?: RequestInfo, init?: RequestInit) => {
|
|
99
|
-
if (input !== undefined) {
|
|
100
|
-
let url = input;
|
|
101
|
-
if (typeof input === "string") {
|
|
102
|
-
url = new URL(input, request.url).toString();
|
|
103
|
-
}
|
|
104
|
-
request = new Request(url, init);
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
const result = handlerIterator.next();
|
|
108
|
-
// Note we can't use `!result.done` because this doesn't narrow to the correct type
|
|
109
|
-
if (result.done === false) {
|
|
110
|
-
const { handler, params, path } = result.value;
|
|
111
|
-
const context = {
|
|
112
|
-
request: new Request(request.clone()),
|
|
113
|
-
functionPath: path,
|
|
114
|
-
next,
|
|
115
|
-
params,
|
|
116
|
-
data,
|
|
117
|
-
env,
|
|
118
|
-
waitUntil: workerContext.waitUntil.bind(workerContext),
|
|
119
|
-
};
|
|
120
|
-
|
|
121
|
-
const response = await handler(context);
|
|
122
|
-
|
|
123
|
-
// https://fetch.spec.whatwg.org/#null-body-status
|
|
124
|
-
return new Response(
|
|
125
|
-
[101, 204, 205, 304].includes(response.status) ? null : response.body,
|
|
126
|
-
{ ...response, headers: new Headers(response.headers) }
|
|
127
|
-
);
|
|
128
|
-
} else if (__FALLBACK_SERVICE__) {
|
|
129
|
-
// There are no more handlers so finish with the fallback service (`env.ASSETS.fetch` in Pages' case)
|
|
130
|
-
return env[__FALLBACK_SERVICE__].fetch(request);
|
|
131
|
-
} else {
|
|
132
|
-
// There was not fallback service so actually make the request to the origin.
|
|
133
|
-
return fetch(request);
|
|
134
|
-
}
|
|
135
|
-
};
|
|
136
|
-
|
|
137
|
-
try {
|
|
138
|
-
return next();
|
|
139
|
-
} catch (err) {
|
|
140
|
-
return new Response("Internal Error", { status: 500 });
|
|
141
|
-
}
|
|
142
|
-
},
|
|
143
|
-
};
|