Hanami Ruby
/pixel.gif కు వచ్చే రిక్వెస్ట్లకు empty GIF తో జవాబిచ్చే, Hanami కోసం Ruby స్నిపెట్. GIF స్టార్టప్లో ఒక్కసారే డీకోడ్ అవుతుంది.
Hanami Ruby
# app/actions/pixel/show.rb
module MyApp
module Actions
module Pixel
class Show < MyApp::Action
GIF = "R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==".unpack1("m0").freeze
def handle(request, response)
# Rack's content_type= sets the exact header; format= would append "; charset=utf-8".
response.content_type = "image/gif"
response.headers["Cache-Control"] = "no-store"
response.body = GIF
end
end
end
end
end
# config/routes.rb
module MyApp
class Routes < Hanami::Routes
get "/pixel.gif", to: "pixel.show"
end
end
మేము ఈ స్నిపెట్ను రన్ చేసి, అది తిరిగి ఇచ్చిన బైట్లను పోల్చి చూశాం.
చెక్ చేయండి
curl -sI http://localhost:8080/pixel.gif