forked from benvinegar/counterscale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.ts
69 lines (59 loc) · 2.15 KB
/
server.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
import type { RequestInit } from "@cloudflare/workers-types";
import { getAssetFromKV } from "@cloudflare/kv-asset-handler";
import type { AppLoadContext } from "@remix-run/cloudflare";
import { createRequestHandler, logDevReady } from "@remix-run/cloudflare";
import { collectRequestHandler } from "./app/analytics/collect";
import * as build from "@remix-run/dev/server-build";
// eslint-disable-next-line import/no-unresolved
import __STATIC_CONTENT_MANIFEST from "__STATIC_CONTENT_MANIFEST";
const MANIFEST = JSON.parse(__STATIC_CONTENT_MANIFEST);
const handleRemixRequest = createRequestHandler(build, process.env.NODE_ENV);
if (process.env.NODE_ENV === "development") {
logDevReady(build);
}
export default {
async fetch(
request: Request,
env: Environment & { VERSION: string },
ctx: ExecutionContext,
): Promise<Response> {
try {
const url = new URL(request.url);
if (url.pathname.startsWith("/collect")) {
return collectRequestHandler(request, env);
}
const ttl = url.pathname.startsWith("/build/")
? 60 * 60 * 24 * 365 // 1 year
: 60 * 5; // 5 minutes
return await getAssetFromKV(
{
request,
waitUntil: ctx.waitUntil.bind(ctx),
} as FetchEvent,
{
ASSET_NAMESPACE: env.__STATIC_CONTENT,
ASSET_MANIFEST: MANIFEST,
cacheControl: {
browserTTL: ttl,
edgeTTL: ttl,
},
},
);
} catch (error) {
// No-op
}
try {
const loadContext: AppLoadContext = {
env,
requestTimezone: (request as RequestInit).cf
?.timezone as string,
};
return await handleRemixRequest(request, loadContext);
} catch (error) {
console.log(error);
return new Response("An unexpected error occurred", {
status: 500,
});
}
},
};