{-# LANGUAGE UnicodeSyntax #-} -- |MIME Type guessing by a file extension. This is a poor man's way -- of guessing MIME Types. It is simple and fast. -- -- In general you don't have to use this module directly. module Network.HTTP.Lucu.MIMEType.Guess ( ExtMap , guessTypeByFileName , parseExtMapFile , serializeExtMap ) where import Control.Applicative import qualified Data.Ascii as A import Data.Attoparsec.Char8 as P import qualified Data.Attoparsec.Lazy as LP import qualified Data.ByteString.Lazy.Char8 as B import qualified Data.Map as M import Data.Map (Map) import Data.Maybe import Data.Text (Text) import qualified Data.Text as T import Data.Text.Encoding import Language.Haskell.Exts.Build import Language.Haskell.Exts.Extension import Language.Haskell.Exts.Pretty import Language.Haskell.Exts.Syntax import Network.HTTP.Lucu.MIMEType import Prelude.Unicode import System.FilePath -- |'Map' from extension to 'MIMEType'. type ExtMap = Map Text MIMEType -- |Guess the MIME Type of file. guessTypeByFileName ∷ ExtMap → FilePath → Maybe MIMEType guessTypeByFileName extMap fpath = let ext = T.pack $ takeExtension fpath in M.lookup ext extMap -- |Read an Apache mime.types and parse it. parseExtMapFile ∷ FilePath → IO ExtMap parseExtMapFile fpath = do file ← B.readFile fpath case LP.parse extMapP file of LP.Done _ xs → return $ compile xs LP.Fail _ _ e → fail ("Failed to parse: " ⧺ fpath ⧺ ": " ⧺ e) extMapP ∷ Parser [ (MIMEType, [Text]) ] extMapP = do xs ← P.many (comment <|> validLine <|> emptyLine) endOfInput return $ catMaybes xs where isSpc ∷ Char → Bool isSpc c = c ≡ '\x20' ∨ c ≡ '\x09' comment ∷ Parser (Maybe (MIMEType, [Text])) comment = try $ do skipWhile isSpc _ ← char '#' skipWhile (≢ '\x0A') return Nothing validLine ∷ Parser (Maybe (MIMEType, [Text])) validLine = try $ do skipWhile isSpc mime ← mimeTypeP skipWhile isSpc exts ← sepBy extP (skipWhile isSpc) return $ Just (mime, exts) extP ∷ Parser Text extP = decodeUtf8 <$> takeWhile1 (\c → (¬) (isSpc c ∨ c ≡ '\x0A')) emptyLine ∷ Parser (Maybe (MIMEType, [Text])) emptyLine = try $ do skipWhile isSpc _ ← char '\x0A' return Nothing compile ∷ [ (MIMEType, [Text]) ] → Map Text MIMEType compile = M.fromList ∘ concat ∘ map tr where tr ∷ (MIMEType, [Text]) → [ (Text, MIMEType) ] tr (mime, exts) = [ (ext, mime) | ext ← exts ] -- |@'serializeExtMap' extMap moduleName variableName@ generates a -- Haskell source code which contains the following things: -- -- * A definition of module named @moduleName@. -- -- * @variableName :: 'ExtMap'@ whose content is a serialization of -- @extMap@. -- -- The module "Network.HTTP.Lucu.MIMEType.DefaultExtensionMap" is -- surely generated using this function. serializeExtMap ∷ ExtMap → String → String → String serializeExtMap extMap moduleName variableName = let hsModule = Module (⊥) (ModuleName moduleName) modPragma Nothing (Just exports) imports decls modPragma = [ LanguagePragma (⊥) [ name (show OverloadedStrings) ] ] exports = [ EVar (UnQual (name variableName)) ] imports = [ ImportDecl (⊥) (ModuleName "Network.HTTP.Lucu.MIMEType") False False Nothing Nothing Nothing , ImportDecl (⊥) (ModuleName "Network.HTTP.Lucu.MIMEType.Guess") False False Nothing Nothing Nothing , ImportDecl (⊥) (ModuleName "Data.Ascii") False False Nothing Nothing (Just (False, [])) , ImportDecl (⊥) (ModuleName "Data.Map") True False Nothing (Just (ModuleName "M")) Nothing ] decls = [ TypeSig (⊥) [name variableName] (TyCon (UnQual (name "ExtMap"))) , nameBind (⊥) (name variableName) extMapExp ] comment = concat [ "{- !!! WARNING !!!\n" , " This file is automatically generated.\n" , " DO NOT EDIT BY HAND OR YOU WILL REGRET -}\n\n" ] extMapExp = qvar (ModuleName "M") (name "fromList") `app` listE records in comment ⧺ prettyPrint hsModule ⧺ "\n" where records ∷ [Exp] records = map record $ M.assocs extMap record ∷ (Text, MIMEType) → Exp record (ext, mime) = tuple [ strE (T.unpack ext) , metaFunction "parseMIMEType" [strE $ mimeToString mime] ] mimeToString ∷ MIMEType → String mimeToString = A.toString ∘ A.fromAsciiBuilder ∘ printMIMEType