Module: Spree::Core::ControllerHelpers::Auth
- Included in:
- BaseController
- Defined in:
- lib/spree/core/controller_helpers/auth.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#current_ability ⇒ Object
Needs to be overriden so that we use Spree’s Ability rather than anyone else’s.
- #redirect_back_or_default(default) ⇒ Object
- #store_location ⇒ Object
-
#try_spree_current_user ⇒ Object
proxy method to possible spree_current_user method Authentication extensions (such as spree_auth_devise) are meant to provide spree_current_user.
-
#unauthorized ⇒ Object
Redirect as appropriate when an access request fails.
Class Method Details
.included(base) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 |
# File 'lib/spree/core/controller_helpers/auth.rb', line 5 def self.included(base) base.class_eval do include SslRequirement helper_method :try_spree_current_user rescue_from CanCan::AccessDenied do |exception| return end end end |
Instance Method Details
#current_ability ⇒ Object
Needs to be overriden so that we use Spree’s Ability rather than anyone else’s.
18 19 20 |
# File 'lib/spree/core/controller_helpers/auth.rb', line 18 def current_ability @current_ability ||= Spree::Ability.new(try_spree_current_user) end |
#redirect_back_or_default(default) ⇒ Object
58 59 60 61 |
# File 'lib/spree/core/controller_helpers/auth.rb', line 58 def redirect_back_or_default(default) redirect_to(session["user_return_to"] || default) session["user_return_to"] = nil end |
#store_location ⇒ Object
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/spree/core/controller_helpers/auth.rb', line 36 def store_location # disallow return to login, logout, signup pages authentication_routes = [:spree_signup_path, :spree_login_path, :spree_logout_path] disallowed_urls = [] authentication_routes.each do |route| if respond_to?(route) disallowed_urls << send(route) end end disallowed_urls.map!{ |url| url[/\/\w+$/] } unless disallowed_urls.include?(request.fullpath) session['user_return_to'] = request.fullpath.gsub('//', '/') end end |
#try_spree_current_user ⇒ Object
proxy method to possible spree_current_user method Authentication extensions (such as spree_auth_devise) are meant to provide spree_current_user
54 55 56 |
# File 'lib/spree/core/controller_helpers/auth.rb', line 54 def try_spree_current_user respond_to?(:spree_current_user) ? spree_current_user : nil end |
#unauthorized ⇒ Object
Redirect as appropriate when an access request fails. The default action is to redirect to the login screen. Override this method in your controllers if you want to have special behavior in case the user is not authorized to access the requested action. For example, a popup window might simply close itself.
25 26 27 28 29 30 31 32 33 34 |
# File 'lib/spree/core/controller_helpers/auth.rb', line 25 def if try_spree_current_user flash[:error] = t(:authorization_failure) redirect_to '/unauthorized' else store_location url = respond_to?(:spree_login_path) ? spree_login_path : root_path redirect_to url end end |