Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- data BodyPolicy = BodyPolicy {}
- queryInput :: SURI -> [(String, Input)]
- defaultBodyPolicy :: FilePath -> Int64 -> Int64 -> Int64 -> BodyPolicy
- bodyInput :: MonadIO m => BodyPolicy -> Request -> m ([(String, Input)], Maybe String)
- formDecode :: String -> [(String, Input)]
- formDecodeBS :: ByteString -> [(String, Input)]
- decodeBody :: BodyPolicy -> Maybe ContentType -> ByteString -> IO ([(String, Input)], Maybe String)
- multipartDecode :: InputWorker -> [(String, String)] -> ByteString -> IO ([(String, Input)], Maybe String)
- pathEls :: String -> [String]
- splitList :: Eq a => a -> [a] -> [[a]]
- splitListBy :: (a -> Bool) -> [a] -> [[a]]
- split :: (a -> Bool) -> [a] -> ([a], [a])
- defaultInputIter :: FileSaver -> FilePath -> Int64 -> Int64 -> Int64 -> Int64 -> Int64 -> Int64 -> Work -> IO InputIter
Documentation
data BodyPolicy Source #
:: FilePath | temporary directory for file uploads |
-> Int64 | maximum bytes for files uploaded in this |
-> Int64 | maximum bytes for all non-file values in the |
-> Int64 | maximum bytes of overhead for headers in |
-> BodyPolicy |
create a BodyPolicy
for use with decodeBody
formDecode :: String -> [(String, Input)] Source #
Decodes application/x-www-form-urlencoded inputs. TODO: should any of the [] be error conditions?
formDecodeBS :: ByteString -> [(String, Input)] Source #
Decodes application/x-www-form-urlencoded inputs. TODO: should any of the [] be error conditions?
decodeBody :: BodyPolicy -> Maybe ContentType -> ByteString -> IO ([(String, Input)], Maybe String) Source #
:: InputWorker | |
-> [(String, String)] | Content-type parameters |
-> ByteString | Request body |
-> IO ([(String, Input)], Maybe String) | Input variables and values. |
Decodes multipart/form-data input.
splitList :: Eq a => a -> [a] -> [[a]] Source #
Repeadly splits a list by the provided separator and collects the results
splitListBy :: (a -> Bool) -> [a] -> [[a]] Source #
Repeatedly splits a list and collects the results