X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=examples%2FMultipart.hs;h=9c42e7269a4984452d8914aea1644ba02891f1eb;hb=72a3e24a952616e32845eeb4fc05048e841c91a2;hp=b7faa38dc97405aebb0d909a11d2cd2fa344f913;hpb=e53a2f3202f763e844de725712f1bf26b82cd41f;p=Lucu.git diff --git a/examples/Multipart.hs b/examples/Multipart.hs index b7faa38..9c42e72 100644 --- a/examples/Multipart.hs +++ b/examples/Multipart.hs @@ -1,35 +1,41 @@ -import Data.List +{-# LANGUAGE + OverloadedStrings + , UnicodeSyntax + #-} +import qualified Data.ByteString.Lazy.Char8 as Lazy +import Control.Applicative +import Control.Monad.Unicode import Data.Maybe -import Network +import Data.Monoid.Unicode import Network.HTTP.Lucu -main :: IO () -main = let config = defaultConfig { cnfServerPort = PortNumber 9999 } +main ∷ IO () +main = let config = defaultConfig { cnfServerPort = "9999" } resources = mkResTree [ ([], resMain) ] in do putStrLn "Access http://localhost:9999/ with your browser." - runHttpd config resources + runHttpd config resources [] -resMain :: ResourceDef +resMain ∷ ResourceDef resMain - = ResourceDef { - resUsesNativeThread = False - , resIsGreedy = False - , resGet - = Just $ do setContentType $ read "text/html" - output ("Multipart Form Test" ++ - "
" ++ - " Enter some value:" ++ - " " ++ - " " ++ - "
") - , resHead = Nothing + = emptyResource { + resGet + = Just $ do setContentType $ mkMIMEType "text" "html" + output ("Multipart Form Test\n" ⊕ + "
\n" ⊕ + " Upload some file:\n" ⊕ + " \n" ⊕ + " \n" ⊕ + " \n" ⊕ + "
\n") , resPost - = Just $ do form <- inputForm defaultLimit - let value = fromMaybe "" $ fmap snd $ find ((== "val") . fst) form - setContentType $ read "text/plain" - output ("You entered: " ++ value) - , resPut = Nothing - , resDelete = Nothing - } \ No newline at end of file + = Just $ do form ← inputForm defaultLimit + let text = fromMaybe (∅) $ fdContent <$> lookup "text" form + file = fromMaybe (∅) $ fdContent <$> lookup "file" form + fileName = fdFileName =≪ lookup "file" form + setContentType $ mkMIMEType "text" "plain" + outputChunk ("You entered \"" ⊕ text ⊕ "\".\n") + outputChunk ("You uploaded a " ⊕ Lazy.pack (show $ Lazy.length file) ⊕ " bytes long file.\n") + output ("The file name is " ⊕ Lazy.pack (show fileName) ⊕ ".\n") + }