Safe Haskell | Safe |
---|---|
Language | Haskell98 |
Convert Haskell values to and from HTTP API data such as URL pieces, headers and query parameters.
- class ToHttpApiData a where
- toUrlPiece :: a -> Text
- toHeader :: a -> ByteString
- toQueryParam :: a -> Text
- class FromHttpApiData a where
- parseUrlPiece :: Text -> Either Text a
- parseHeader :: ByteString -> Either Text a
- parseQueryParam :: Text -> Either Text a
- toUrlPieces :: (Functor t, ToHttpApiData a) => t a -> t Text
- parseUrlPieces :: (Traversable t, FromHttpApiData a) => t Text -> Either Text (t a)
- toQueryParams :: (Functor t, ToHttpApiData a) => t a -> t Text
- parseQueryParams :: (Traversable t, FromHttpApiData a) => t Text -> Either Text (t a)
- parseUrlPieceMaybe :: FromHttpApiData a => Text -> Maybe a
- parseHeaderMaybe :: FromHttpApiData a => ByteString -> Maybe a
- parseQueryParamMaybe :: FromHttpApiData a => Text -> Maybe a
- defaultParseError :: Text -> Either Text a
- parseMaybeTextData :: (Text -> Maybe a) -> Text -> Either Text a
- showTextData :: Show a => a -> Text
- showt :: Show a => a -> Text
- parseUrlPieceWithPrefix :: FromHttpApiData a => Text -> Text -> Either Text a
- parseHeaderWithPrefix :: FromHttpApiData a => ByteString -> ByteString -> Either Text a
- parseQueryParamWithPrefix :: FromHttpApiData a => Text -> Text -> Either Text a
- parseBoundedTextData :: (Show a, Bounded a, Enum a) => Text -> Either Text a
- readTextData :: Read a => Text -> Either Text a
- runReader :: Reader a -> Text -> Either Text a
- parseBounded :: forall a. (Bounded a, Integral a) => Reader Integer -> Text -> Either Text a
- timeToUrlPiece :: FormatTime t => String -> t -> Text
- timeParseUrlPiece :: ParseTime t => String -> Text -> Either Text t
Documentation
class ToHttpApiData a where Source
Convert value to HTTP API data.
toUrlPiece :: a -> Text Source
Convert to URL path piece.
toHeader :: a -> ByteString Source
Convert to HTTP header value.
toQueryParam :: a -> Text Source
Convert to query param value.
class FromHttpApiData a where Source
Parse value from HTTP API data.
parseUrlPiece :: Text -> Either Text a Source
Parse URL path piece.
parseHeader :: ByteString -> Either Text a Source
Parse HTTP header value.
parseQueryParam :: Text -> Either Text a Source
Parse query param value.
toUrlPieces :: (Functor t, ToHttpApiData a) => t a -> t Text Source
Convert multiple values to a list of URL pieces.
>>>
toUrlPieces [1, 2, 3]
["1","2","3"]
parseUrlPieces :: (Traversable t, FromHttpApiData a) => t Text -> Either Text (t a) Source
Parse multiple URL pieces.
>>>
parseUrlPieces ["true", "false"] :: Either Text [Bool]
Right [True,False]>>>
parseUrlPieces ["123", "hello", "world"] :: Either Text [Int]
Left "could not parse: `hello' (input does not start with a digit)"
toQueryParams :: (Functor t, ToHttpApiData a) => t a -> t Text Source
Convert multiple values to a list of query parameter values.
>>>
toQueryParams [fromGregorian 2015 10 03, fromGregorian 2015 12 01]
["2015-10-03","2015-12-01"]
parseQueryParams :: (Traversable t, FromHttpApiData a) => t Text -> Either Text (t a) Source
Parse multiple query parameters.
>>>
parseQueryParams ["1", "2", "3"] :: Either Text [Int]
Right [1,2,3]>>>
parseQueryParams ["64", "128", "256"] :: Either Text [Word8]
Left "out of bounds: `256' (should be between 0 and 255)"
parseUrlPieceMaybe :: FromHttpApiData a => Text -> Maybe a Source
Parse URL path piece in a
.Maybe
>>>
parseUrlPieceMaybe "12" :: Maybe Int
Just 12
parseHeaderMaybe :: FromHttpApiData a => ByteString -> Maybe a Source
Parse HTTP header value in a
.Maybe
>>>
parseHeaderMaybe "hello" :: Maybe Text
Just "hello"
parseQueryParamMaybe :: FromHttpApiData a => Text -> Maybe a Source
Parse query param value in a
.Maybe
>>>
parseQueryParamMaybe "true" :: Maybe Bool
Just True
defaultParseError :: Text -> Either Text a Source
Default parsing error.
showTextData :: Show a => a -> Text Source
Lower case.
Convert to URL piece using
instance.
The result is always lower cased.Show
>>>
showTextData True
"true"
This can be used as a default implementation for enumeration types:
>>>
data MyData = Foo | Bar | Baz deriving (Show)
>>>
instance ToHttpApiData MyData where toUrlPiece = showTextData
>>>
toUrlPiece Foo
"foo"
parseUrlPieceWithPrefix :: FromHttpApiData a => Text -> Text -> Either Text a Source
Case insensitive.
Parse given text case insensitive and then parse the rest of the input
using
.parseUrlPiece
>>>
parseUrlPieceWithPrefix "Just " "just 10" :: Either Text Int
Right 10>>>
parseUrlPieceWithPrefix "Left " "left" :: Either Text Bool
Left "could not parse: `left'"
This can be used to implement
for single field constructors:FromHttpApiData
>>>
data Foo = Foo Int deriving (Show)
>>>
instance FromHttpApiData Foo where parseUrlPiece s = Foo <$> parseUrlPieceWithPrefix "Foo " s
>>>
parseUrlPiece "foo 1" :: Either Text Foo
Right (Foo 1)
>>>
data BasicAuthToken = BasicAuthToken Text deriving (Show)
>>>
instance FromHttpApiData BasicAuthToken where parseHeader h = BasicAuthToken <$> parseHeaderWithPrefix "Basic " h; parseQueryParam p = BasicAuthToken <$> parseQueryParam p
parseHeaderWithPrefix :: FromHttpApiData a => ByteString -> ByteString -> Either Text a Source
Parse given bytestring then parse the rest of the input using
.parseHeader
data BasicAuthToken = BasicAuthToken Text deriving (Show) instance FromHttpApiData BasicAuthToken where parseHeader h = BasicAuthToken <$> parseHeaderWithPrefix "Basic " h parseQueryParam p = BasicAuthToken <$> parseQueryParam p
>>>
parseHeader "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==" :: Either Text BasicAuthToken
Right (BasicAuthToken "QWxhZGRpbjpvcGVuIHNlc2FtZQ==")
parseQueryParamWithPrefix :: FromHttpApiData a => Text -> Text -> Either Text a Source
Case insensitive.
Parse given text case insensitive and then parse the rest of the input
using
.parseQueryParam
>>>
parseQueryParamWithPrefix "z" "z10" :: Either Text Int
Right 10
parseBoundedTextData :: (Show a, Bounded a, Enum a) => Text -> Either Text a Source
Case insensitive.
Parse values case insensitively based on
instance.Show
>>>
parseBoundedTextData "true" :: Either Text Bool
Right True>>>
parseBoundedTextData "FALSE" :: Either Text Bool
Right False
This can be used as a default implementation for enumeration types:
>>>
data MyData = Foo | Bar | Baz deriving (Show, Bounded, Enum)
>>>
instance FromHttpApiData MyData where parseUrlPiece = parseBoundedTextData
>>>
parseUrlPiece "foo" :: Either Text MyData
Right Foo
readTextData :: Read a => Text -> Either Text a Source
Parse URL piece using
instance.Read
Use for types which do not involve letters:
>>>
readTextData "1991-06-02" :: Either Text Day
Right 1991-06-02
This parser is case sensitive and will not match
in presense of letters:showTextData
>>>
readTextData (showTextData True) :: Either Text Bool
Left "could not parse: `true'"
See
.parseBoundedTextData
parseBounded :: forall a. (Bounded a, Integral a) => Reader Integer -> Text -> Either Text a Source
Run
to parse bounded integral value with bounds checking.Reader
>>>
parseBounded decimal "256" :: Either Text Word8
Left "out of bounds: `256' (should be between 0 and 255)"
timeToUrlPiece :: FormatTime t => String -> t -> Text Source