-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.ts
61 lines (52 loc) · 1.87 KB
/
index.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
import { ExecutionContext } from '@cloudflare/workers-types'
import cookie from 'cookie'
export interface Env {
// Example binding to KV. Learn more at https://developers.cloudflare.com/workers/runtime-apis/kv/
// MY_KV_NAMESPACE: KVNamespace;
//
// Example binding to Durable Object. Learn more at https://developers.cloudflare.com/workers/runtime-apis/durable-objects/
// MY_DURABLE_OBJECT: DurableObjectNamespace;
//
// Example binding to R2. Learn more at https://developers.cloudflare.com/workers/runtime-apis/r2/
// MY_BUCKET: R2Bucket;
ENVIRONMENT: string
}
declare const ENVIRONMENT: string
export default {
async fetch (
request: Request,
env: Env,
ctx: ExecutionContext
): Promise<Response> {
const { ENVIRONMENT } = env
const isProd = ENVIRONMENT === 'production'
const urlObj = new URL(request.url)
const cookieObj = cookie.parse(request.headers.get('Cookie') || '')
const justGoToApp = cookieObj && cookieObj[`spa`] == '1'
console.log('D:', urlObj.pathname)
console.log('D:', JSON.stringify(env))
const landingEntryPoint = isProd ? `https://logseq-sites.pages.dev` :
`http://127.0.0.1:1234`
const appEntryPoint = `https://logseq.com/?spa=true`
const appAssetsPoint = `https://logseq.com`
if (['/', '/index.html'].includes(urlObj.pathname)) {
const entryHtml = await (await fetch(
justGoToApp ? appEntryPoint : landingEntryPoint
)).text()
return new Response(entryHtml, {
headers: {
'content-type': 'text/html;charset=UTF-8'
}
})
}
const forceAppEndpoint = [
`/js/worker.js`,
`/js/magic_portal.js`,
`/js/lightning-fs.min.js`
].some(it => {
return urlObj.pathname?.startsWith(it)
})
// TODO: just return object
return fetch(`${forceAppEndpoint ? appAssetsPoint : landingEntryPoint}${urlObj.pathname}`)
},
}