1 2 3 4 5 6 7 8 9 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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
|
# encoding: utf-8
# frozen_string_literal: true
module Warden
module Hooks
# Hook to _run_callbacks asserting for conditions.
def _run_callbacks(kind, *args) #:nodoc:
options = args.last # Last callback arg MUST be a Hash
send("_#{kind}").each do |callback, conditions|
invalid = conditions.find do |key, value|
value.is_a?(Array) ? !value.include?(options[key]) : (value != options[key])
end
callback.call(*args) unless invalid
end
end
# A callback hook set to run every time after a user is set.
# This callback is triggered the first time one of those three events happens
# during a request: :authentication, :fetch (from session) and :set_user (when manually set).
# You can supply as many hooks as you like, and they will be run in order of declaration.
#
# If you want to run the callbacks for a given scope and/or event, you can specify them as options.
# See parameters and example below.
#
# Parameters:
# <options> Some options which specify when the callback should be executed
# scope - Executes the callback only if it matches the scope(s) given
# only - Executes the callback only if it matches the event(s) given
# except - Executes the callback except if it matches the event(s) given
# <block> A block where you can set arbitrary logic to run every time a user is set
# Block Parameters: |user, auth, opts|
# user - The user object that is being set
# auth - The raw authentication proxy object.
# opts - any options passed into the set_user call including :scope
#
# Example:
# Warden::Manager.after_set_user do |user,auth,opts|
# scope = opts[:scope]
# if auth.session["#{scope}.last_access"].to_i > (Time.now - 5.minutes)
# auth.logout(scope)
# throw(:warden, :scope => scope, :reason => "Times Up")
# end
# auth.session["#{scope}.last_access"] = Time.now
# end
#
# Warden::Manager.after_set_user :except => :fetch do |user,auth,opts|
# user.login_count += 1
# end
#
# :api: public
def after_set_user(options = {}, method = :push, &block)
raise BlockNotGiven unless block_given?
if options.key?(:only)
options[:event] = options.delete(:only)
elsif options.key?(:except)
options[:event] = [:set_user, :authentication, :fetch] - Array(options.delete(:except))
end
_after_set_user.send(method, [block, options])
end
# Provides access to the array of after_set_user blocks to run
# :api: private
def _after_set_user # :nodoc:
@_after_set_user ||= []
end
# after_authentication is just a wrapper to after_set_user, which is only invoked
# when the user is set through the authentication path. The options and yielded arguments
# are the same as in after_set_user.
#
# :api: public
def after_authentication(options = {}, method = :push, &block)
after_set_user(options.merge(:event => :authentication), method, &block)
end
# after_fetch is just a wrapper to after_set_user, which is only invoked
# when the user is fetched from session. The options and yielded arguments
# are the same as in after_set_user.
#
# :api: public
def after_fetch(options = {}, method = :push, &block)
after_set_user(options.merge(:event => :fetch), method, &block)
end
# A callback that runs just prior to the failure application being called.
# This callback occurs after PATH_INFO has been modified for the failure (default /unauthenticated)
# In this callback you can mutate the environment as required by the failure application
# If a Rails controller were used for the failure_app for example, you would need to set request[:params][:action] = :unauthenticated
#
# Parameters:
# <options> Some options which specify when the callback should be executed
# scope - Executes the callback only if it matches the scope(s) given
# <block> A block to contain logic for the callback
# Block Parameters: |env, opts|
# env - The rack env hash
# opts - any options passed into the authenticate call including :scope
#
# Example:
# Warden::Manager.before_failure do |env, opts|
# params = Rack::Request.new(env).params
# params[:action] = :unauthenticated
# params[:warden_failure] = opts
# end
#
# :api: public
def before_failure(options = {}, method = :push, &block)
raise BlockNotGiven unless block_given?
_before_failure.send(method, [block, options])
end
# Provides access to the callback array for before_failure
# :api: private
def _before_failure
@_before_failure ||= []
end
# A callback that runs if no user could be fetched, meaning there is now no user logged in.
#
# Parameters:
# <options> Some options which specify when the callback should be executed
# scope - Executes the callback only if it matches the scope(s) given
# <block> A block to contain logic for the callback
# Block Parameters: |user, auth, scope|
# user - The authenticated user for the current scope
# auth - The warden proxy object
# opts - any options passed into the authenticate call including :scope
#
# Example:
# Warden::Manager.after_failed_fetch do |user, auth, opts|
# I18n.locale = :en
# end
#
# :api: public
def after_failed_fetch(options = {}, method = :push, &block)
raise BlockNotGiven unless block_given?
_after_failed_fetch.send(method, [block, options])
end
# Provides access to the callback array for after_failed_fetch
# :api: private
def _after_failed_fetch
@_after_failed_fetch ||= []
end
# A callback that runs just prior to the logout of each scope.
#
# Parameters:
# <options> Some options which specify when the callback should be executed
# scope - Executes the callback only if it matches the scope(s) given
# <block> A block to contain logic for the callback
# Block Parameters: |user, auth, scope|
# user - The authenticated user for the current scope
# auth - The warden proxy object
# opts - any options passed into the authenticate call including :scope
#
# Example:
# Warden::Manager.before_logout do |user, auth, opts|
# user.forget_me!
# end
#
# :api: public
def before_logout(options = {}, method = :push, &block)
raise BlockNotGiven unless block_given?
_before_logout.send(method, [block, options])
end
# Provides access to the callback array for before_logout
# :api: private
def _before_logout
@_before_logout ||= []
end
# A callback that runs on each request, just after the proxy is initialized
#
# Parameters:
# <block> A block to contain logic for the callback
# Block Parameters: |proxy|
# proxy - The warden proxy object for the request
#
# Example:
# user = "A User"
# Warden::Manager.on_request do |proxy|
# proxy.set_user = user
# end
#
# :api: public
def on_request(options = {}, method = :push, &block)
raise BlockNotGiven unless block_given?
_on_request.send(method, [block, options])
end
# Provides access to the callback array for before_logout
# :api: private
def _on_request
@_on_request ||= []
end
# Add prepend filters version
%w(after_set_user after_authentication after_fetch on_request
before_failure before_logout).each do |filter|
class_eval <<-METHOD, __FILE__, __LINE__ + 1
def prepend_#{filter}(options={}, &block)
#{filter}(options, :unshift, &block)
end
METHOD
end
end # Hooks
end # Warden
|