-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Core functionality and class for client function generation for servant APIs -- -- This library provides backend-agnostic generation of client functions. -- For more information, see the README. @package servant-client-core @version 0.16 module Servant.Client.Core.BaseUrl -- | Simple data type to represent the target of HTTP requests for -- servant's automatically-generated clients. data BaseUrl BaseUrl :: Scheme -> String -> Int -> String -> BaseUrl -- | URI scheme to use [baseUrlScheme] :: BaseUrl -> Scheme -- | host (eg "haskell.org") [baseUrlHost] :: BaseUrl -> String -- | port (eg 80) [baseUrlPort] :: BaseUrl -> Int -- | path (eg "ab/c") [baseUrlPath] :: BaseUrl -> String -- | URI scheme to use data Scheme -- | http:// Http :: Scheme -- | https:// Https :: Scheme -- |
--   >>> showBaseUrl <$> parseBaseUrl "api.example.com"
--   "http://api.example.com"
--   
showBaseUrl :: BaseUrl -> String -- |
--   >>> parseBaseUrl "api.example.com"
--   BaseUrl {baseUrlScheme = Http, baseUrlHost = "api.example.com", baseUrlPort = 80, baseUrlPath = ""}
--   
-- -- Note: trailing slash is removed -- --
--   >>> parseBaseUrl "api.example.com/"
--   BaseUrl {baseUrlScheme = Http, baseUrlHost = "api.example.com", baseUrlPort = 80, baseUrlPath = ""}
--   
-- --
--   >>> parseBaseUrl "api.example.com/dir/"
--   BaseUrl {baseUrlScheme = Http, baseUrlHost = "api.example.com", baseUrlPort = 80, baseUrlPath = "/dir"}
--   
parseBaseUrl :: MonadThrow m => String -> m BaseUrl newtype InvalidBaseUrlException InvalidBaseUrlException :: String -> InvalidBaseUrlException instance GHC.Show.Show Servant.Client.Core.BaseUrl.InvalidBaseUrlException instance Data.Data.Data Servant.Client.Core.BaseUrl.BaseUrl instance Language.Haskell.TH.Syntax.Lift Servant.Client.Core.BaseUrl.BaseUrl instance GHC.Generics.Generic Servant.Client.Core.BaseUrl.BaseUrl instance GHC.Classes.Ord Servant.Client.Core.BaseUrl.BaseUrl instance GHC.Show.Show Servant.Client.Core.BaseUrl.BaseUrl instance Data.Data.Data Servant.Client.Core.BaseUrl.Scheme instance Language.Haskell.TH.Syntax.Lift Servant.Client.Core.BaseUrl.Scheme instance GHC.Generics.Generic Servant.Client.Core.BaseUrl.Scheme instance GHC.Classes.Ord Servant.Client.Core.BaseUrl.Scheme instance GHC.Classes.Eq Servant.Client.Core.BaseUrl.Scheme instance GHC.Show.Show Servant.Client.Core.BaseUrl.Scheme instance GHC.Exception.Type.Exception Servant.Client.Core.BaseUrl.InvalidBaseUrlException instance Control.DeepSeq.NFData Servant.Client.Core.BaseUrl.BaseUrl instance GHC.Classes.Eq Servant.Client.Core.BaseUrl.BaseUrl instance Data.Aeson.Types.ToJSON.ToJSON Servant.Client.Core.BaseUrl.BaseUrl instance Data.Aeson.Types.FromJSON.FromJSON Servant.Client.Core.BaseUrl.BaseUrl instance Data.Aeson.Types.ToJSON.ToJSONKey Servant.Client.Core.BaseUrl.BaseUrl instance Data.Aeson.Types.FromJSON.FromJSONKey Servant.Client.Core.BaseUrl.BaseUrl module Servant.Client.Core.Request type Request = RequestF RequestBody Builder data RequestF body path Request :: path -> Seq QueryItem -> Maybe (body, MediaType) -> Seq MediaType -> Seq Header -> HttpVersion -> Method -> RequestF body path [requestPath] :: RequestF body path -> path [requestQueryString] :: RequestF body path -> Seq QueryItem [requestBody] :: RequestF body path -> Maybe (body, MediaType) [requestAccept] :: RequestF body path -> Seq MediaType [requestHeaders] :: RequestF body path -> Seq Header [requestHttpVersion] :: RequestF body path -> HttpVersion [requestMethod] :: RequestF body path -> Method -- | The request body. R replica of the http-client -- RequestBody. data RequestBody RequestBodyLBS :: ByteString -> RequestBody RequestBodyBS :: ByteString -> RequestBody RequestBodySource :: SourceIO ByteString -> RequestBody defaultRequest :: Request addHeader :: ToHttpApiData a => HeaderName -> a -> Request -> Request appendToPath :: Text -> Request -> Request appendToQueryString :: Text -> Maybe Text -> Request -> Request -- | Set body and media type of the request being constructed. setRequestBody :: RequestBody -> MediaType -> Request -> Request -- | Set body and media type of the request being constructed. -- -- The body is set to the given bytestring using the -- RequestBodyLBS constructor. setRequestBodyLBS :: ByteString -> MediaType -> Request -> Request instance GHC.Generics.Generic Servant.Client.Core.Request.RequestBody instance Data.Traversable.Traversable (Servant.Client.Core.Request.RequestF body) instance Data.Foldable.Foldable (Servant.Client.Core.Request.RequestF body) instance GHC.Base.Functor (Servant.Client.Core.Request.RequestF body) instance (GHC.Show.Show path, GHC.Show.Show body) => GHC.Show.Show (Servant.Client.Core.Request.RequestF body path) instance (GHC.Classes.Eq path, GHC.Classes.Eq body) => GHC.Classes.Eq (Servant.Client.Core.Request.RequestF body path) instance GHC.Generics.Generic (Servant.Client.Core.Request.RequestF body path) instance GHC.Show.Show Servant.Client.Core.Request.RequestBody instance Data.Bifunctor.Bifunctor Servant.Client.Core.Request.RequestF instance Data.Bifoldable.Bifoldable Servant.Client.Core.Request.RequestF instance Data.Bitraversable.Bitraversable Servant.Client.Core.Request.RequestF instance (Control.DeepSeq.NFData path, Control.DeepSeq.NFData body) => Control.DeepSeq.NFData (Servant.Client.Core.Request.RequestF body path) -- | Basic Authentication for clients module Servant.Client.Core.BasicAuth -- | Authenticate a request using Basic Authentication basicAuthReq :: BasicAuthData -> Request -> Request -- | Authentication for clients module Servant.Client.Core.Auth -- | For a resource protected by authentication (e.g. AuthProtect), we need -- to provide the client with some data used to add authentication data -- to a request -- -- NOTE: THIS API IS EXPERIMENTAL AND SUBJECT TO CHANGE type family AuthClientData a :: * -- | For better type inference and to avoid usage of a data family, we -- newtype wrap the combination of some AuthClientData and a -- function to add authentication data to a request -- -- NOTE: THIS API IS EXPERIMENTAL AND SUBJECT TO CHANGE newtype AuthenticatedRequest a AuthenticatedRequest :: (AuthClientData a, AuthClientData a -> Request -> Request) -> AuthenticatedRequest a [unAuthReq] :: AuthenticatedRequest a -> (AuthClientData a, AuthClientData a -> Request -> Request) -- | Handy helper to avoid wrapping datatypes in tuples everywhere. -- -- NOTE: THIS API IS EXPERIMENTAL AND SUBJECT TO CHANGE mkAuthenticatedRequest :: AuthClientData a -> (AuthClientData a -> Request -> Request) -> AuthenticatedRequest a module Servant.Client.Core.Response type Response = ResponseF ByteString type StreamingResponse = ResponseF (SourceIO ByteString) data ResponseF a Response :: Status -> Seq Header -> HttpVersion -> a -> ResponseF a [responseStatusCode] :: ResponseF a -> Status [responseHeaders] :: ResponseF a -> Seq Header [responseHttpVersion] :: ResponseF a -> HttpVersion [responseBody] :: ResponseF a -> a instance Data.Traversable.Traversable Servant.Client.Core.Response.ResponseF instance Data.Foldable.Foldable Servant.Client.Core.Response.ResponseF instance GHC.Base.Functor Servant.Client.Core.Response.ResponseF instance GHC.Generics.Generic (Servant.Client.Core.Response.ResponseF a) instance GHC.Show.Show a => GHC.Show.Show (Servant.Client.Core.Response.ResponseF a) instance GHC.Classes.Eq a => GHC.Classes.Eq (Servant.Client.Core.Response.ResponseF a) instance Control.DeepSeq.NFData a => Control.DeepSeq.NFData (Servant.Client.Core.Response.ResponseF a) module Servant.Client.Core.ClientError -- | A type representing possible errors in a request -- -- Note that this type substantially changed in 0.12. data ClientError -- | The server returned an error response including the failing request. -- requestPath includes the BaseUrl and the path of the -- request. FailureResponse :: RequestF () (BaseUrl, ByteString) -> Response -> ClientError -- | The body could not be decoded at the expected type DecodeFailure :: Text -> Response -> ClientError -- | The content-type of the response is not supported UnsupportedContentType :: MediaType -> Response -> ClientError -- | The content-type header is invalid InvalidContentTypeHeader :: Response -> ClientError -- | There was a connection error, and no response was received ConnectionError :: SomeException -> ClientError instance GHC.Generics.Generic Servant.Client.Core.ClientError.ClientError instance GHC.Show.Show Servant.Client.Core.ClientError.ClientError instance GHC.Classes.Eq Servant.Client.Core.ClientError.ClientError instance GHC.Exception.Type.Exception Servant.Client.Core.ClientError.ClientError instance Control.DeepSeq.NFData Servant.Client.Core.ClientError.ClientError -- | Types for possible backends to run client-side RequestF queries module Servant.Client.Core.RunClient class Monad m => RunClient m -- | How to make a request. runRequest :: RunClient m => Request -> m Response throwClientError :: RunClient m => ClientError -> m a class RunClient m => RunStreamingClient m withStreamingRequest :: RunStreamingClient m => Request -> (StreamingResponse -> IO a) -> m a -- | ClientF cannot stream. -- -- Compare to RunClient. data ClientF a RunRequest :: Request -> (Response -> a) -> ClientF a Throw :: ClientError -> ClientF a instance GHC.Base.Functor Servant.Client.Core.RunClient.ClientF instance (Servant.Client.Core.RunClient.ClientF Data.Type.Equality.~ f) => Servant.Client.Core.RunClient.RunClient (Control.Monad.Free.Free f) module Servant.Client.Core.HasClient -- | clientIn allows you to produce operations to query an API from -- a client within a RunClient monad. -- --
--   type MyApi = "books" :> Get '[JSON] [Book] -- GET /books
--           :<|> "books" :> ReqBody '[JSON] Book :> Post '[JSON] Book -- POST /books
--   
--   myApi :: Proxy MyApi
--   myApi = Proxy
--   
--   clientM :: Proxy ClientM
--   clientM = Proxy
--   
--   getAllBooks :: ClientM [Book]
--   postNewBook :: Book -> ClientM Book
--   (getAllBooks :<|> postNewBook) = myApi `clientIn` clientM
--   
clientIn :: HasClient m api => Proxy api -> Proxy m -> Client m api -- | This class lets us define how each API combinator influences the -- creation of an HTTP request. -- -- Unless you are writing a new backend for servant-client-core -- or new combinators that you want to support client-generation, you can -- ignore this class. class RunClient m => HasClient m api where { type family Client (m :: * -> *) (api :: *) :: *; } clientWithRoute :: HasClient m api => Proxy m -> Proxy api -> Request -> Client m api hoistClientMonad :: HasClient m api => Proxy m -> Proxy api -> (forall x. mon x -> mon' x) -> Client mon api -> Client mon' api -- | Singleton type representing a client for an empty API. data EmptyClient EmptyClient :: EmptyClient instance GHC.Enum.Enum Servant.Client.Core.HasClient.EmptyClient instance GHC.Enum.Bounded Servant.Client.Core.HasClient.EmptyClient instance GHC.Show.Show Servant.Client.Core.HasClient.EmptyClient instance GHC.Classes.Eq Servant.Client.Core.HasClient.EmptyClient instance Servant.Client.Core.RunClient.RunClient m => Servant.Client.Core.HasClient.HasClient m Servant.API.Empty.EmptyAPI instance (Servant.Client.Core.HasClient.HasClient m a, Servant.Client.Core.HasClient.HasClient m b) => Servant.Client.Core.HasClient.HasClient m (a Servant.API.Alternative.:<|> b) instance (GHC.TypeLits.KnownSymbol capture, Web.Internal.HttpApiData.ToHttpApiData a, Servant.Client.Core.HasClient.HasClient m api) => Servant.Client.Core.HasClient.HasClient m (Servant.API.Capture.Capture' mods capture a Servant.API.Sub.:> api) instance (GHC.TypeLits.KnownSymbol capture, Web.Internal.HttpApiData.ToHttpApiData a, Servant.Client.Core.HasClient.HasClient m sublayout) => Servant.Client.Core.HasClient.HasClient m (Servant.API.Capture.CaptureAll capture a Servant.API.Sub.:> sublayout) instance forall k1 (m :: * -> *) ct a (method :: k1) (cts' :: [*]) (cts :: [*]) (status :: GHC.Types.Nat). (Servant.Client.Core.RunClient.RunClient m, Servant.API.ContentTypes.MimeUnrender ct a, Servant.API.Verbs.ReflectMethod method, cts' Data.Type.Equality.~ (ct : cts)) => Servant.Client.Core.HasClient.HasClient m (Servant.API.Verbs.Verb method status cts' a) instance forall k1 (m :: * -> *) (method :: k1) (status :: GHC.Types.Nat) (cts :: [*]). (Servant.Client.Core.RunClient.RunClient m, Servant.API.Verbs.ReflectMethod method) => Servant.Client.Core.HasClient.HasClient m (Servant.API.Verbs.Verb method status cts Servant.API.ContentTypes.NoContent) instance forall k1 (m :: * -> *) ct a (ls :: [*]) (method :: k1) (cts' :: [*]) (cts :: [*]) (status :: GHC.Types.Nat). (Servant.Client.Core.RunClient.RunClient m, Servant.API.ContentTypes.MimeUnrender ct a, Servant.API.ResponseHeaders.BuildHeadersTo ls, Servant.API.Verbs.ReflectMethod method, cts' Data.Type.Equality.~ (ct : cts)) => Servant.Client.Core.HasClient.HasClient m (Servant.API.Verbs.Verb method status cts' (Servant.API.ResponseHeaders.Headers ls a)) instance forall k1 (m :: * -> *) (ls :: [*]) (method :: k1) (status :: GHC.Types.Nat) (cts :: [*]). (Servant.Client.Core.RunClient.RunClient m, Servant.API.ResponseHeaders.BuildHeadersTo ls, Servant.API.Verbs.ReflectMethod method) => Servant.Client.Core.HasClient.HasClient m (Servant.API.Verbs.Verb method status cts (Servant.API.ResponseHeaders.Headers ls Servant.API.ContentTypes.NoContent)) instance forall k1 (m :: * -> *) ct chunk (method :: k1) framing a (status :: GHC.Types.Nat). (Servant.Client.Core.RunClient.RunStreamingClient m, Servant.API.ContentTypes.MimeUnrender ct chunk, Servant.API.Verbs.ReflectMethod method, Servant.API.Stream.FramingUnrender framing, Servant.API.Stream.FromSourceIO chunk a) => Servant.Client.Core.HasClient.HasClient m (Servant.API.Stream.Stream method status framing ct a) instance (GHC.TypeLits.KnownSymbol sym, Web.Internal.HttpApiData.ToHttpApiData a, Servant.Client.Core.HasClient.HasClient m api, Data.Singletons.Bool.SBoolI (Servant.API.Modifiers.FoldRequired mods)) => Servant.Client.Core.HasClient.HasClient m (Servant.API.Header.Header' mods sym a Servant.API.Sub.:> api) instance Servant.Client.Core.HasClient.HasClient m api => Servant.Client.Core.HasClient.HasClient m (Network.HTTP.Types.Version.HttpVersion Servant.API.Sub.:> api) instance Servant.Client.Core.HasClient.HasClient m api => Servant.Client.Core.HasClient.HasClient m (Servant.API.Description.Summary desc Servant.API.Sub.:> api) instance Servant.Client.Core.HasClient.HasClient m api => Servant.Client.Core.HasClient.HasClient m (Servant.API.Description.Description desc Servant.API.Sub.:> api) instance (GHC.TypeLits.KnownSymbol sym, Web.Internal.HttpApiData.ToHttpApiData a, Servant.Client.Core.HasClient.HasClient m api, Data.Singletons.Bool.SBoolI (Servant.API.Modifiers.FoldRequired mods)) => Servant.Client.Core.HasClient.HasClient m (Servant.API.QueryParam.QueryParam' mods sym a Servant.API.Sub.:> api) instance (GHC.TypeLits.KnownSymbol sym, Web.Internal.HttpApiData.ToHttpApiData a, Servant.Client.Core.HasClient.HasClient m api) => Servant.Client.Core.HasClient.HasClient m (Servant.API.QueryParam.QueryParams sym a Servant.API.Sub.:> api) instance (GHC.TypeLits.KnownSymbol sym, Servant.Client.Core.HasClient.HasClient m api) => Servant.Client.Core.HasClient.HasClient m (Servant.API.QueryParam.QueryFlag sym Servant.API.Sub.:> api) instance Servant.Client.Core.RunClient.RunClient m => Servant.Client.Core.HasClient.HasClient m Servant.API.Raw.Raw instance (Servant.API.ContentTypes.MimeRender ct a, Servant.Client.Core.HasClient.HasClient m api) => Servant.Client.Core.HasClient.HasClient m (Servant.API.ReqBody.ReqBody' mods (ct : cts) a Servant.API.Sub.:> api) instance (Servant.Client.Core.HasClient.HasClient m api, Servant.API.ContentTypes.MimeRender ctype chunk, Servant.API.Stream.FramingRender framing, Servant.API.Stream.ToSourceIO chunk a) => Servant.Client.Core.HasClient.HasClient m (Servant.API.Stream.StreamBody' mods framing ctype a Servant.API.Sub.:> api) instance (GHC.TypeLits.KnownSymbol path, Servant.Client.Core.HasClient.HasClient m api) => Servant.Client.Core.HasClient.HasClient m (path Servant.API.Sub.:> api) instance Servant.Client.Core.HasClient.HasClient m api => Servant.Client.Core.HasClient.HasClient m (Data.Vault.Lazy.Vault Servant.API.Sub.:> api) instance Servant.Client.Core.HasClient.HasClient m api => Servant.Client.Core.HasClient.HasClient m (Servant.API.RemoteHost.RemoteHost Servant.API.Sub.:> api) instance Servant.Client.Core.HasClient.HasClient m api => Servant.Client.Core.HasClient.HasClient m (Servant.API.IsSecure.IsSecure Servant.API.Sub.:> api) instance Servant.Client.Core.HasClient.HasClient m subapi => Servant.Client.Core.HasClient.HasClient m (Servant.API.WithNamedContext.WithNamedContext name context subapi) instance forall k (m :: * -> *) api (tag :: k). Servant.Client.Core.HasClient.HasClient m api => Servant.Client.Core.HasClient.HasClient m (Servant.API.Experimental.Auth.AuthProtect tag Servant.API.Sub.:> api) instance Servant.Client.Core.HasClient.HasClient m api => Servant.Client.Core.HasClient.HasClient m (Servant.API.BasicAuth.BasicAuth realm usr Servant.API.Sub.:> api) -- | This module is a utility for servant-client-core backend -- writers. It contains all the functionality from -- servant-client-core that should be re-exported. module Servant.Client.Core.Reexport -- | This class lets us define how each API combinator influences the -- creation of an HTTP request. -- -- Unless you are writing a new backend for servant-client-core -- or new combinators that you want to support client-generation, you can -- ignore this class. class RunClient m => HasClient m api where { type family Client (m :: * -> *) (api :: *) :: *; } clientWithRoute :: HasClient m api => Proxy m -> Proxy api -> Request -> Client m api hoistClientMonad :: HasClient m api => Proxy m -> Proxy api -> (forall x. mon x -> mon' x) -> Client mon api -> Client mon' api type Response = ResponseF ByteString type StreamingResponse = ResponseF (SourceIO ByteString) data ResponseF a Response :: Status -> Seq Header -> HttpVersion -> a -> ResponseF a [responseStatusCode] :: ResponseF a -> Status [responseHeaders] :: ResponseF a -> Seq Header [responseHttpVersion] :: ResponseF a -> HttpVersion [responseBody] :: ResponseF a -> a -- | A type representing possible errors in a request -- -- Note that this type substantially changed in 0.12. data ClientError -- | The server returned an error response including the failing request. -- requestPath includes the BaseUrl and the path of the -- request. FailureResponse :: RequestF () (BaseUrl, ByteString) -> Response -> ClientError -- | The body could not be decoded at the expected type DecodeFailure :: Text -> Response -> ClientError -- | The content-type of the response is not supported UnsupportedContentType :: MediaType -> Response -> ClientError -- | The content-type header is invalid InvalidContentTypeHeader :: Response -> ClientError -- | There was a connection error, and no response was received ConnectionError :: SomeException -> ClientError -- | Singleton type representing a client for an empty API. data EmptyClient EmptyClient :: EmptyClient -- | Simple data type to represent the target of HTTP requests for -- servant's automatically-generated clients. data BaseUrl BaseUrl :: Scheme -> String -> Int -> String -> BaseUrl -- | URI scheme to use [baseUrlScheme] :: BaseUrl -> Scheme -- | host (eg "haskell.org") [baseUrlHost] :: BaseUrl -> String -- | port (eg 80) [baseUrlPort] :: BaseUrl -> Int -- | path (eg "ab/c") [baseUrlPath] :: BaseUrl -> String -- | URI scheme to use data Scheme -- | http:// Http :: Scheme -- | https:// Https :: Scheme -- |
--   >>> showBaseUrl <$> parseBaseUrl "api.example.com"
--   "http://api.example.com"
--   
showBaseUrl :: BaseUrl -> String -- |
--   >>> parseBaseUrl "api.example.com"
--   BaseUrl {baseUrlScheme = Http, baseUrlHost = "api.example.com", baseUrlPort = 80, baseUrlPath = ""}
--   
-- -- Note: trailing slash is removed -- --
--   >>> parseBaseUrl "api.example.com/"
--   BaseUrl {baseUrlScheme = Http, baseUrlHost = "api.example.com", baseUrlPort = 80, baseUrlPath = ""}
--   
-- --
--   >>> parseBaseUrl "api.example.com/dir/"
--   BaseUrl {baseUrlScheme = Http, baseUrlHost = "api.example.com", baseUrlPort = 80, baseUrlPath = "/dir"}
--   
parseBaseUrl :: MonadThrow m => String -> m BaseUrl data InvalidBaseUrlException -- | This module provides backend-agnostic functionality for generating -- clients from servant APIs. By "backend," we mean something -- that concretely executes the request, such as: -- -- -- -- etc. -- -- Each backend is encapsulated in a monad that is an instance of the -- RunClient class. -- -- This library is primarily of interest to backend-writers and -- combinator-writers. For more information, see the README.md module Servant.Client.Core -- | clientIn allows you to produce operations to query an API from -- a client within a RunClient monad. -- --
--   type MyApi = "books" :> Get '[JSON] [Book] -- GET /books
--           :<|> "books" :> ReqBody '[JSON] Book :> Post '[JSON] Book -- POST /books
--   
--   myApi :: Proxy MyApi
--   myApi = Proxy
--   
--   clientM :: Proxy ClientM
--   clientM = Proxy
--   
--   getAllBooks :: ClientM [Book]
--   postNewBook :: Book -> ClientM Book
--   (getAllBooks :<|> postNewBook) = myApi `clientIn` clientM
--   
clientIn :: HasClient m api => Proxy api -> Proxy m -> Client m api -- | This class lets us define how each API combinator influences the -- creation of an HTTP request. -- -- Unless you are writing a new backend for servant-client-core -- or new combinators that you want to support client-generation, you can -- ignore this class. class RunClient m => HasClient m api where { type family Client (m :: * -> *) (api :: *) :: *; } clientWithRoute :: HasClient m api => Proxy m -> Proxy api -> Request -> Client m api hoistClientMonad :: HasClient m api => Proxy m -> Proxy api -> (forall x. mon x -> mon' x) -> Client mon api -> Client mon' api type Request = RequestF RequestBody Builder data RequestF body path Request :: path -> Seq QueryItem -> Maybe (body, MediaType) -> Seq MediaType -> Seq Header -> HttpVersion -> Method -> RequestF body path [requestPath] :: RequestF body path -> path [requestQueryString] :: RequestF body path -> Seq QueryItem [requestBody] :: RequestF body path -> Maybe (body, MediaType) [requestAccept] :: RequestF body path -> Seq MediaType [requestHeaders] :: RequestF body path -> Seq Header [requestHttpVersion] :: RequestF body path -> HttpVersion [requestMethod] :: RequestF body path -> Method defaultRequest :: Request -- | The request body. R replica of the http-client -- RequestBody. data RequestBody RequestBodyLBS :: ByteString -> RequestBody RequestBodyBS :: ByteString -> RequestBody RequestBodySource :: SourceIO ByteString -> RequestBody -- | Handy helper to avoid wrapping datatypes in tuples everywhere. -- -- NOTE: THIS API IS EXPERIMENTAL AND SUBJECT TO CHANGE mkAuthenticatedRequest :: AuthClientData a -> (AuthClientData a -> Request -> Request) -> AuthenticatedRequest a -- | Authenticate a request using Basic Authentication basicAuthReq :: BasicAuthData -> Request -> Request -- | For better type inference and to avoid usage of a data family, we -- newtype wrap the combination of some AuthClientData and a -- function to add authentication data to a request -- -- NOTE: THIS API IS EXPERIMENTAL AND SUBJECT TO CHANGE newtype AuthenticatedRequest a AuthenticatedRequest :: (AuthClientData a, AuthClientData a -> Request -> Request) -> AuthenticatedRequest a [unAuthReq] :: AuthenticatedRequest a -> (AuthClientData a, AuthClientData a -> Request -> Request) -- | For a resource protected by authentication (e.g. AuthProtect), we need -- to provide the client with some data used to add authentication data -- to a request -- -- NOTE: THIS API IS EXPERIMENTAL AND SUBJECT TO CHANGE type family AuthClientData a :: * -- | A type representing possible errors in a request -- -- Note that this type substantially changed in 0.12. data ClientError -- | The server returned an error response including the failing request. -- requestPath includes the BaseUrl and the path of the -- request. FailureResponse :: RequestF () (BaseUrl, ByteString) -> Response -> ClientError -- | The body could not be decoded at the expected type DecodeFailure :: Text -> Response -> ClientError -- | The content-type of the response is not supported UnsupportedContentType :: MediaType -> Response -> ClientError -- | The content-type header is invalid InvalidContentTypeHeader :: Response -> ClientError -- | There was a connection error, and no response was received ConnectionError :: SomeException -> ClientError -- | Singleton type representing a client for an empty API. data EmptyClient EmptyClient :: EmptyClient type Response = ResponseF ByteString data ResponseF a Response :: Status -> Seq Header -> HttpVersion -> a -> ResponseF a [responseStatusCode] :: ResponseF a -> Status [responseHeaders] :: ResponseF a -> Seq Header [responseHttpVersion] :: ResponseF a -> HttpVersion [responseBody] :: ResponseF a -> a class Monad m => RunClient m -- | How to make a request. runRequest :: RunClient m => Request -> m Response throwClientError :: RunClient m => ClientError -> m a -- | Simple data type to represent the target of HTTP requests for -- servant's automatically-generated clients. data BaseUrl BaseUrl :: Scheme -> String -> Int -> String -> BaseUrl -- | URI scheme to use [baseUrlScheme] :: BaseUrl -> Scheme -- | host (eg "haskell.org") [baseUrlHost] :: BaseUrl -> String -- | port (eg 80) [baseUrlPort] :: BaseUrl -> Int -- | path (eg "ab/c") [baseUrlPath] :: BaseUrl -> String -- | URI scheme to use data Scheme -- | http:// Http :: Scheme -- | https:// Https :: Scheme -- |
--   >>> showBaseUrl <$> parseBaseUrl "api.example.com"
--   "http://api.example.com"
--   
showBaseUrl :: BaseUrl -> String -- |
--   >>> parseBaseUrl "api.example.com"
--   BaseUrl {baseUrlScheme = Http, baseUrlHost = "api.example.com", baseUrlPort = 80, baseUrlPath = ""}
--   
-- -- Note: trailing slash is removed -- --
--   >>> parseBaseUrl "api.example.com/"
--   BaseUrl {baseUrlScheme = Http, baseUrlHost = "api.example.com", baseUrlPort = 80, baseUrlPath = ""}
--   
-- --
--   >>> parseBaseUrl "api.example.com/dir/"
--   BaseUrl {baseUrlScheme = Http, baseUrlHost = "api.example.com", baseUrlPort = 80, baseUrlPath = "/dir"}
--   
parseBaseUrl :: MonadThrow m => String -> m BaseUrl newtype InvalidBaseUrlException InvalidBaseUrlException :: String -> InvalidBaseUrlException class RunClient m => RunStreamingClient m withStreamingRequest :: RunStreamingClient m => Request -> (StreamingResponse -> IO a) -> m a type StreamingResponse = ResponseF (SourceIO ByteString) addHeader :: ToHttpApiData a => HeaderName -> a -> Request -> Request appendToQueryString :: Text -> Maybe Text -> Request -> Request appendToPath :: Text -> Request -> Request -- | Set body and media type of the request being constructed. -- -- The body is set to the given bytestring using the -- RequestBodyLBS constructor. setRequestBodyLBS :: ByteString -> MediaType -> Request -> Request -- | Set body and media type of the request being constructed. setRequestBody :: RequestBody -> MediaType -> Request -> Request module Servant.Client.Free client :: HasClient (Free ClientF) api => Proxy api -> Client (Free ClientF) api -- | ClientF cannot stream. -- -- Compare to RunClient. data ClientF a RunRequest :: Request -> (Response -> a) -> ClientF a Throw :: ClientError -> ClientF a module Servant.Client.Generic -- | A type that specifies that an API reocrd contains a client -- implementation. data AsClientT (m :: * -> *) -- | Generate a record of client functions. genericClient :: forall routes m. (HasClient m (ToServantApi routes), GenericServant routes (AsClientT m), Client m (ToServantApi routes) ~ ToServant routes (AsClientT m)) => routes (AsClientT m) -- | genericClient but with hoistClientMonad in between. genericClientHoist :: forall routes m n. (HasClient m (ToServantApi routes), GenericServant routes (AsClientT n), Client n (ToServantApi routes) ~ ToServant routes (AsClientT n)) => (forall x. m x -> n x) -> routes (AsClientT n) instance Servant.API.Generic.GenericMode (Servant.Client.Generic.AsClientT m)