{-# language OverloadedStrings, FlexibleContexts #-} module Network.Utils.HTTP where import qualified Data.Text as T import qualified Data.Text.Encoding as T (encodeUtf8) import qualified Data.ByteString.Lazy as LB import Data.Char ( isAscii, isAlphaNum, digitToInt ) import Network.HTTP.Req import Network.Goggles.Cloud getLbs :: (HasCredentials c, MonadHttp (Cloud c)) => Url scheme -> Option scheme -> Cloud c LbsResponse getLbs uri opts = req GET uri NoReqBody lbsResponse opts postLbs :: (HasCredentials c, MonadHttp (Cloud c)) => Url scheme -> Option scheme -> LB.ByteString -> Cloud c LbsResponse postLbs uri opts body = req POST uri (ReqBodyLbs body) lbsResponse opts putLbs :: (HasCredentials c, MonadHttp (Cloud c)) => Url scheme -> Option scheme -> LB.ByteString -> Cloud c LbsResponse putLbs uri opts body = req PUT uri (ReqBodyLbs body) lbsResponse opts -- | produce a '&'-separated list of parameters that can be passed to an HTTP querty from a list of key, value pairs encodeHttpParametersLB :: [(T.Text, T.Text)] -> LB.ByteString encodeHttpParametersLB ps = LB.fromStrict $ T.encodeUtf8 $ T.intercalate "&" $ map ins ps where ins (k, v) = T.concat [k, "=", v] encodeHttpParameters :: (QueryParam p, Monoid p) => [(T.Text, T.Text)] -> p encodeHttpParameters ll = mconcat $ map ins ll where ins (a, b) = a =: b -- http://hackage.haskell.org/package/HTTP-4000.2.3/docs/src/Network-HTTP-Base.html urlEncode :: String -> String urlEncode [] = [] urlEncode (ch:t) | (isAscii ch && isAlphaNum ch) || ch `elem` ("-_.~" :: String) = ch : urlEncode t | not (isAscii ch) = foldr escape (urlEncode t) (eightBs [] (fromEnum ch)) | otherwise = escape (fromEnum ch) (urlEncode t) where escape b rs = '%':showH (b `div` 16) (showH (b `mod` 16) rs) showH x xs | x <= 9 = toEnum (o_0 + x) : xs | otherwise = toEnum (o_A + (x-10)) : xs where o_0 = fromEnum '0' o_A = fromEnum 'A' eightBs :: [Int] -> Int -> [Int] eightBs acc x | x <= 0xff = (x:acc) | otherwise = eightBs ((x `mod` 256) : acc) (x `div` 256) urlDecode :: String -> String urlDecode ('%':a:b:rest) = toEnum (16 * digitToInt a + digitToInt b) : urlDecode rest urlDecode (h:t) = h : urlDecode t urlDecode [] = []