Created
February 14, 2017 15:05
-
-
Save tomsmalley/770310914c2d84413fc1a011a6cc0e07 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE DataKinds #-} | |
{-# LANGUAGE DeriveDataTypeable #-} | |
{-# LANGUAGE DeriveFunctor #-} | |
{-# LANGUAGE PolyKinds #-} | |
{-# LANGUAGE TypeOperators #-} | |
{-# LANGUAGE RecordWildCards #-} | |
{-# LANGUAGE FlexibleInstances #-} | |
{-# LANGUAGE MultiParamTypeClasses #-} | |
{-# LANGUAGE TypeFamilies #-} | |
{-# LANGUAGE ScopedTypeVariables #-} | |
module RequiredHeader (RequiredHeader) where | |
import Data.Aeson (ToJSON) | |
import Data.ByteString (ByteString) | |
import Data.String (fromString) | |
import Data.Typeable | |
import GHC.TypeLits (KnownSymbol, Symbol, symbolVal) | |
import Network.Wai (Request, requestHeaders) | |
import Servant.API ((:>)) | |
import Servant.Server (HasServer(..), ServerT, ServantErr, err400) | |
import Servant.Server.Internal.RoutingApplication ( RouteResult(Fail) | |
, Delayed(..), serverD) | |
import Web.HttpApiData (FromHttpApiData, parseHeaderMaybe) | |
data RequiredHeader (sym :: Symbol) a = RequiredHeader a | |
| MissingRequiredHeader | |
| UndecodableRequiredHeader ByteString | |
deriving (Typeable, Eq, Show, Functor) | |
instance (KnownSymbol sym, FromHttpApiData a, HasServer api context) | |
=> HasServer (RequiredHeader sym a :> api) context where | |
type ServerT (RequiredHeader sym a :> api) m = | |
a -> ServerT api m | |
route Proxy context subserver = | |
let mheader req = parseHeaderMaybe =<< lookup str (requestHeaders req) | |
str = fromString $ symbolVal (Proxy :: Proxy sym) | |
in route (Proxy :: Proxy api) context | |
(passToServerWithFail err400 subserver mheader) | |
-- | Like `passToServer` but with failure. | |
passToServerWithFail :: ServantErr -> Delayed env (a -> b) | |
-> (Request -> Maybe a) -> Delayed env b | |
passToServerWithFail e Delayed{..} f = | |
Delayed | |
{ serverD = \ c p a b req -> | |
case f req of | |
Nothing -> Fail e | |
Just x -> ($ x) <$> serverD c p a b req | |
, .. | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
servant and servant-server >= 0.10