0
0
mirror of https://github.com/honojs/hono.git synced 2024-12-01 10:51:01 +00:00
hono/deno_dist/deno/serve-static.ts

43 lines
1.0 KiB
TypeScript
Raw Normal View History

import type { MiddlewareHandler } from '../hono.ts'
import { getFilePath } from '../utils/filepath.ts'
import { getMimeType } from '../utils/mime.ts'
export type ServeStaticOptions = {
root?: string
path?: string
}
const DEFAULT_DOCUMENT = 'index.html'
export const serveStatic = (options: ServeStaticOptions = { root: '' }): MiddlewareHandler => {
return async (c, next): Promise<Response | undefined> => {
// Do nothing if Response is already set
if (c.finalized) {
await next()
}
const url = new URL(c.req.url)
let path = getFilePath({
filename: options.path ?? url.pathname,
root: options.root,
defaultDocument: DEFAULT_DOCUMENT,
})
path = `./${path}`
const content = await Deno.readFile(path)
if (content) {
const mimeType = getMimeType(path)
if (mimeType) {
c.header('Content-Type', mimeType)
}
// Return Response object
return c.body(content)
} else {
console.warn(`Static file: ${path} is not found`)
await next()
}
return
}
}