0
0
mirror of https://github.com/honojs/hono.git synced 2024-12-01 11:51:01 +01:00
hono/deno_dist/middleware/compress/index.ts

22 lines
729 B
TypeScript
Raw Normal View History

2022-07-16 03:26:14 +02:00
import type { Context } from '../../context.ts'
import type { Next } from '../../hono.ts'
interface CompressionOptions {
encoding?: 'gzip' | 'deflate'
}
export const compress = (options?: CompressionOptions) => {
return async (ctx: Context, next: Next) => {
await next()
const accepted = ctx.req.headers.get('Accept-Encoding')
const pattern = options?.encoding ?? /gzip|deflate/
const match = accepted?.match(pattern)
if (!accepted || !match || !ctx.res.body) {
return
}
const encoding = match[0]
const stream = new CompressionStream(encoding)
ctx.res = new Response(ctx.res.body.pipeThrough(stream), ctx.res.clone())
ctx.res.headers.set('Content-Encoding', encoding)
}
}