-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathserver-entry.js
More file actions
143 lines (122 loc) · 3.77 KB
/
server-entry.js
File metadata and controls
143 lines (122 loc) · 3.77 KB
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
139
140
141
142
143
import { createServer } from 'node:http'
import { readFile, stat } from 'node:fs/promises'
import { join, extname } from 'node:path'
import { fileURLToPath } from 'node:url'
import server from './dist/server/server.js'
const __dirname = fileURLToPath(new URL('.', import.meta.url))
const CLIENT_DIR = join(__dirname, 'dist', 'client')
const port = parseInt(process.env.PORT || '3000', 10)
const host = process.env.HOST || '0.0.0.0'
const MIME_TYPES = {
'.js': 'application/javascript',
'.mjs': 'application/javascript',
'.css': 'text/css',
'.html': 'text/html',
'.json': 'application/json',
'.svg': 'image/svg+xml',
'.png': 'image/png',
'.jpg': 'image/jpeg',
'.jpeg': 'image/jpeg',
'.webp': 'image/webp',
'.gif': 'image/gif',
'.ico': 'image/x-icon',
'.woff': 'font/woff',
'.woff2': 'font/woff2',
'.ttf': 'font/ttf',
'.eot': 'application/vnd.ms-fontobject',
'.map': 'application/json',
'.txt': 'text/plain',
'.xml': 'application/xml',
'.webmanifest': 'application/manifest+json',
}
async function tryServeStatic(req, res) {
const url = new URL(req.url || '/', `http://${req.headers.host || 'localhost'}`)
const pathname = decodeURIComponent(url.pathname)
// Prevent directory traversal
if (pathname.includes('..')) return false
const filePath = join(CLIENT_DIR, pathname)
// Make sure the resolved path is within CLIENT_DIR
if (!filePath.startsWith(CLIENT_DIR)) return false
try {
const fileStat = await stat(filePath)
if (!fileStat.isFile()) return false
const ext = extname(filePath).toLowerCase()
const contentType = MIME_TYPES[ext] || 'application/octet-stream'
const data = await readFile(filePath)
const headers = {
'Content-Type': contentType,
'Content-Length': data.length,
}
// Cache hashed assets aggressively (they have content hashes in filenames)
if (pathname.startsWith('/assets/')) {
headers['Cache-Control'] = 'public, max-age=31536000, immutable'
}
res.writeHead(200, headers)
res.end(data)
return true
} catch {
return false
}
}
const httpServer = createServer(async (req, res) => {
// Try static files first (client assets)
if (req.method === 'GET' || req.method === 'HEAD') {
const served = await tryServeStatic(req, res)
if (served) return
}
// Fall through to SSR handler
const url = new URL(
req.url || '/',
`http://${req.headers.host || 'localhost'}`,
)
const headers = new Headers()
for (const [key, value] of Object.entries(req.headers)) {
if (value) headers.set(key, Array.isArray(value) ? value.join(', ') : value)
}
let body = null
if (req.method !== 'GET' && req.method !== 'HEAD') {
body = await new Promise((resolve) => {
const chunks = []
req.on('data', (chunk) => chunks.push(chunk))
req.on('end', () => resolve(Buffer.concat(chunks)))
})
}
const request = new Request(url.toString(), {
method: req.method,
headers,
body,
duplex: 'half',
})
try {
const response = await server.fetch(request)
res.writeHead(
response.status,
Object.fromEntries(response.headers.entries()),
)
if (response.body) {
const reader = response.body.getReader()
const pump = async () => {
while (true) {
const { done, value } = await reader.read()
if (done) break
res.write(value)
}
res.end()
}
pump().catch((err) => {
console.error('Stream error:', err)
res.end()
})
} else {
const text = await response.text()
res.end(text)
}
} catch (err) {
console.error('Request error:', err)
res.writeHead(500)
res.end('Internal Server Error')
}
})
httpServer.listen(port, host, () => {
console.log(`ClawSuite running at http://${host}:${port}`)
})