-
-
Notifications
You must be signed in to change notification settings - Fork 10.5k
/
Copy pathworker.ts
138 lines (122 loc) · 3.66 KB
/
worker.ts
1
2
3
4
5
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import type {
AppLoadContext,
UNSAFE_MiddlewareEnabled as MiddlewareEnabled,
ServerBuild,
unstable_InitialContext,
} from "react-router";
import { createRequestHandler as createReactRouterRequestHandler } from "react-router";
import { type CacheStorage } from "@cloudflare/workers-types";
type MaybePromise<T> = T | Promise<T>;
/**
* A function that returns the value to use as `context` in route `loader` and
* `action` functions.
*
* You can think of this as an escape hatch that allows you to pass
* environment/platform-specific values through to your loader/action.
*/
export type GetLoadContextFunction<
Env = unknown,
Params extends string = any,
Data extends Record<string, unknown> = Record<string, unknown>
> = (args: {
request: Request;
context: {
cloudflare: EventContext<Env, Params, Data> & {
cf: EventContext<Env, Params, Data>["request"]["cf"];
ctx: {
waitUntil: EventContext<Env, Params, Data>["waitUntil"];
passThroughOnException: EventContext<
Env,
Params,
Data
>["passThroughOnException"];
};
caches: CacheStorage;
};
};
}) => MiddlewareEnabled extends true
? MaybePromise<unstable_InitialContext>
: MaybePromise<AppLoadContext>;
export type RequestHandler<Env = any> = PagesFunction<Env>;
export interface createPagesFunctionHandlerParams<Env = any> {
build: ServerBuild | (() => ServerBuild | Promise<ServerBuild>);
getLoadContext?: GetLoadContextFunction<Env>;
mode?: string;
}
export function createRequestHandler<Env = any>({
build,
mode,
getLoadContext = ({ context }) => ({
...context,
cloudflare: {
...context.cloudflare,
cf: context.cloudflare.request.cf,
},
}),
}: createPagesFunctionHandlerParams<Env>): RequestHandler<Env> {
let handleRequest = createReactRouterRequestHandler(build, mode);
return async (cloudflare) => {
let loadContext = await getLoadContext({
request: cloudflare.request,
context: {
cloudflare: {
...cloudflare,
cf: cloudflare.request.cf!,
ctx: {
waitUntil: cloudflare.waitUntil.bind(cloudflare),
passThroughOnException:
cloudflare.passThroughOnException.bind(cloudflare),
},
caches,
},
},
});
return handleRequest(cloudflare.request, loadContext);
};
}
declare const process: any;
export function createPagesFunctionHandler<Env = any>({
build,
getLoadContext,
mode,
}: createPagesFunctionHandlerParams<Env>) {
let handleRequest = createRequestHandler<Env>({
build,
getLoadContext,
mode,
});
let handleFetch = async (context: EventContext<Env, any, any>) => {
let response: Response | undefined;
// https://github.com/cloudflare/wrangler2/issues/117
context.request.headers.delete("if-none-match");
try {
response = await context.env.ASSETS.fetch(
context.request.url,
context.request.clone()
);
response =
response && response.status >= 200 && response.status < 400
? new Response(response.body, response)
: undefined;
} catch {}
if (!response) {
response = await handleRequest(context);
}
return response;
};
return async (context: EventContext<Env, any, any>) => {
try {
return await handleFetch(context);
} catch (error: unknown) {
if (process.env.NODE_ENV === "development" && error instanceof Error) {
console.error(error);
return new Response(error.message || error.toString(), {
status: 500,
});
}
return new Response("Internal Error", {
status: 500,
});
}
};
}