class Honeybadger::Rack::UserFeedback

response when an error has occurred.
Middleware for Rack applications. Adds a feedback form to the Rack

def action

Other tags:
    Todo: - Make this method and others actually private.

Other tags:
    Private: -
def action
  URI.parse("#{config.connection_protocol}://#{config[:'connection.host']}:#{config.connection_port}/v1/feedback/").to_s
rescue URI::InvalidURIError
  nil
end

def agent

def agent
  @agent || Honeybadger::Agent.instance
end

def call(env)

def call(env)
  return @app.call(env) unless config[:'feedback.enabled']
  status, headers, body = @app.call(env)
  if env['honeybadger.error_id'] && form = render_form(env['honeybadger.error_id'])
    new_body = []
    body.each do |chunk|
      new_body << chunk.gsub("<!-- HONEYBADGER FEEDBACK -->", form)
    end
    body.close if body.respond_to?(:close)
    headers['Content-Length'] = new_body.reduce(0) { |a,e| a += e.bytesize }.to_s
    body = new_body
  end
  [status, headers, body]
end

def custom_template_file

Other tags:
    Private: -
def custom_template_file
  @custom_template_file ||= File.join(config[:root], 'lib', 'honeybadger', 'templates', 'feedback_form.erb')
end

def custom_template_file?

Other tags:
    Private: -
def custom_template_file?
  custom_template_file && File.exist?(custom_template_file)
end

def initialize(app, agent = nil)

def initialize(app, agent = nil)
  @app = app
  @agent = agent.kind_of?(Agent) && agent
end

def render_form(error_id, action = action())

Other tags:
    Private: -
def render_form(error_id, action = action())
  return unless action
  ERB.new(@template ||= File.read(template_file)).result(binding)
end

def template_file

Other tags:
    Private: -
def template_file
  if custom_template_file?
    custom_template_file
  else
    File.expand_path('../../templates/feedback_form.erb', __FILE__)
  end
end