packages feed

wai-extra-3.1.18: Network/Wai/Middleware/Autohead.hs

{-# LANGUAGE CPP #-}

-- | Automatically produce responses to HEAD requests based on the underlying
-- applications GET response.
module Network.Wai.Middleware.Autohead (autohead) where

#if __GLASGOW_HASKELL__ < 710
import Data.Monoid (mempty)
#endif
import Network.Wai (
    Middleware,
    requestMethod,
    responseBuilder,
    responseToStream,
 )

autohead :: Middleware
autohead app req sendResponse
    | requestMethod req == "HEAD" = app req{requestMethod = "GET"} $ \res -> do
        let (s, hs, _) = responseToStream res
        sendResponse $ responseBuilder s hs mempty
    | otherwise = app req sendResponse