class Raven::HttpInterface
Attributes
data[RW]
env[RW]
headers[RW]
method[RW]
query_string[RW]
url[RW]
Public Class Methods
new(*arguments)
click to toggle source
Calls superclass method
Raven::Interface::new
# File lib/raven/interfaces/http.rb, line 15 def initialize(*arguments) self.headers = {} self.env = {} super(*arguments) end
Public Instance Methods
from_rack(env)
click to toggle source
# File lib/raven/interfaces/http.rb, line 21 def from_rack(env) require 'rack' req = ::Rack::Request.new(env) self.url = req.url.split('?').first self.method = req.request_method self.query_string = req.query_string env.each_pair do |key, value| next unless key.upcase == key # Non-upper case stuff isn't either if key.start_with?('HTTP_') # Header http_key = key[5..key.length - 1].split('_').map { |s| s.capitalize }.join('-') self.headers[http_key] = value.to_s elsif ['CONTENT_TYPE', 'CONTENT_LENGTH'].include? key self.headers[key.capitalize] = value.to_s elsif ['REMOTE_ADDR', 'SERVER_NAME', 'SERVER_PORT'].include? key # Environment self.env[key] = value.to_s end end self.data = if req.form_data? req.POST elsif req.body data = req.body.read req.body.rewind data end end