2009-02-27 18:11:02 -05:00
|
|
|
module AbstractController
|
|
|
|
module Callbacks
|
2009-05-28 12:35:36 -04:00
|
|
|
extend ActiveSupport::Concern
|
2009-05-07 11:38:57 -04:00
|
|
|
|
2009-10-12 23:15:43 -04:00
|
|
|
# Uses ActiveSupport::Callbacks as the base functionality. For
|
2009-06-08 19:14:38 -04:00
|
|
|
# more details on the whole callback system, read the documentation
|
2009-10-12 23:15:43 -04:00
|
|
|
# for ActiveSupport::Callbacks.
|
|
|
|
include ActiveSupport::Callbacks
|
2009-05-07 11:38:57 -04:00
|
|
|
|
|
|
|
included do
|
2009-09-08 12:52:41 -04:00
|
|
|
define_callbacks :process_action, :terminator => "response_body"
|
2009-02-27 22:25:45 -05:00
|
|
|
end
|
2009-05-07 11:38:57 -04:00
|
|
|
|
2009-06-08 19:14:38 -04:00
|
|
|
# Override AbstractController::Base's process_action to run the
|
|
|
|
# process_action callbacks around the normal behavior.
|
2009-05-15 18:57:12 -04:00
|
|
|
def process_action(method_name)
|
2009-10-12 22:58:49 -04:00
|
|
|
run_callbacks(:process_action, method_name) do
|
2009-02-27 22:25:45 -05:00
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
2009-05-28 10:49:02 -04:00
|
|
|
|
2009-02-27 22:25:45 -05:00
|
|
|
module ClassMethods
|
2010-05-20 06:23:21 -04:00
|
|
|
# If :only or :except are used, convert the options into the
|
2009-06-08 19:14:38 -04:00
|
|
|
# primitive form (:per_key) used by ActiveSupport::Callbacks.
|
|
|
|
# The basic idea is that :only => :index gets converted to
|
|
|
|
# :if => proc {|c| c.action_name == "index" }, but that the
|
|
|
|
# proc is only evaluated once per action for the lifetime of
|
|
|
|
# a Rails process.
|
|
|
|
#
|
|
|
|
# ==== Options
|
2010-08-25 12:57:27 -04:00
|
|
|
# * <tt>only</tt> - The callback should be run only for this action
|
|
|
|
# * <tt>except<tt> - The callback should be run for all actions except this action
|
2009-02-27 22:25:45 -05:00
|
|
|
def _normalize_callback_options(options)
|
|
|
|
if only = options[:only]
|
2009-05-01 19:01:37 -04:00
|
|
|
only = Array(only).map {|o| "action_name == '#{o}'"}.join(" || ")
|
2009-02-27 22:25:45 -05:00
|
|
|
options[:per_key] = {:if => only}
|
|
|
|
end
|
|
|
|
if except = options[:except]
|
2009-05-28 10:49:02 -04:00
|
|
|
except = Array(except).map {|e| "action_name == '#{e}'"}.join(" || ")
|
2009-02-27 22:25:45 -05:00
|
|
|
options[:per_key] = {:unless => except}
|
|
|
|
end
|
|
|
|
end
|
2009-05-28 10:49:02 -04:00
|
|
|
|
2009-06-08 19:14:38 -04:00
|
|
|
# Skip before, after, and around filters matching any of the names
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
2010-08-25 12:57:27 -04:00
|
|
|
# * <tt>names</tt> - A list of valid names that could be used for
|
2009-06-08 19:14:38 -04:00
|
|
|
# callbacks. Note that skipping uses Ruby equality, so it's
|
|
|
|
# impossible to skip a callback defined using an anonymous proc
|
|
|
|
# using #skip_filter
|
2009-06-01 18:40:11 -04:00
|
|
|
def skip_filter(*names, &blk)
|
2009-06-08 19:14:38 -04:00
|
|
|
skip_before_filter(*names)
|
|
|
|
skip_after_filter(*names)
|
|
|
|
skip_around_filter(*names)
|
2009-06-01 18:40:11 -04:00
|
|
|
end
|
|
|
|
|
2009-06-08 19:14:38 -04:00
|
|
|
# Take callback names and an optional callback proc, normalize them,
|
|
|
|
# then call the block with each callback. This allows us to abstract
|
|
|
|
# the normalization across several methods that use it.
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
2010-08-25 12:57:27 -04:00
|
|
|
# * <tt>callbacks</tt> - An array of callbacks, with an optional
|
2009-06-08 19:14:38 -04:00
|
|
|
# options hash as the last parameter.
|
2010-08-25 12:57:27 -04:00
|
|
|
# * <tt>block</tt> - A proc that should be added to the callbacks.
|
2009-06-08 19:14:38 -04:00
|
|
|
#
|
|
|
|
# ==== Block Parameters
|
2010-08-25 12:57:27 -04:00
|
|
|
# * <tt>name</tt> - The callback to be added
|
|
|
|
# * <tt>options</tt> - A hash of options to be used when adding the callback
|
2009-06-08 19:14:38 -04:00
|
|
|
def _insert_callbacks(callbacks, block)
|
|
|
|
options = callbacks.last.is_a?(Hash) ? callbacks.pop : {}
|
2009-06-02 22:00:59 -04:00
|
|
|
_normalize_callback_options(options)
|
2009-06-08 19:14:38 -04:00
|
|
|
callbacks.push(block) if block
|
|
|
|
callbacks.each do |callback|
|
|
|
|
yield callback, options
|
2009-06-02 22:00:59 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-06-08 19:14:38 -04:00
|
|
|
# set up before_filter, prepend_before_filter, skip_before_filter, etc.
|
|
|
|
# for each of before, after, and around.
|
2009-02-27 22:25:45 -05:00
|
|
|
[:before, :after, :around].each do |filter|
|
|
|
|
class_eval <<-RUBY_EVAL, __FILE__, __LINE__ + 1
|
2009-06-08 19:14:38 -04:00
|
|
|
# Append a before, after or around filter. See _insert_callbacks
|
|
|
|
# for details on the allowed parameters.
|
2010-08-25 12:57:27 -04:00
|
|
|
def #{filter}_filter(*names, &blk) # def before_filter(*names, &blk)
|
|
|
|
_insert_callbacks(names, blk) do |name, options| # _insert_callbacks(names, blk) do |name, options}
|
|
|
|
set_callback(:process_action, :#{filter}, name, options) # set_callback(:process_action, :before_filter, name, options)
|
|
|
|
end # end
|
|
|
|
end # end
|
2009-05-23 04:30:25 -04:00
|
|
|
|
2009-06-08 19:14:38 -04:00
|
|
|
# Prepend a before, after or around filter. See _insert_callbacks
|
|
|
|
# for details on the allowed parameters.
|
2010-08-25 12:57:27 -04:00
|
|
|
def prepend_#{filter}_filter(*names, &blk) # def prepend_before_filter(*names, &blk)
|
|
|
|
_insert_callbacks(names, blk) do |name, options| # _insert_callbacks(names, blk) do |name, options|
|
|
|
|
set_callback(:process_action, :#{filter}, name, options.merge(:prepend => true)) # set_callback(:process_action, :before, name, options.merge(:prepend => true))
|
|
|
|
end # end
|
|
|
|
end # end
|
2009-05-27 14:02:13 -04:00
|
|
|
|
2009-06-08 19:14:38 -04:00
|
|
|
# Skip a before, after or around filter. See _insert_callbacks
|
|
|
|
# for details on the allowed parameters.
|
2010-08-25 12:57:27 -04:00
|
|
|
def skip_#{filter}_filter(*names, &blk) # def skip_before_filter(*names, &blk)
|
|
|
|
_insert_callbacks(names, blk) do |name, options| # _insert_callbacks(names, blk) do |name, options|
|
|
|
|
skip_callback(:process_action, :#{filter}, name, options) # skip_callback(:process_action, :before, name, options)
|
|
|
|
end # end
|
|
|
|
end # end
|
2009-05-23 04:30:25 -04:00
|
|
|
|
2009-06-08 19:14:38 -04:00
|
|
|
# *_filter is the same as append_*_filter
|
2009-05-23 04:30:25 -04:00
|
|
|
alias_method :append_#{filter}_filter, :#{filter}_filter
|
2009-02-27 22:25:45 -05:00
|
|
|
RUBY_EVAL
|
|
|
|
end
|
|
|
|
end
|
2009-02-27 18:11:02 -05:00
|
|
|
end
|
2009-05-28 10:49:02 -04:00
|
|
|
end
|