rails--rails/actionpack/lib/action_controller/metal/hide_actions.rb

36 lines
1.0 KiB
Ruby
Raw Normal View History

module ActionController
2009-06-10 21:43:43 +00:00
# ActionController::HideActions adds the ability to prevent public methods on a controller
# to be called as actions.
module HideActions
extend ActiveSupport::Concern
included do
2009-06-10 21:43:43 +00:00
extlib_inheritable_accessor(:hidden_actions) { Set.new }
end
2009-06-10 21:43:43 +00:00
private
# Overrides AbstractController::Base#action_method? to return false if the
# action name is in the list of hidden actions.
2009-06-10 21:43:43 +00:00
def action_method?(action_name)
!hidden_actions.include?(action_name) && super
end
2009-06-10 21:43:43 +00:00
module ClassMethods
# Sets all of the actions passed in as hidden actions.
#
# ==== Parameters
# *args<#to_s>:: A list of actions
2009-06-10 21:43:43 +00:00
def hide_action(*args)
hidden_actions.merge(args.map! {|a| a.to_s })
2009-06-10 21:43:43 +00:00
end
# Overrides AbstractController::Base#action_methods to remove any methods
# that are listed as hidden methods.
2009-06-10 21:43:43 +00:00
def action_methods
@action_methods ||= Set.new(super.reject {|name| hidden_actions.include?(name)})
end
2009-06-10 21:43:43 +00:00
end
end
end