X-Git-Url: https://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=Network%2FHTTP%2FLucu%2FUtils.hs;h=dbc65ac17ad8a52f553af26e5506a33df9aab137;hb=a4baee3c1411a3e256b111b4cde2ae98a6623a32;hp=f1c178d55a1b22983d1ec75907873186f4446686;hpb=7943b7672278b5fc2b15f4005441b2c076e4e138;p=Lucu.git diff --git a/Network/HTTP/Lucu/Utils.hs b/Network/HTTP/Lucu/Utils.hs index f1c178d..dbc65ac 100644 --- a/Network/HTTP/Lucu/Utils.hs +++ b/Network/HTTP/Lucu/Utils.hs @@ -1,3 +1,7 @@ +{-# LANGUAGE + BangPatterns + , UnicodeSyntax + #-} -- |Utility functions used internally in the Lucu httpd. These -- functions may be useful too for something else. module Network.HTTP.Lucu.Utils @@ -9,11 +13,11 @@ module Network.HTTP.Lucu.Utils , parseWWWFormURLEncoded ) where - import Control.Monad import Data.List hiding (last) import Network.URI import Prelude hiding (last) +import Prelude.Unicode -- |> splitBy (== ':') "ab:c:def" -- > ==> ["ab", "c", "def"] @@ -61,13 +65,20 @@ quoteStr !str = concat (["\""] ++ map quote str ++ ["\""]) -- |> parseWWWFormURLEncoded "aaa=bbb&ccc=ddd" -- > ==> [("aaa", "bbb"), ("ccc", "ddd")] -parseWWWFormURLEncoded :: String -> [(String, String)] +parseWWWFormURLEncoded ∷ String → [(String, String)] parseWWWFormURLEncoded src - | src == "" = [] - | otherwise = do pairStr <- splitBy (\ c -> c == ';' || c == '&') src - let (key, value) = break (== '=') pairStr - return ( unEscapeString key - , unEscapeString $ case value of - ('=':val) -> val - val -> val + | null src = [] + | otherwise = do pairStr ← splitBy (\ c → c ≡ ';' ∨ c ≡ '&') src + let (key, value) = break (≡ '=') pairStr + return ( unescape key + , unescape $ case value of + ('=':val) → val + val → val ) + where + unescape ∷ String → String + unescape = unEscapeString ∘ map plusToSpace + + plusToSpace ∷ Char → Char + plusToSpace '+' = ' ' + plusToSpace c = c