Sha256: a51bbf0289c5ca801581601c85015cad32d744f2510c4544b495ff77ac9f3d4b

Contents?: true

Size: 1.4 KB

Versions: 149

Compression:

Stored size: 1.4 KB

Contents

require 'active_support/core_ext/class/attribute'

module ActionController
  # Adds the ability to prevent public methods on a controller to be called as actions.
  module HideActions
    extend ActiveSupport::Concern

    included do
      class_attribute :hidden_actions
      self.hidden_actions = Set.new.freeze
    end

  private

    # Overrides AbstractController::Base#action_method? to return false if the
    # action name is in the list of hidden actions.
    def method_for_action(action_name)
      self.class.visible_action?(action_name) && super
    end

    module ClassMethods
      # Sets all of the actions passed in as hidden actions.
      #
      # ==== Parameters
      # * <tt>args</tt> - A list of actions
      def hide_action(*args)
        self.hidden_actions = hidden_actions.dup.merge(args.map(&:to_s)).freeze
      end

      def inherited(klass)
        klass.class_eval { @visible_actions = {} }
        super
      end

      def visible_action?(action_name)
        return @visible_actions[action_name] if @visible_actions.key?(action_name)
        @visible_actions[action_name] = !hidden_actions.include?(action_name)
      end

      # Overrides AbstractController::Base#action_methods to remove any methods
      # that are listed as hidden methods.
      def action_methods
        @action_methods ||= Set.new(super.reject { |name| hidden_actions.include?(name) })
      end
    end
  end
end

Version data entries

149 entries across 113 versions & 16 rubygems

Version Path
jquery_regex-0.0.3 vendor/bundle/gems/jquery_regex-0.0.3/vendor/bundle/gems/jquery_regex-0.0.2/vendor/bundle/gems/jquery_regex-0.0.1/vendor/bundle/gems/actionpack-3.2.9/lib/action_controller/metal/hide_actions.rb
jquery_regex-0.0.3 vendor/bundle/gems/jquery_regex-0.0.3/vendor/bundle/gems/actionpack-3.2.9/lib/action_controller/metal/hide_actions.rb
jquery_regex-0.0.1 vendor/bundle/gems/actionpack-3.2.9/lib/action_controller/metal/hide_actions.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/actionpack-3.2.9/lib/action_controller/metal/hide_actions.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/actionpack-3.2.7/lib/action_controller/metal/hide_actions.rb
challah-rolls-0.2.0 vendor/bundle/gems/actionpack-3.2.9/lib/action_controller/metal/hide_actions.rb
challah-rolls-0.2.0 vendor/bundle/gems/actionpack-3.2.8/lib/action_controller/metal/hide_actions.rb
challah-rolls-0.2.0 vendor/bundle/gems/actionpack-3.2.7/lib/action_controller/metal/hide_actions.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/actionpack-3.2.8/lib/action_controller/metal/hide_actions.rb
challah-0.8.3 vendor/bundle/gems/actionpack-3.2.8/lib/action_controller/metal/hide_actions.rb
challah-0.8.3 vendor/bundle/gems/actionpack-3.2.9/lib/action_controller/metal/hide_actions.rb
actionpack-3.2.9 lib/action_controller/metal/hide_actions.rb
actionpack-3.2.9.rc3 lib/action_controller/metal/hide_actions.rb
actionpack-3.2.9.rc2 lib/action_controller/metal/hide_actions.rb
actionpack-3.2.9.rc1 lib/action_controller/metal/hide_actions.rb
challah-0.8.1 vendor/bundle/gems/actionpack-3.2.8/lib/action_controller/metal/hide_actions.rb
challah-rolls-0.1.0 vendor/bundle/gems/actionpack-3.2.7/lib/action_controller/metal/hide_actions.rb
challah-rolls-0.1.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/actionpack-3.2.7/lib/action_controller/metal/hide_actions.rb
challah-rolls-0.1.0 vendor/bundle/gems/actionpack-3.2.8/lib/action_controller/metal/hide_actions.rb
challah-0.8.0.pre vendor/bundle/gems/actionpack-3.2.7/lib/action_controller/metal/hide_actions.rb