module Crypto.JOSE.Types.Orphans where
import Prelude hiding (mapM)
import Control.Applicative
import Data.Traversable
import Data.List.NonEmpty (NonEmpty(..), toList)
import qualified Data.Text as T
import qualified Data.Vector as V
import Network.URI (URI, parseURI)
import Test.QuickCheck
import Data.Aeson
#if ! MIN_VERSION_aeson(0,11,1)
instance FromJSON a => FromJSON (NonEmpty a) where
parseJSON = withArray "NonEmpty [a]" $ \v -> case V.toList v of
[] -> fail "Non-empty list required"
(x:xs) -> mapM parseJSON (x :| xs)
instance ToJSON a => ToJSON (NonEmpty a) where
toJSON = Array . V.fromList . map toJSON . toList
#endif
instance FromJSON URI where
parseJSON = withText "URI" $
maybe (fail "not a URI") return . parseURI . T.unpack
instance ToJSON URI where
toJSON = String . T.pack . show
#if ! MIN_VERSION_QuickCheck(2,9,0)
instance Arbitrary a => Arbitrary (NonEmpty a) where
arbitrary = (:|) <$> arbitrary <*> arbitrary
#endif