emptygif
Idioma: Español

Todos los lenguajes y frameworks

Scotty Haskell

Un fragmento en Haskell para Scotty que responde a las peticiones a /pixel.gif con el GIF vacío, decodificado una sola vez al arrancar.

Scotty Haskell

Instalar
build-depends: base, bytestring, base64-bytestring, scotty
Archivo
Main.hs
Ejecutar
cabal run
{-# LANGUAGE OverloadedStrings #-}

import qualified Data.ByteString.Base64 as Base64
import qualified Data.ByteString.Lazy as BL
import Web.Scotty

-- A top-level constant: decoded once, on first use.
gif :: BL.ByteString
gif = BL.fromStrict (Base64.decodeLenient "R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==")

main :: IO ()
main = scotty 8080 $
  get "/pixel.gif" $ do
    setHeader "Content-Type" "image/gif"
    setHeader "Cache-Control" "no-store"
    raw gif

Revisado según la documentación actual del framework.

Comprobar

curl -sI http://localhost:8080/pixel.gif

Sitio oficial: Scotty

Más en Haskell