module Locomotive::Builder class Server class Middleware attr_accessor :app, :request, :path, :liquid_assigns attr_accessor :mounting_point, :page, :content_entry def initialize(app = nil) @app = app end def call(env) app.call(env) end protected def set_accessors(env) self.path = env['builder.path'] self.request = Rack::Request.new(env) self.mounting_point = env['builder.mounting_point'] self.page = env['builder.page'] self.content_entry = env['builder.content_entry'] env['builder.liquid_assigns'] ||= {} self.liquid_assigns = env['builder.liquid_assigns'] end def site self.mounting_point.site end def params self.request.params.deep_symbolize_keys end def html? self.request.media_type == 'text/html' || !self.request.xhr? end def json? self.request.content_type == 'application/json' || File.extname(self.request.path) == '.json' end def redirect_to(location) [301, { 'Content-Type' => 'text/html', 'Location' => location }, []] end end end end