libstackexchange-0.2.1.0: src/Network/StackExchange/Response.hs
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE UnicodeSyntax #-}
-- | Get response from Request and retrieve data from it
module Network.StackExchange.Response
( -- * Schedule request
SEException(..), askSE
-- * Iso lens
, se
) where
import Control.Applicative ((<$>))
import Control.Exception (Exception, throwIO)
import Data.Maybe (fromMaybe)
import Data.Typeable (Typeable)
import Control.Lens
import Data.Aeson (Value(..))
import Data.ByteString.Lazy (ByteString, toStrict)
import Data.Default (Default(..))
import Data.Text.Lazy.Encoding (encodeUtf8)
import qualified Network.HTTP.Conduit as C
import Network.StackExchange.Request
-- | StackExchange invalid response exception
data SEException = SEException
{ _data ∷ ByteString -- ^ Recieved data
, _error ∷ String -- ^ Parser/libstackexchange errors
} deriving (Show, Typeable)
instance Exception SEException
-- | Send Request and parse response
askSE ∷ Request Ready n r → IO r
askSE q = do
let R {_method, _parse} = unwrap q def
r ← C.withManager $ \m → C.parseUrl (render q) >>= \url →
C.responseBody <$> C.httpLbs (url {C.method = toStrict $ encodeUtf8 _method}) m
case _parse of
Just f → return $ f r
Nothing → throwIO $
SEException r "libstackexchange.askSE: no parsing function registered"
-- | Isomorphism for the ease of interaction with aeson-lens
se ∷ (Functor f, Isomorphic k) ⇒ k (SE a → f (SE a)) (Maybe Value → f (Maybe Value))
se = iso to' from'
where
to' = SE . fromMaybe Null
from' (SE Null) = Nothing
from' (SE x) = Just x