require 'cuba' require 'rack' require 'hyde' class Hyde Server = Cuba.dup module Server; end module Server::PageHelpers def not_found show_status nil res.status = 404 res.write "
The path #{env['PATH_INFO']}
was not found." + " "*1024
end
def options
@options ||= Hash.new
end
def show_status(page)
return if options[:quiet]
path = env['PATH_INFO']
return if path == '/favicon.ico'
status = page ? "\033[0;32m[ OK ]" : "\033[0;31m[404 ]"
verb = get ? 'GET ' : (post ? 'POST' : '')
puts "%s\033[0;m %s %s" % [ status, verb, env['PATH_INFO'] ]
puts " src: #{page.filepath} (#{page.tilt_engine_name})" if page && page.tilt?
end
def mime_type_for(page)
type = page.mime_type
type ||= Rack::Mime::MIME_TYPES[File.extname(page.file)]
type
end
def server
Hyde::Server
end
end
module Hyde::Server
Ron.send :include, PageHelpers
define do
on default do
begin
page = Hyde::Page[env['PATH_INFO']] or break not_found
# Make the clients use If-Modified-Since
res['Cache-Control'] = 'max-age=86400, public, must-revalidate'
mtime = [server.options[:last_modified], File.mtime(page.file)].compact.max
res['Last-Modified'] = mtime.to_s if mtime
# Get the MIME type from Hyde, then fallback to Rack
type = mime_type_for(page)
res['Content-Type'] = type if type
# Okay, we're done
res.write page.to_html
show_status page
rescue => e
res['Content-Type'] = 'text/html'
res.write "