import Data.List import Data.Maybe import Network import Network.HTTP.Lucu main :: IO () main = let config = defaultConfig { cnfServerPort = PortNumber 9999 } resources = mkResTree [ ([], resMain) ] in do putStrLn "Access http://localhost:9999/ with your browser." runHttpd config resources [] resMain :: ResourceDef resMain = ResourceDef { resUsesNativeThread = False , resIsGreedy = False , resGet = Just $ do setContentType $ read "text/html" output ("Multipart Form Test" ++ "
" ++ " Upload some file:" ++ " " ++ " " ++ " " ++ "
") , resHead = Nothing , resPost = Just $ do form <- inputForm defaultLimit let text = fromMaybe "" $ fmap snd $ find ((== "text") . fst) form file = fromMaybe "" $ fmap snd $ find ((== "file") . fst) form setContentType $ read "text/plain" outputChunk ("You entered \"" ++ text ++ "\".\n") output ("You uploaded a " ++ show (length file) ++ " bytes long file.\n") , resPut = Nothing , resDelete = Nothing }