From 35f0f40cfabeb49b468c6ae3c68fedded145a022 Mon Sep 17 00:00:00 2001 From: Don Stewart Date: Fri, 4 Jan 2008 16:23:04 -0800 Subject: Move MIME stuff into proper Codec.* namespace. Add copyrights where missing. --- Codec/MIME/Utils.hs | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Codec/MIME/Utils.hs (limited to 'Codec/MIME/Utils.hs') diff --git a/Codec/MIME/Utils.hs b/Codec/MIME/Utils.hs new file mode 100644 index 0000000..a5db2d9 --- /dev/null +++ b/Codec/MIME/Utils.hs @@ -0,0 +1,30 @@ +{- | + Module : MIME.Utils + Copyright : (c) 2007 + + Maintainer : tse-dev-team@galois.com + Stability : unstable + Portability : GHC + + Extracting content from MIME values and types. +-} +module MIME.Utils + ( findMultipartNamed -- :: String -> MIMEValue -> Maybe MIMEValue + ) where + +import MIME.Type +import Data.List ( find ) +import Control.Monad ( msum ) + +-- | Given a parameter name, locate it within a MIME value, +-- returning the corresponding (sub) MIME value. +findMultipartNamed :: String -> MIMEValue -> Maybe MIMEValue +findMultipartNamed nm mv = + case mime_val_content mv of + Multi ms -> msum (map (findMultipartNamed nm) ms) + Single {} -> do cd <- mime_val_disp mv + find (withDispName nm) (dispParams cd) + return mv + where withDispName a (Name b) = a == b + withDispName _ _ = False + -- cgit v1.2.3