Class: Bugsnag::Middleware::WardenUser
- Inherits:
-
Object
- Object
- Bugsnag::Middleware::WardenUser
- Defined in:
- lib/bugsnag/middleware/warden_user.rb
Constant Summary collapse
- SCOPE_PATTERN =
/^warden\.user\.([^.]+)\.key$/
- COMMON_USER_FIELDS =
[:email, :name, :first_name, :last_name, :created_at, :id]
Instance Method Summary collapse
- #call(notification) ⇒ Object
-
#initialize(bugsnag) ⇒ WardenUser
constructor
A new instance of WardenUser.
Constructor Details
#initialize(bugsnag) ⇒ WardenUser
Returns a new instance of WardenUser.
6 7 8 |
# File 'lib/bugsnag/middleware/warden_user.rb', line 6 def initialize(bugsnag) @bugsnag = bugsnag end |
Instance Method Details
#call(notification) ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/bugsnag/middleware/warden_user.rb', line 10 def call(notification) if notification.request_data[:rack_env] && notification.request_data[:rack_env]["warden"] env = notification.request_data[:rack_env] session = env["rack.session"] || {} # Find all warden user scopes warden_scopes = session.keys.select {|k| k.match(SCOPE_PATTERN)}.map {|k| k.gsub(SCOPE_PATTERN, '\1')} unless warden_scopes.empty? # Pick the best scope for unique id (the default is "user") best_scope = warden_scopes.include?("user") ? "user" : warden_scopes.first # Extract useful user information user = {} user_object = env["warden"].user({:scope => best_scope, :run_callbacks => false}) rescue nil if user_object # Build the user info for this scope COMMON_USER_FIELDS.each do |field| user[field] = user_object.send(field) if user_object.respond_to?(field) end end # We merge the first warden scope down, so that it is the main "user" for the request notification.user = user unless user.empty? end end @bugsnag.call(notification) end |