cgi-3001.1.5.1: A library for writing CGI programsSource codeContentsIndex
Network.CGI.Protocol
Portabilitynon-portable
Stabilityexperimental
Maintainerbjorn@bringert.net
Contents
CGI request
CGI response
Running CGI actions
Inputs
Environment variables
Logging
URL encoding
Utilities
Description
An implementation of the program side of the CGI protocol.
Synopsis
data CGIRequest = CGIRequest {
cgiVars :: (Map String String)
cgiInputs :: [(String, Input)]
cgiRequestBody :: ByteString
}
data Input = Input {
inputValue :: ByteString
inputFilename :: (Maybe String)
inputContentType :: ContentType
}
data CGIResult
= CGIOutput ByteString
| CGINothing
type Headers = [(HeaderName, String)]
newtype HeaderName = HeaderName String
hRunCGI :: MonadIO m => [(String, String)] -> Handle -> Handle -> (CGIRequest -> m (Headers, CGIResult)) -> m ()
runCGIEnvFPS :: Monad m => [(String, String)] -> ByteString -> (CGIRequest -> m (Headers, CGIResult)) -> m ByteString
decodeInput :: [(String, String)] -> ByteString -> ([(String, Input)], ByteString)
takeInput :: [(String, String)] -> ByteString -> ByteString
getCGIVars :: MonadIO m => m [(String, String)]
logCGI :: MonadIO m => String -> m ()
formEncode :: [(String, String)] -> String
urlEncode :: String -> String
formDecode :: String -> [(String, String)]
urlDecode :: String -> String
maybeRead :: Read a => String -> Maybe a
replace :: Eq a => a -> a -> [a] -> [a]
CGI request
data CGIRequest Source
The input to a CGI action.
Constructors
CGIRequest
cgiVars :: (Map String String)Environment variables.
cgiInputs :: [(String, Input)]Input parameters. For better laziness in reading inputs, this is not a Map.
cgiRequestBody :: ByteStringRaw request body. To avoid memory leaks, this is the empty string if the request body has been interpreted as inputs in application/x-www-form-urlencoded or multipart/form-data format.
show/hide Instances
data Input Source
The value of an input parameter, and some metadata.
Constructors
Input
inputValue :: ByteString
inputFilename :: (Maybe String)
inputContentType :: ContentType
show/hide Instances
CGI response
data CGIResult Source
The result of a CGI program.
Constructors
CGIOutput ByteString
CGINothing
show/hide Instances
type Headers = [(HeaderName, String)]Source
newtype HeaderName Source
A string with case insensitive equality and comparisons.
Constructors
HeaderName String
show/hide Instances
Running CGI actions
hRunCGISource
:: MonadIO m
=> [(String, String)]CGI environment variables, e.g. from getCGIVars.
-> HandleHandle that input will be read from, e.g. stdin.
-> HandleHandle that output will be written to, e.g. stdout.
-> (CGIRequest -> m (Headers, CGIResult))CGI action
-> m ()
Runs a CGI action in a given environment. Uses Handles for input and output.
runCGIEnvFPSSource
:: Monad m
=> [(String, String)]CGI environment variables.
-> ByteStringRequest body.
-> (CGIRequest -> m (Headers, CGIResult))CGI action.
-> m ByteStringResponse (headers and content).
Runs a CGI action in a given environment. Uses lazy ByteStrings for input and output.
Inputs
decodeInputSource
:: [(String, String)]CGI environment variables.
-> ByteStringRequest body.
-> ([(String, Input)], ByteString)A list of input variables and values, and the request body if it was not interpreted.
Gets and decodes the input according to the request method and the content-type.
takeInputSource
:: [(String, String)]CGI environment variables.
-> ByteStringRequest body.
-> ByteStringCONTENT_LENGTH bytes from the request body, or the empty string if there is no CONTENT_LENGTH.
Takes the right number of bytes from the input.
Environment variables
getCGIVars :: MonadIO m => m [(String, String)]Source
Gets the values of all CGI variables from the program environment.
Logging
logCGI :: MonadIO m => String -> m ()Source
Logs some message using the server's logging facility. FIXME: does this have to be more general to support FastCGI etc? Maybe we should store log messages in the CGIState?
URL encoding
formEncode :: [(String, String)] -> StringSource
Formats name-value pairs as application/x-www-form-urlencoded.
urlEncode :: String -> StringSource
Converts a single value to the application/x-www-form-urlencoded encoding.
formDecode :: String -> [(String, String)]Source
Gets the name-value pairs from application/x-www-form-urlencoded data.
urlDecode :: String -> StringSource
Converts a single value from the application/x-www-form-urlencoded encoding.
Utilities
maybeRead :: Read a => String -> Maybe aSource
replaceSource
:: Eq a
=> aValue to look for
-> aValue to replace it with
-> [a]Input list
-> [a]Output list
Replaces all instances of a value in a list by another value.
Produced by Haddock version 0.8