wai-extra-0.0.0: Network/Wai/Middleware/Gzip.hs
{-# LANGUAGE Rank2Types #-}
{-# LANGUAGE ScopedTypeVariables #-}
---------------------------------------------------------
-- |
-- Module : Network.Wai.Middleware.Gzip
-- Copyright : Michael Snoyman
-- License : BSD3
--
-- Maintainer : Michael Snoyman <michael@snoyman.com>
-- Stability : Unstable
-- Portability : portable
--
-- Automatic gzip compression of responses.
--
---------------------------------------------------------
module Network.Wai.Middleware.Gzip (gzip) where
import Network.Wai
import Network.Wai.Enumerator (fromLBS', toLBS)
import Codec.Compression.GZip (compress)
import Data.Maybe (fromMaybe)
import Data.List.Split (splitOneOf)
import qualified Data.ByteString.Char8 as B
-- | Use gzip to compress the body of the response.
--
-- Analyzes the \"Accept-Encoding\" header from the client to determine
-- if gzip is supported.
--
-- Possible future enhancements:
--
-- * Only compress if the response is above a certain size.
--
-- * Add Content-Length.
--
-- * I read somewhere that \"the beast\" (MSIE) can\'t support compression
-- for Javascript files..
gzip :: Middleware
gzip app env = do
res <- app env
case responseBody res of
Left _ -> return res
Right _ -> do
let enc = fromMaybe []
$ (splitOneOf "," . B.unpack)
`fmap` lookup AcceptEncoding
(requestHeaders env)
if "gzip" `elem` enc
then return res
{ responseBody = compressE $ responseBody res
, responseHeaders = (ContentEncoding, B.pack "gzip")
: responseHeaders res
}
else return res
compressE :: Either FilePath Enumerator -> Either FilePath Enumerator
compressE (Left fp) = Left fp
compressE (Right e) = Right $ fromLBS' $ fmap compress $ toLBS e