1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
|
-- #hide
-----------------------------------------------------------------------------
-- |
-- Module : Network.CGI.Header
-- Copyright : (c) Peter Thiemann 2001,2002
-- (c) Bjorn Bringert 2005-2006
-- License : BSD-style
--
-- Maintainer : Anders Kaseorg <andersk@mit.edu>
-- Stability : experimental
-- Portability : non-portable
--
-- Parsing of HTTP headers (name, value pairs)
-- Partly based on code from WASHMail.
--
-----------------------------------------------------------------------------
module Network.Multipart.Header (
-- * Headers
Headers,
HeaderName(..),
HeaderValue(..),
pHeaders,
-- * Content-type
ContentType(..),
getContentType,
parseContentType,
showContentType,
-- * Content-transfer-encoding
ContentTransferEncoding(..),
getContentTransferEncoding,
-- * Content-disposition
ContentDisposition(..),
getContentDisposition,
-- * Utilities
parseM,
caseInsensitiveEq,
caseInsensitiveCompare,
lexeme, ws1, p_token
) where
import Control.Monad
import Control.Monad.Fail as MFail
import Data.Char
import Data.List
import qualified Data.Monoid as M
import Text.ParserCombinators.Parsec
--
-- * Headers
--
-- | HTTP headers.
type Headers = [(HeaderName, String)]
-- | A string with case insensitive equality and comparisons.
newtype HeaderName = HeaderName String deriving (Show)
instance Eq HeaderName where
HeaderName x == HeaderName y = map toLower x == map toLower y
instance Ord HeaderName where
HeaderName x `compare` HeaderName y = map toLower x `compare` map toLower y
class HeaderValue a where
parseHeaderValue :: Parser a
prettyHeaderValue :: a -> String
pHeaders :: Parser Headers
pHeaders = many pHeader
pHeader :: Parser (HeaderName, String)
pHeader =
do name <- many1 headerNameChar
_ <- char ':'
_ <- many ws1
line <- lineString
_ <- crLf
extraLines <- many extraFieldLine
return (HeaderName name, concat (line:extraLines))
extraFieldLine :: Parser String
extraFieldLine =
do sp <- ws1
line <- lineString
_ <- crLf
return (sp:line)
getHeaderValue :: (MonadFail m, HeaderValue a) => String -> Headers -> m a
getHeaderValue h hs = lookupM (HeaderName h) hs >>= parseM parseHeaderValue h
--
-- * Parameters (for Content-type etc.)
--
showParameters :: [(String,String)] -> String
showParameters = concatMap f
where f (n,v) = "; " ++ n ++ "=\"" ++ concatMap esc v ++ "\""
esc '\\' = "\\\\"
esc '"' = "\\\""
esc c | c `elem` ['\\','"'] = '\\':[c]
| otherwise = [c]
p_parameter :: Parser (String,String)
p_parameter = try $
do _ <- lexeme $ char ';'
p_name <- lexeme $ p_token
-- Don't allow parameters named q. This is needed for parsing Accept-X
-- headers. From RFC 2616 14.1:
-- Note: Use of the "q" parameter name to separate media type
-- parameters from Accept extension parameters is due to historical
-- practice. Although this prevents any media type parameter named
-- "q" from being used with a media range, such an event is believed
-- to be unlikely given the lack of any "q" parameters in the IANA
-- media type registry and the rare usage of any media type
-- parameters in Accept. Future media types are discouraged from
-- registering any parameter named "q".
when (p_name == "q") pzero
_ <- lexeme $ char '='
-- Workaround for seemingly standardized web browser bug
-- where nothing is escaped in the filename parameter
-- of the content-disposition header in multipart/form-data
let litStr = if p_name == "filename"
then buggyLiteralString
else literalString
p_value <- litStr <|> p_token
return (map toLower p_name, p_value)
--
-- * Content type
--
-- | A MIME media type value.
-- The 'Show' instance is derived automatically.
-- Use 'showContentType' to obtain the standard
-- string representation.
-- See <http://www.ietf.org/rfc/rfc2046.txt> for more
-- information about MIME media types.
data ContentType =
ContentType {
-- | The top-level media type, the general type
-- of the data. Common examples are
-- \"text\", \"image\", \"audio\", \"video\",
-- \"multipart\", and \"application\".
ctType :: String,
-- | The media subtype, the specific data format.
-- Examples include \"plain\", \"html\",
-- \"jpeg\", \"form-data\", etc.
ctSubtype :: String,
-- | Media type parameters. On common example is
-- the charset parameter for the \"text\"
-- top-level type, e.g. @(\"charset\",\"ISO-8859-1\")@.
ctParameters :: [(String, String)]
}
deriving (Show, Read)
instance Eq ContentType where
x == y = ctType x `caseInsensitiveEq` ctType y
&& ctSubtype x `caseInsensitiveEq` ctSubtype y
&& ctParameters x == ctParameters y
instance Ord ContentType where
x `compare` y = M.mconcat [ctType x `caseInsensitiveCompare` ctType y,
ctSubtype x `caseInsensitiveCompare` ctSubtype y,
ctParameters x `compare` ctParameters y]
instance HeaderValue ContentType where
parseHeaderValue =
do _ <- many ws1
c_type <- p_token
_ <- char '/'
c_subtype <- lexeme $ p_token
c_parameters <- many p_parameter
return $ ContentType (map toLower c_type) (map toLower c_subtype) c_parameters
prettyHeaderValue (ContentType x y ps) = x ++ "/" ++ y ++ showParameters ps
-- | Parse the standard representation of a content-type.
-- If the input cannot be parsed, this function calls
-- 'fail' with a (hopefully) informative error message.
parseContentType :: MonadFail m => String -> m ContentType
parseContentType = parseM parseHeaderValue "Content-type"
showContentType :: ContentType -> String
showContentType = prettyHeaderValue
getContentType :: MonadFail m => Headers -> m ContentType
getContentType = getHeaderValue "content-type"
--
-- * Content transfer encoding
--
data ContentTransferEncoding =
ContentTransferEncoding String
deriving (Show, Read, Eq, Ord)
instance HeaderValue ContentTransferEncoding where
parseHeaderValue =
do _ <- many ws1
c_cte <- p_token
return $ ContentTransferEncoding (map toLower c_cte)
prettyHeaderValue (ContentTransferEncoding s) = s
getContentTransferEncoding :: MonadFail m => Headers -> m ContentTransferEncoding
getContentTransferEncoding = getHeaderValue "content-transfer-encoding"
--
-- * Content disposition
--
data ContentDisposition =
ContentDisposition String [(String, String)]
deriving (Show, Read, Eq, Ord)
instance HeaderValue ContentDisposition where
parseHeaderValue =
do _ <- many ws1
c_cd <- p_token
c_parameters <- many p_parameter
return $ ContentDisposition (map toLower c_cd) c_parameters
prettyHeaderValue (ContentDisposition t hs) =
t ++ concat ["; " ++ n ++ "=" ++ quote v | (n,v) <- hs]
where quote x = "\"" ++ x ++ "\"" -- NOTE: silly, but de-facto standard
getContentDisposition :: MonadFail m => Headers -> m ContentDisposition
getContentDisposition = getHeaderValue "content-disposition"
--
-- * Utilities
--
parseM :: MonadFail m => Parser a -> SourceName -> String -> m a
parseM p n inp =
case parse p n inp of
Left e -> MFail.fail (show e)
Right x -> return x
lookupM :: (MonadFail m, Eq a, Show a) => a -> [(a,b)] -> m b
lookupM n = maybe (MFail.fail ("No such field: " ++ show n)) return . lookup n
caseInsensitiveEq :: String -> String -> Bool
caseInsensitiveEq x y = map toLower x == map toLower y
caseInsensitiveCompare :: String -> String -> Ordering
caseInsensitiveCompare x y = map toLower x `compare` map toLower y
--
-- * Parsing utilities
--
-- | RFC 822 LWSP-char
ws1 :: Parser Char
ws1 = oneOf " \t"
lexeme :: Parser a -> Parser a
lexeme p = do x <- p; _ <- many ws1; return x
-- | RFC 822 CRLF (but more permissive)
crLf :: Parser String
crLf = try (string "\n\r" <|> string "\r\n") <|> string "\n" <|> string "\r"
-- | One line
lineString :: Parser String
lineString = many (noneOf "\n\r")
literalString :: Parser String
literalString = do _ <- char '\"'
str <- many (noneOf "\"\\" <|> quoted_pair)
_ <- char '\"'
return str
-- No web browsers seem to implement RFC 2046 correctly,
-- since they do not escape double quotes and backslashes
-- in the filename parameter in multipart/form-data.
--
-- Note that this eats everything until the last double quote on the line.
buggyLiteralString :: Parser String
buggyLiteralString =
do _ <- char '\"'
str <- manyTill anyChar (try lastQuote)
return str
where lastQuote = do _ <- char '\"'
notFollowedBy (try (many (noneOf "\"") >> char '\"'))
headerNameChar :: Parser Char
headerNameChar = noneOf "\n\r:"
tspecials, tokenchar :: [Char]
tspecials = "()<>@,;:\\\"/[]?="
tokenchar = "!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~" \\ tspecials
p_token :: Parser String
p_token = many1 (oneOf tokenchar)
text_chars :: [Char]
text_chars = map chr ([1..9] ++ [11,12] ++ [14..127])
p_text :: Parser Char
p_text = oneOf text_chars
quoted_pair :: Parser Char
quoted_pair = do _ <- char '\\'
p_text
|