Class: DeviseController

Inherits:
Object
  • Object
show all
Includes:
Devise::Controllers::ScopedViews
Defined in:
app/controllers/devise_controller.rb

Overview

All Devise controllers are inherited from here.

Instance Method Summary collapse

Instance Method Details

#_prefixesObject

Override prefixes to consider the scoped view. Notice we need to check for the request due to a bug in Action Controller tests that forces _prefixes to be loaded before even having a request object.

This method should be public as it is is in ActionPack itself. Changing its visibility may break other gems.



25
26
27
28
29
30
31
# File 'app/controllers/devise_controller.rb', line 25

def _prefixes #:nodoc:
  @_prefixes ||= if self.class.scoped_views? && request && devise_mapping
    ["#{devise_mapping.scoped_path}/#{controller_name}"] + super
  else
    super
  end
end

#assert_is_devise_resource!Object (protected)

Checks whether it’s a devise mapped resource or not.



62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# File 'app/controllers/devise_controller.rb', line 62

def assert_is_devise_resource! #:nodoc:
  unknown_action! <<-MESSAGE unless devise_mapping
Could not find devise mapping for path #{request.fullpath.inspect}.
This may happen for two reasons:

1) You forgot to wrap your route inside the scope block. For example:

devise_scope :user do
  get "/some/route" => "some_devise_controller"
end

2) You are testing a Devise controller bypassing the router.
 If so, you can explicitly tell Devise which mapping to use:

 @request.env["devise.mapping"] = Devise.mappings[:user]

MESSAGE
end

#clean_up_passwords(object) ⇒ Object (protected)



195
196
197
# File 'app/controllers/devise_controller.rb', line 195

def clean_up_passwords(object)
  object.clean_up_passwords if object.respond_to?(:clean_up_passwords)
end

#devise_i18n_options(options) ⇒ Object (protected)



175
176
177
# File 'app/controllers/devise_controller.rb', line 175

def devise_i18n_options(options)
  options
end

#devise_mappingObject (protected)

Attempt to find the mapped route for devise based on request path



57
58
59
# File 'app/controllers/devise_controller.rb', line 57

def devise_mapping
  @devise_mapping ||= request.env["devise.mapping"]
end

#find_message(kind, options = {}) ⇒ Object (protected)

Get message for given



180
181
182
183
184
185
186
# File 'app/controllers/devise_controller.rb', line 180

def find_message(kind, options = {})
  options[:scope] ||= translation_scope
  options[:default] = Array(options[:default]).unshift(kind.to_sym)
  options[:resource_name] = resource_name
  options = devise_i18n_options(options)
  I18n.t("#{options[:resource_name]}.#{kind}", options)
end

Returns real navigational formats which are supported by Rails



82
83
84
# File 'app/controllers/devise_controller.rb', line 82

def navigational_formats
  @navigational_formats ||= Devise.navigational_formats.select { |format| Mime::EXTENSION_LOOKUP[format.to_s] }
end

#require_no_authenticationObject (protected)

Helper for use in before_actions where no authentication is required.

Example:

before_action :require_no_authentication, only: :new


100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# File 'app/controllers/devise_controller.rb', line 100

def require_no_authentication
  assert_is_devise_resource!
  return unless is_navigational_format?
  no_input = devise_mapping.no_input_strategies

  authenticated = if no_input.present?
    args = no_input.dup.push scope: resource_name
    warden.authenticate?(*args)
  else
    warden.authenticated?(resource_name)
  end

  if authenticated && resource = warden.user(resource_name)
    flash[:alert] = I18n.t("devise.failure.already_authenticated")
    redirect_to (resource)
  end
end

#resourceObject (protected)

Gets the actual resource stored in the instance variable



36
37
38
# File 'app/controllers/devise_controller.rb', line 36

def resource
  instance_variable_get(:"@#{resource_name}")
end

#resource=(new_resource) ⇒ Object (protected)

Sets the resource creating an instance variable



92
93
94
# File 'app/controllers/devise_controller.rb', line 92

def resource=(new_resource)
  instance_variable_set(:"@#{resource_name}", new_resource)
end

#resource_classObject (protected)

Proxy to devise map class



47
48
49
# File 'app/controllers/devise_controller.rb', line 47

def resource_class
  devise_mapping.to
end

#resource_nameObject (protected) Also known as: scope_name

Proxy to devise map name



41
42
43
# File 'app/controllers/devise_controller.rb', line 41

def resource_name
  devise_mapping.name
end

#resource_paramsObject (protected)



205
206
207
# File 'app/controllers/devise_controller.rb', line 205

def resource_params
  params.fetch(resource_name, {})
end

#respond_with_navigational(*args, &block) ⇒ Object (protected)



199
200
201
202
203
# File 'app/controllers/devise_controller.rb', line 199

def respond_with_navigational(*args, &block)
  respond_with(*args) do |format|
    format.any(*navigational_formats, &block)
  end
end

#set_flash_message(key, kind, options = {}) ⇒ Object (protected)

Sets the flash message with :key, using I18n. By default you are able to set up your messages using specific resource scope, and if no message is found we look to the default scope. Set the “now” options key to a true value to populate the flash.now hash in lieu of the default flash hash (so the flash message will be available to the current action instead of the next action). Example (i18n locale file):

en:
  devise:
    passwords:
      #default_scope_messages - only if resource_scope is not found
      user:
        #resource_scope_messages

Please refer to README or en.yml locale file to check what messages are available.



152
153
154
155
156
157
158
159
# File 'app/controllers/devise_controller.rb', line 152

def set_flash_message(key, kind, options = {})
  message = find_message(kind, options)
  if options[:now]
    flash.now[key] = message if message.present?
  else
    flash[key] = message if message.present?
  end
end

#set_flash_message!(key, kind, options = {}) ⇒ Object (protected)

Sets flash message if is_flashing_format? equals true



162
163
164
165
166
# File 'app/controllers/devise_controller.rb', line 162

def set_flash_message!(key, kind, options = {})
  if is_flashing_format?
    set_flash_message(key, kind, options)
  end
end

#set_minimum_password_lengthObject (protected)

Sets minimum password length to show to user



169
170
171
172
173
# File 'app/controllers/devise_controller.rb', line 169

def set_minimum_password_length
  if devise_mapping.validatable?
    @minimum_password_length = resource_class.password_length.min
  end
end

#signed_in_resourceObject (protected)

Returns a signed in resource from session (if one exists)



52
53
54
# File 'app/controllers/devise_controller.rb', line 52

def signed_in_resource
  warden.authenticate(scope: resource_name)
end

#successfully_sent?(resource) ⇒ Boolean (protected)

Helper for use after calling send_*_instructions methods on a resource. If we are in paranoid mode, we always act as if the resource was valid and instructions were sent.

Returns:

  • (Boolean)


121
122
123
124
125
126
127
128
129
130
131
132
133
# File 'app/controllers/devise_controller.rb', line 121

def successfully_sent?(resource)
  notice = if Devise.paranoid
    resource.errors.clear
    :send_paranoid_instructions
  elsif resource.errors.empty?
    :send_instructions
  end

  if notice
    set_flash_message! :notice, notice
    true
  end
end

#translation_scopeObject (protected)

Controllers inheriting DeviseController are advised to override this method so that other controllers inheriting from them would use existing translations.



191
192
193
# File 'app/controllers/devise_controller.rb', line 191

def translation_scope
  "devise.#{controller_name}"
end

#unknown_action!(msg) ⇒ Object (protected)

Raises:

  • (AbstractController::ActionNotFound)


86
87
88
89
# File 'app/controllers/devise_controller.rb', line 86

def unknown_action!(msg)
  logger.debug "[Devise] #{msg}" if logger
  raise AbstractController::ActionNotFound, msg
end