{-# LANGUAGE OverloadedStrings #-} -- | -- Module : Network.AWS.Data.JSON -- Copyright : (c) 2013-2015 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : provisional -- Portability : non-portable (GHC extensions) -- module Network.AWS.Data.JSON ( -- * FromJSON FromJSON (..) , parseJSONText , eitherDecode' -- ** Parser a , withObject , (.:) , (.:?) , (.!=) -- ** Either String a , eitherParseJSON , (.:>) , (.?>) -- * ToJSON , ToJSON (..) , toJSONText , Value (Object) , object , (.=) ) where import Data.Aeson (eitherDecode') import Data.Aeson.Types import qualified Data.HashMap.Strict as Map import Network.AWS.Data.Text import Prelude parseJSONText :: FromText a => String -> Value -> Parser a parseJSONText n = withText n (either fail return . fromText) toJSONText :: ToText a => a -> Value toJSONText = String . toText eitherParseJSON :: FromJSON a => Object -> Either String a eitherParseJSON = parseEither parseJSON . Object (.:>) :: FromJSON a => Object -> Text -> Either String a (.:>) o k = case Map.lookup k o of Nothing -> Left $ "key " ++ show k ++ " not present" Just v -> parseEither parseJSON v (.?>) :: FromJSON a => Object -> Text -> Either String (Maybe a) (.?>) o k = case Map.lookup k o of Nothing -> Right Nothing Just v -> parseEither parseJSON v