WAI + Warp Haskell
WAI + Warp માટે Haskell સ્નિપેટ, જે /pixel.gif પરની રિક્વેસ્ટનો જવાબ empty GIF થી આપે છે. GIF સ્ટાર્ટઅપ વખતે એક જ વાર ડિકોડ થાય છે.
WAI + Warp Haskell
{-# LANGUAGE OverloadedStrings #-}
import qualified Data.ByteString.Base64 as Base64
import qualified Data.ByteString.Lazy as BL
import Network.HTTP.Types (methodGet, status200, status404)
import Network.Wai
import Network.Wai.Handler.Warp (run)
gif :: BL.ByteString
gif = BL.fromStrict (Base64.decodeLenient "R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==")
app :: Application
app req respond
| requestMethod req == methodGet && rawPathInfo req == "/pixel.gif" =
respond $ responseLBS status200
[("Content-Type", "image/gif"), ("Cache-Control", "no-store")] gif
| otherwise = respond $ responseLBS status404 [] "Not Found"
main :: IO ()
main = run 8080 app
ફ્રેમવર્કના હાલના ડૉક્યુમેન્ટેશન સાથે મેળવીને ચકાસ્યું.
ચકાસો
curl -sI http://localhost:8080/pixel.gif