verification.rb 5.8 KB
Newer Older
1
module ActionController #:nodoc:
2
  module Verification #:nodoc:
3
    extend ActiveSupport::Concern
4

5
    include AbstractController::Callbacks, Flash, Rendering
6

7 8 9 10 11 12 13 14
    # This module provides a class-level method for specifying that certain
    # actions are guarded against being called without certain prerequisites
    # being met. This is essentially a special kind of before_filter.
    #
    # An action may be guarded against being invoked without certain request
    # parameters being set, or without certain session values existing.
    #
    # When a verification is violated, values may be inserted into the flash, and
15 16
    # a specified redirection is triggered. If no specific action is configured,
    # verification failures will by default result in a 400 Bad Request response.
17 18 19 20
    #
    # Usage:
    #
    #   class GlobalController < ActionController::Base
21 22 23 24
    #     # Prevent the #update_settings action from being invoked unless
    #     # the 'admin_privileges' request parameter exists. The
    #     # settings action will be redirected to in current controller
    #     # if verification fails.
25 26 27
    #     verify :params => "admin_privileges", :only => :update_post,
    #            :redirect_to => { :action => "settings" }
    #
28
    #     # Disallow a post from being updated if there was no information
29
    #     # submitted with the post, and if there is no active post in the
30 31 32
    #     # session, and if there is no "note" key in the flash. The route
    #     # named category_url will be redirected to if verification fails.
    #
33 34 35 36 37
    #     verify :params => "post", :session => "post", "flash" => "note",
    #            :only => :update_post,
    #            :add_flash => { "alert" => "Failed to create your message" },
    #            :redirect_to => :category_url
    #
38
    # Note that these prerequisites are not business rules. They do not examine
39 40
    # the content of the session or the parameters. That level of validation should
    # be encapsulated by your domain model or helper methods in the controller.
41 42 43 44 45
    module ClassMethods
      # Verify the given actions so that if certain prerequisites are not met,
      # the user is redirected to a different action. The +options+ parameter
      # is a hash consisting of the following key/value pairs:
      #
46 47
      # <tt>:params</tt>::
      #   a single key or an array of keys that must be in the <tt>params</tt>
48
      #   hash in order for the action(s) to be safely called.
49 50
      # <tt>:session</tt>::
      #   a single key or an array of keys that must be in the <tt>session</tt>
51
      #   in order for the action(s) to be safely called.
52 53
      # <tt>:flash</tt>::
      #   a single key or an array of keys that must be in the flash in order
54
      #   for the action(s) to be safely called.
55 56 57 58
      # <tt>:method</tt>::
      #   a single key or an array of keys--any one of which must match the
      #   current request method in order for the action(s) to be safely called.
      #   (The key should be a symbol: <tt>:get</tt> or <tt>:post</tt>, for
59
      #   example.)
60 61 62 63 64
      # <tt>:xhr</tt>::
      #   true/false option to ensure that the request is coming from an Ajax
      #   call or not.
      # <tt>:add_flash</tt>::
      #   a hash of name/value pairs that should be merged into the session's
65
      #   flash if the prerequisites cannot be satisfied.
66 67
      # <tt>:add_headers</tt>::
      #   a hash of name/value pairs that should be merged into the response's
68
      #   headers hash if the prerequisites cannot be satisfied.
69 70 71
      # <tt>:redirect_to</tt>::
      #   the redirection parameters to be used when redirecting if the
      #   prerequisites cannot be satisfied. You can redirect either to named
72
      #   route or to the action in some controller.
73
      # <tt>:render</tt>::
74
      #   the render parameters to be used when the prerequisites cannot be satisfied.
75 76
      # <tt>:only</tt>::
      #   only apply this verification to the actions specified in the associated
77
      #   array (may also be a single value).
78 79
      # <tt>:except</tt>::
      #   do not apply this verification to the actions specified in the associated
80
      #   array (may also be a single value).
81
      def verify(options={})
82 83
        before_filter :only => options[:only], :except => options[:except] do
          verify_action options
84 85 86 87
        end
      end
    end

88 89
  private

90
    def verify_action(options) #:nodoc:
91 92
      if prereqs_invalid?(options)
        flash.update(options[:add_flash])              if options[:add_flash]
93
        response.headers.merge!(options[:add_headers]) if options[:add_headers]
94 95 96
        apply_remaining_actions(options)               unless performed?
      end
    end
97

98
    def prereqs_invalid?(options) # :nodoc:
99 100
      verify_presence_of_keys_in_hash_flash_or_params(options) ||
      verify_method(options) ||
101 102
      verify_request_xhr_status(options)
    end
103

104
    def verify_presence_of_keys_in_hash_flash_or_params(options) # :nodoc:
105
      [*options[:params] ].find { |v| v && params[v.to_sym].nil?  } ||
106 107 108
      [*options[:session]].find { |v| session[v].nil? } ||
      [*options[:flash]  ].find { |v| flash[v].nil?   }
    end
109

110 111 112
    def verify_method(options) # :nodoc:
      [*options[:method]].all? { |v| request.method != v.to_sym } if options[:method]
    end
113

114 115 116
    def verify_request_xhr_status(options) # :nodoc:
      request.xhr? != options[:xhr] unless options[:xhr].nil?
    end
117

118
    def apply_redirect_to(redirect_to_option) # :nodoc:
119
      (redirect_to_option.is_a?(Symbol) && redirect_to_option != :back) ? self.__send__(redirect_to_option) : redirect_to_option
120
    end
121

122 123 124 125 126
    def apply_remaining_actions(options) # :nodoc:
      case
        when options[:render]      ; render(options[:render])
        when options[:redirect_to] ; redirect_to(apply_redirect_to(options[:redirect_to]))
        else head(:bad_request)
127 128 129
      end
    end
  end
130
end