devise 3.5.10 → 4.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (257) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +240 -1147
  3. data/MIT-LICENSE +1 -1
  4. data/README.md +240 -65
  5. data/app/controllers/devise/confirmations_controller.rb +3 -1
  6. data/app/controllers/devise/omniauth_callbacks_controller.rb +8 -6
  7. data/app/controllers/devise/passwords_controller.rb +7 -4
  8. data/app/controllers/devise/registrations_controller.rb +39 -18
  9. data/app/controllers/devise/sessions_controller.rb +9 -7
  10. data/app/controllers/devise/unlocks_controller.rb +4 -2
  11. data/app/controllers/devise_controller.rb +23 -10
  12. data/app/helpers/devise_helper.rb +12 -19
  13. data/app/mailers/devise/mailer.rb +6 -0
  14. data/app/views/devise/confirmations/new.html.erb +2 -2
  15. data/app/views/devise/mailer/email_changed.html.erb +7 -0
  16. data/app/views/devise/passwords/edit.html.erb +2 -2
  17. data/app/views/devise/passwords/new.html.erb +2 -2
  18. data/app/views/devise/registrations/edit.html.erb +9 -5
  19. data/app/views/devise/registrations/new.html.erb +4 -4
  20. data/app/views/devise/sessions/new.html.erb +4 -4
  21. data/app/views/devise/shared/_error_messages.html.erb +15 -0
  22. data/app/views/devise/shared/_links.html.erb +7 -7
  23. data/app/views/devise/unlocks/new.html.erb +2 -2
  24. data/config/locales/en.yml +3 -0
  25. data/lib/devise/controllers/helpers.rb +23 -20
  26. data/lib/devise/controllers/rememberable.rb +3 -1
  27. data/lib/devise/controllers/scoped_views.rb +2 -0
  28. data/lib/devise/controllers/sign_in_out.rb +34 -11
  29. data/lib/devise/controllers/store_location.rb +25 -7
  30. data/lib/devise/controllers/url_helpers.rb +2 -0
  31. data/lib/devise/delegator.rb +2 -0
  32. data/lib/devise/encryptor.rb +6 -4
  33. data/lib/devise/failure_app.rb +81 -37
  34. data/lib/devise/hooks/activatable.rb +2 -0
  35. data/lib/devise/hooks/csrf_cleaner.rb +2 -0
  36. data/lib/devise/hooks/forgetable.rb +2 -0
  37. data/lib/devise/hooks/lockable.rb +6 -1
  38. data/lib/devise/hooks/proxy.rb +3 -1
  39. data/lib/devise/hooks/rememberable.rb +2 -0
  40. data/lib/devise/hooks/timeoutable.rb +2 -0
  41. data/lib/devise/hooks/trackable.rb +2 -0
  42. data/lib/devise/mailers/helpers.rb +7 -4
  43. data/lib/devise/mapping.rb +2 -0
  44. data/lib/devise/models/authenticatable.rb +51 -25
  45. data/lib/devise/models/confirmable.rb +76 -27
  46. data/lib/devise/models/database_authenticatable.rb +91 -23
  47. data/lib/devise/models/lockable.rb +10 -4
  48. data/lib/devise/models/omniauthable.rb +2 -0
  49. data/lib/devise/models/recoverable.rb +31 -19
  50. data/lib/devise/models/registerable.rb +4 -0
  51. data/lib/devise/models/rememberable.rb +5 -10
  52. data/lib/devise/models/timeoutable.rb +2 -0
  53. data/lib/devise/models/trackable.rb +15 -1
  54. data/lib/devise/models/validatable.rb +10 -3
  55. data/lib/devise/models.rb +3 -1
  56. data/lib/devise/modules.rb +2 -0
  57. data/lib/devise/omniauth/config.rb +2 -0
  58. data/lib/devise/omniauth/url_helpers.rb +14 -5
  59. data/lib/devise/omniauth.rb +2 -0
  60. data/lib/devise/orm/active_record.rb +5 -1
  61. data/lib/devise/orm/mongoid.rb +6 -2
  62. data/lib/devise/parameter_filter.rb +4 -0
  63. data/lib/devise/parameter_sanitizer.rb +139 -65
  64. data/lib/devise/rails/routes.rb +42 -31
  65. data/lib/devise/rails/warden_compat.rb +3 -10
  66. data/lib/devise/rails.rb +7 -16
  67. data/lib/devise/secret_key_finder.rb +27 -0
  68. data/lib/devise/strategies/authenticatable.rb +2 -0
  69. data/lib/devise/strategies/base.rb +2 -0
  70. data/lib/devise/strategies/database_authenticatable.rb +11 -4
  71. data/lib/devise/strategies/rememberable.rb +2 -0
  72. data/lib/devise/test/controller_helpers.rb +165 -0
  73. data/lib/devise/test/integration_helpers.rb +63 -0
  74. data/lib/devise/test_helpers.rb +7 -124
  75. data/lib/devise/time_inflector.rb +2 -0
  76. data/lib/devise/token_generator.rb +3 -41
  77. data/lib/devise/version.rb +3 -1
  78. data/lib/devise.rb +61 -40
  79. data/lib/generators/active_record/devise_generator.rb +29 -10
  80. data/lib/generators/active_record/templates/migration.rb +4 -2
  81. data/lib/generators/active_record/templates/migration_existing.rb +4 -2
  82. data/lib/generators/devise/controllers_generator.rb +3 -1
  83. data/lib/generators/devise/devise_generator.rb +4 -2
  84. data/lib/generators/devise/install_generator.rb +17 -0
  85. data/lib/generators/devise/orm_helpers.rb +10 -21
  86. data/lib/generators/devise/views_generator.rb +7 -8
  87. data/lib/generators/mongoid/devise_generator.rb +7 -5
  88. data/lib/generators/templates/README +1 -8
  89. data/lib/generators/templates/controllers/confirmations_controller.rb +2 -0
  90. data/lib/generators/templates/controllers/omniauth_callbacks_controller.rb +2 -0
  91. data/lib/generators/templates/controllers/passwords_controller.rb +2 -0
  92. data/lib/generators/templates/controllers/registrations_controller.rb +6 -4
  93. data/lib/generators/templates/controllers/sessions_controller.rb +4 -2
  94. data/lib/generators/templates/controllers/unlocks_controller.rb +2 -0
  95. data/lib/generators/templates/devise.rb +50 -20
  96. data/lib/generators/templates/markerb/email_changed.markerb +7 -0
  97. data/lib/generators/templates/markerb/password_change.markerb +2 -2
  98. data/lib/generators/templates/simple_form_for/confirmations/new.html.erb +5 -1
  99. data/lib/generators/templates/simple_form_for/passwords/edit.html.erb +6 -1
  100. data/lib/generators/templates/simple_form_for/passwords/new.html.erb +4 -1
  101. data/lib/generators/templates/simple_form_for/registrations/edit.html.erb +11 -3
  102. data/lib/generators/templates/simple_form_for/registrations/new.html.erb +11 -3
  103. data/lib/generators/templates/simple_form_for/sessions/new.html.erb +7 -2
  104. data/lib/generators/templates/simple_form_for/unlocks/new.html.erb +4 -1
  105. metadata +15 -307
  106. data/.gitignore +0 -10
  107. data/.travis.yml +0 -44
  108. data/.yardopts +0 -9
  109. data/CODE_OF_CONDUCT.md +0 -22
  110. data/CONTRIBUTING.md +0 -16
  111. data/Gemfile +0 -30
  112. data/Gemfile.lock +0 -187
  113. data/Rakefile +0 -36
  114. data/devise.gemspec +0 -27
  115. data/devise.png +0 -0
  116. data/gemfiles/Gemfile.rails-3.2-stable +0 -29
  117. data/gemfiles/Gemfile.rails-3.2-stable.lock +0 -172
  118. data/gemfiles/Gemfile.rails-4.0-stable +0 -30
  119. data/gemfiles/Gemfile.rails-4.0-stable.lock +0 -166
  120. data/gemfiles/Gemfile.rails-4.1-stable +0 -30
  121. data/gemfiles/Gemfile.rails-4.1-stable.lock +0 -171
  122. data/gemfiles/Gemfile.rails-4.2-stable +0 -30
  123. data/gemfiles/Gemfile.rails-4.2-stable.lock +0 -193
  124. data/script/cached-bundle +0 -49
  125. data/script/s3-put +0 -71
  126. data/test/controllers/custom_registrations_controller_test.rb +0 -40
  127. data/test/controllers/custom_strategy_test.rb +0 -62
  128. data/test/controllers/helper_methods_test.rb +0 -21
  129. data/test/controllers/helpers_test.rb +0 -316
  130. data/test/controllers/inherited_controller_i18n_messages_test.rb +0 -51
  131. data/test/controllers/internal_helpers_test.rb +0 -129
  132. data/test/controllers/load_hooks_controller_test.rb +0 -19
  133. data/test/controllers/passwords_controller_test.rb +0 -31
  134. data/test/controllers/sessions_controller_test.rb +0 -103
  135. data/test/controllers/url_helpers_test.rb +0 -65
  136. data/test/delegator_test.rb +0 -19
  137. data/test/devise_test.rb +0 -107
  138. data/test/failure_app_test.rb +0 -315
  139. data/test/generators/active_record_generator_test.rb +0 -109
  140. data/test/generators/controllers_generator_test.rb +0 -48
  141. data/test/generators/devise_generator_test.rb +0 -39
  142. data/test/generators/install_generator_test.rb +0 -13
  143. data/test/generators/mongoid_generator_test.rb +0 -23
  144. data/test/generators/views_generator_test.rb +0 -103
  145. data/test/helpers/devise_helper_test.rb +0 -49
  146. data/test/integration/authenticatable_test.rb +0 -729
  147. data/test/integration/confirmable_test.rb +0 -324
  148. data/test/integration/database_authenticatable_test.rb +0 -95
  149. data/test/integration/http_authenticatable_test.rb +0 -105
  150. data/test/integration/lockable_test.rb +0 -239
  151. data/test/integration/omniauthable_test.rb +0 -135
  152. data/test/integration/recoverable_test.rb +0 -347
  153. data/test/integration/registerable_test.rb +0 -359
  154. data/test/integration/rememberable_test.rb +0 -214
  155. data/test/integration/timeoutable_test.rb +0 -184
  156. data/test/integration/trackable_test.rb +0 -92
  157. data/test/mailers/confirmation_instructions_test.rb +0 -115
  158. data/test/mailers/reset_password_instructions_test.rb +0 -96
  159. data/test/mailers/unlock_instructions_test.rb +0 -91
  160. data/test/mapping_test.rb +0 -134
  161. data/test/models/authenticatable_test.rb +0 -23
  162. data/test/models/confirmable_test.rb +0 -511
  163. data/test/models/database_authenticatable_test.rb +0 -269
  164. data/test/models/lockable_test.rb +0 -350
  165. data/test/models/omniauthable_test.rb +0 -7
  166. data/test/models/recoverable_test.rb +0 -251
  167. data/test/models/registerable_test.rb +0 -7
  168. data/test/models/rememberable_test.rb +0 -169
  169. data/test/models/serializable_test.rb +0 -49
  170. data/test/models/timeoutable_test.rb +0 -51
  171. data/test/models/trackable_test.rb +0 -41
  172. data/test/models/validatable_test.rb +0 -127
  173. data/test/models_test.rb +0 -153
  174. data/test/omniauth/config_test.rb +0 -57
  175. data/test/omniauth/url_helpers_test.rb +0 -54
  176. data/test/orm/active_record.rb +0 -10
  177. data/test/orm/mongoid.rb +0 -13
  178. data/test/parameter_sanitizer_test.rb +0 -81
  179. data/test/rails_app/Rakefile +0 -6
  180. data/test/rails_app/app/active_record/admin.rb +0 -6
  181. data/test/rails_app/app/active_record/shim.rb +0 -2
  182. data/test/rails_app/app/active_record/user.rb +0 -6
  183. data/test/rails_app/app/active_record/user_on_engine.rb +0 -7
  184. data/test/rails_app/app/active_record/user_on_main_app.rb +0 -7
  185. data/test/rails_app/app/active_record/user_without_email.rb +0 -8
  186. data/test/rails_app/app/controllers/admins/sessions_controller.rb +0 -6
  187. data/test/rails_app/app/controllers/admins_controller.rb +0 -6
  188. data/test/rails_app/app/controllers/application_controller.rb +0 -12
  189. data/test/rails_app/app/controllers/application_with_fake_engine.rb +0 -30
  190. data/test/rails_app/app/controllers/custom/registrations_controller.rb +0 -31
  191. data/test/rails_app/app/controllers/home_controller.rb +0 -25
  192. data/test/rails_app/app/controllers/publisher/registrations_controller.rb +0 -2
  193. data/test/rails_app/app/controllers/publisher/sessions_controller.rb +0 -2
  194. data/test/rails_app/app/controllers/users/omniauth_callbacks_controller.rb +0 -14
  195. data/test/rails_app/app/controllers/users_controller.rb +0 -31
  196. data/test/rails_app/app/helpers/application_helper.rb +0 -3
  197. data/test/rails_app/app/mailers/users/from_proc_mailer.rb +0 -3
  198. data/test/rails_app/app/mailers/users/mailer.rb +0 -3
  199. data/test/rails_app/app/mailers/users/reply_to_mailer.rb +0 -4
  200. data/test/rails_app/app/mongoid/admin.rb +0 -29
  201. data/test/rails_app/app/mongoid/shim.rb +0 -23
  202. data/test/rails_app/app/mongoid/user.rb +0 -39
  203. data/test/rails_app/app/mongoid/user_on_engine.rb +0 -39
  204. data/test/rails_app/app/mongoid/user_on_main_app.rb +0 -39
  205. data/test/rails_app/app/mongoid/user_without_email.rb +0 -33
  206. data/test/rails_app/app/views/admins/index.html.erb +0 -1
  207. data/test/rails_app/app/views/admins/sessions/new.html.erb +0 -2
  208. data/test/rails_app/app/views/home/admin_dashboard.html.erb +0 -1
  209. data/test/rails_app/app/views/home/index.html.erb +0 -1
  210. data/test/rails_app/app/views/home/join.html.erb +0 -1
  211. data/test/rails_app/app/views/home/private.html.erb +0 -1
  212. data/test/rails_app/app/views/home/user_dashboard.html.erb +0 -1
  213. data/test/rails_app/app/views/layouts/application.html.erb +0 -24
  214. data/test/rails_app/app/views/users/edit_form.html.erb +0 -1
  215. data/test/rails_app/app/views/users/index.html.erb +0 -1
  216. data/test/rails_app/app/views/users/mailer/confirmation_instructions.erb +0 -1
  217. data/test/rails_app/app/views/users/sessions/new.html.erb +0 -1
  218. data/test/rails_app/bin/bundle +0 -3
  219. data/test/rails_app/bin/rails +0 -4
  220. data/test/rails_app/bin/rake +0 -4
  221. data/test/rails_app/config/application.rb +0 -40
  222. data/test/rails_app/config/boot.rb +0 -14
  223. data/test/rails_app/config/database.yml +0 -18
  224. data/test/rails_app/config/environment.rb +0 -5
  225. data/test/rails_app/config/environments/development.rb +0 -30
  226. data/test/rails_app/config/environments/production.rb +0 -84
  227. data/test/rails_app/config/environments/test.rb +0 -41
  228. data/test/rails_app/config/initializers/backtrace_silencers.rb +0 -7
  229. data/test/rails_app/config/initializers/devise.rb +0 -180
  230. data/test/rails_app/config/initializers/inflections.rb +0 -2
  231. data/test/rails_app/config/initializers/secret_token.rb +0 -8
  232. data/test/rails_app/config/initializers/session_store.rb +0 -1
  233. data/test/rails_app/config/routes.rb +0 -125
  234. data/test/rails_app/config.ru +0 -4
  235. data/test/rails_app/db/migrate/20100401102949_create_tables.rb +0 -71
  236. data/test/rails_app/db/schema.rb +0 -55
  237. data/test/rails_app/lib/shared_admin.rb +0 -17
  238. data/test/rails_app/lib/shared_user.rb +0 -29
  239. data/test/rails_app/lib/shared_user_without_email.rb +0 -26
  240. data/test/rails_app/lib/shared_user_without_omniauth.rb +0 -13
  241. data/test/rails_app/public/404.html +0 -26
  242. data/test/rails_app/public/422.html +0 -26
  243. data/test/rails_app/public/500.html +0 -26
  244. data/test/rails_app/public/favicon.ico +0 -0
  245. data/test/rails_test.rb +0 -9
  246. data/test/routes_test.rb +0 -264
  247. data/test/support/action_controller/record_identifier.rb +0 -10
  248. data/test/support/assertions.rb +0 -39
  249. data/test/support/helpers.rb +0 -77
  250. data/test/support/integration.rb +0 -92
  251. data/test/support/locale/en.yml +0 -8
  252. data/test/support/mongoid.yml +0 -6
  253. data/test/support/webrat/integrations/rails.rb +0 -24
  254. data/test/test_helper.rb +0 -34
  255. data/test/test_helpers_test.rb +0 -178
  256. data/test/test_models.rb +0 -33
  257. data/test/time_helpers.rb +0 -137
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2009-2015 Plataformatec. http://plataformatec.com.br
1
+ Copyright 2009-2019 Plataformatec. http://plataformatec.com.br
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -4,7 +4,6 @@ By [Plataformatec](http://plataformatec.com.br/).
4
4
 
5
5
  [![Build Status](https://api.travis-ci.org/plataformatec/devise.svg?branch=master)](http://travis-ci.org/plataformatec/devise)
6
6
  [![Code Climate](https://codeclimate.com/github/plataformatec/devise.svg)](https://codeclimate.com/github/plataformatec/devise)
7
- [![Security](https://hakiri.io/github/plataformatec/devise/master.svg)](https://hakiri.io/github/plataformatec/devise/master)
8
7
 
9
8
  This README is [also available in a friendly navigable format](http://devise.plataformatec.com.br/).
10
9
 
@@ -17,18 +16,55 @@ Devise is a flexible authentication solution for Rails based on Warden. It:
17
16
 
18
17
  It's composed of 10 modules:
19
18
 
20
- * [Database Authenticatable](http://rubydoc.info/github/plataformatec/devise/master/Devise/Models/DatabaseAuthenticatable): encrypts and stores a password in the database to validate the authenticity of a user while signing in. The authentication can be done both through POST requests or HTTP Basic Authentication.
21
- * [Omniauthable](http://rubydoc.info/github/plataformatec/devise/master/Devise/Models/Omniauthable): adds OmniAuth (https://github.com/intridea/omniauth) support.
22
- * [Confirmable](http://rubydoc.info/github/plataformatec/devise/master/Devise/Models/Confirmable): sends emails with confirmation instructions and verifies whether an account is already confirmed during sign in.
23
- * [Recoverable](http://rubydoc.info/github/plataformatec/devise/master/Devise/Models/Recoverable): resets the user password and sends reset instructions.
24
- * [Registerable](http://rubydoc.info/github/plataformatec/devise/master/Devise/Models/Registerable): handles signing up users through a registration process, also allowing them to edit and destroy their account.
25
- * [Rememberable](http://rubydoc.info/github/plataformatec/devise/master/Devise/Models/Rememberable): manages generating and clearing a token for remembering the user from a saved cookie.
26
- * [Trackable](http://rubydoc.info/github/plataformatec/devise/master/Devise/Models/Trackable): tracks sign in count, timestamps and IP address.
27
- * [Timeoutable](http://rubydoc.info/github/plataformatec/devise/master/Devise/Models/Timeoutable): expires sessions that have not been active in a specified period of time.
28
- * [Validatable](http://rubydoc.info/github/plataformatec/devise/master/Devise/Models/Validatable): provides validations of email and password. It's optional and can be customized, so you're able to define your own validations.
29
- * [Lockable](http://rubydoc.info/github/plataformatec/devise/master/Devise/Models/Lockable): locks an account after a specified number of failed sign-in attempts. Can unlock via email or after a specified time period.
19
+ * [Database Authenticatable](http://www.rubydoc.info/github/plataformatec/devise/master/Devise/Models/DatabaseAuthenticatable): hashes and stores a password in the database to validate the authenticity of a user while signing in. The authentication can be done both through POST requests or HTTP Basic Authentication.
20
+ * [Omniauthable](http://www.rubydoc.info/github/plataformatec/devise/master/Devise/Models/Omniauthable): adds OmniAuth (https://github.com/omniauth/omniauth) support.
21
+ * [Confirmable](http://www.rubydoc.info/github/plataformatec/devise/master/Devise/Models/Confirmable): sends emails with confirmation instructions and verifies whether an account is already confirmed during sign in.
22
+ * [Recoverable](http://www.rubydoc.info/github/plataformatec/devise/master/Devise/Models/Recoverable): resets the user password and sends reset instructions.
23
+ * [Registerable](http://www.rubydoc.info/github/plataformatec/devise/master/Devise/Models/Registerable): handles signing up users through a registration process, also allowing them to edit and destroy their account.
24
+ * [Rememberable](http://www.rubydoc.info/github/plataformatec/devise/master/Devise/Models/Rememberable): manages generating and clearing a token for remembering the user from a saved cookie.
25
+ * [Trackable](http://www.rubydoc.info/github/plataformatec/devise/master/Devise/Models/Trackable): tracks sign in count, timestamps and IP address.
26
+ * [Timeoutable](http://www.rubydoc.info/github/plataformatec/devise/master/Devise/Models/Timeoutable): expires sessions that have not been active in a specified period of time.
27
+ * [Validatable](http://www.rubydoc.info/github/plataformatec/devise/master/Devise/Models/Validatable): provides validations of email and password. It's optional and can be customized, so you're able to define your own validations.
28
+ * [Lockable](http://www.rubydoc.info/github/plataformatec/devise/master/Devise/Models/Lockable): locks an account after a specified number of failed sign-in attempts. Can unlock via email or after a specified time period.
29
+
30
+ ## Table of Contents
31
+
32
+ <!-- TOC depthFrom:1 depthTo:6 withLinks:1 orderedList:0 -->
33
+
34
+ - [Information](#information)
35
+ - [The Devise wiki](#the-devise-wiki)
36
+ - [Bug reports](#bug-reports)
37
+ - [StackOverflow and Mailing List](#stackoverflow-and-mailing-list)
38
+ - [RDocs](#rdocs)
39
+ - [Example applications](#example-applications)
40
+ - [Extensions](#extensions)
41
+ - [Contributing](#contributing)
42
+ - [Starting with Rails?](#starting-with-rails)
43
+ - [Getting started](#getting-started)
44
+ - [Controller filters and helpers](#controller-filters-and-helpers)
45
+ - [Configuring Models](#configuring-models)
46
+ - [Strong Parameters](#strong-parameters)
47
+ - [Configuring views](#configuring-views)
48
+ - [Configuring controllers](#configuring-controllers)
49
+ - [Configuring routes](#configuring-routes)
50
+ - [I18n](#i18n)
51
+ - [Test helpers](#test-helpers)
52
+ - [Controller tests](#controller-tests)
53
+ - [Integration tests](#integration-tests)
54
+ - [OmniAuth](#omniauth)
55
+ - [Configuring multiple models](#configuring-multiple-models)
56
+ - [ActiveJob Integration](#activejob-integration)
57
+ - [Password reset tokens and Rails logs](#password-reset-tokens-and-rails-logs)
58
+ - [Other ORMs](#other-orms)
59
+ - [Additional information](#additional-information)
60
+ - [Heroku](#heroku)
61
+ - [Warden](#warden)
62
+ - [Contributors](#contributors)
63
+ - [License](#license)
64
+
65
+ <!-- /TOC -->
66
+
30
67
 
31
- Devise is guaranteed to be thread-safe on YARV. Thread-safety support on JRuby is in progress.
32
68
 
33
69
  ## Information
34
70
 
@@ -46,9 +82,13 @@ https://github.com/plataformatec/devise/wiki/Bug-reports
46
82
 
47
83
  If you have discovered a security related bug, please do *NOT* use the GitHub issue tracker. Send an email to opensource@plataformatec.com.br.
48
84
 
49
- ### Mailing list
85
+ ### StackOverflow and Mailing List
86
+
87
+ If you have any questions, comments, or concerns, please use StackOverflow instead of the GitHub issue tracker:
88
+
89
+ http://stackoverflow.com/questions/tagged/devise
50
90
 
51
- If you have any questions, comments, or concerns, please use the Google Group instead of the GitHub issue tracker:
91
+ The deprecated mailing list can still be read on
52
92
 
53
93
  https://groups.google.com/group/plataformatec-devise
54
94
 
@@ -78,7 +118,54 @@ We hope that you will consider contributing to Devise. Please read this short ov
78
118
 
79
119
  https://github.com/plataformatec/devise/wiki/Contributing
80
120
 
81
- You will usually want to write tests for your changes. To run the test suite, go into Devise's top-level directory and run "bundle install" and "rake". For the tests to pass, you will need to have a MongoDB server (version 2.0 or newer) running on your system.
121
+ You will usually want to write tests for your changes. To run the test suite, go into Devise's top-level directory and run `bundle install` and `bin/test`.
122
+ Devise works with multiple Ruby and Rails versions, and ActiveRecord and Mongoid ORMs, which means you can run the test suite with some modifiers: `DEVISE_ORM` and `BUNDLE_GEMFILE`.
123
+
124
+ ### DEVISE_ORM
125
+ Since Devise support both Mongoid and ActiveRecord, we rely on this variable to run specific code for each ORM.
126
+ The default value of `DEVISE_ORM` is `active_record`. To run the tests for mongoid, you can pass `mongoid`:
127
+ ```
128
+ DEVISE_ORM=mongoid bin/test
129
+
130
+ ==> Devise.orm = :mongoid
131
+ ```
132
+ When running the tests for Mongoid, you will need to have a MongoDB server (version 2.0 or newer) running on your system.
133
+
134
+ Please note that the command output will show the variable value being used.
135
+
136
+ ### BUNDLE_GEMFILE
137
+ We can use this variable to tell bundler what Gemfile it should use (instead of the one in the current directory).
138
+ Inside the [gemfiles](https://github.com/plataformatec/devise/tree/master/gemfiles) directory, we have one for each version of Rails we support. When you send us a pull request, it may happen that the test suite breaks on Travis using some of them. If that's the case, you can simulate the same environment using the `BUNDLE_GEMFILE` variable.
139
+ For example, if the tests broke using Ruby 2.4.2 and Rails 4.1, you can do the following:
140
+ ```bash
141
+ rbenv shell 2.4.2 # or rvm use 2.4.2
142
+ BUNDLE_GEMFILE=gemfiles/Gemfile.rails-4.1-stable bundle install
143
+ BUNDLE_GEMFILE=gemfiles/Gemfile.rails-4.1-stable bin/test
144
+ ```
145
+
146
+ You can also combine both of them if the tests broke for Mongoid:
147
+ ```bash
148
+ BUNDLE_GEMFILE=gemfiles/Gemfile.rails-4.1-stable bundle install
149
+ BUNDLE_GEMFILE=gemfiles/Gemfile.rails-4.1-stable DEVISE_ORM=mongoid bin/test
150
+ ```
151
+
152
+ ### Running tests
153
+ Devise uses [Mini Test](https://github.com/seattlerb/minitest) as test framework.
154
+
155
+ * Running all tests:
156
+ ```bash
157
+ bin/test
158
+ ```
159
+
160
+ * Running tests for an specific file:
161
+ ```bash
162
+ bin/test test/models/trackable_test.rb
163
+ ```
164
+
165
+ * Running a specific test given a regex:
166
+ ```bash
167
+ bin/test test/models/trackable_test.rb:16
168
+ ```
82
169
 
83
170
  ## Starting with Rails?
84
171
 
@@ -92,37 +179,40 @@ Once you have solidified your understanding of Rails and authentication mechanis
92
179
 
93
180
  ## Getting started
94
181
 
95
- Devise 3.0 works with Rails 3.2 onwards. You can add it to your Gemfile with:
182
+ Devise 4.0 works with Rails 4.1 onwards. Add the following line to your Gemfile:
96
183
 
97
184
  ```ruby
98
185
  gem 'devise'
99
186
  ```
100
187
 
101
- Run the bundle command to install it.
188
+ Then run `bundle install`
102
189
 
103
- After you install Devise and add it to your Gemfile, you need to run the generator:
190
+ Next, you need to run the generator:
104
191
 
105
192
  ```console
106
- rails generate devise:install
193
+ $ rails generate devise:install
107
194
  ```
108
195
 
109
- The generator will install an initializer which describes ALL of Devise's configuration options. It is *imperative* that you take a look at it. When you are done, you are ready to add Devise to any of your models using the generator:
196
+ At this point, a number of instructions will appear in the console. Among these instructions, you'll need to set up the default URL options for the Devise mailer in each environment. Here is a possible configuration for `config/environments/development.rb`:
110
197
 
111
- ```console
112
- rails generate devise MODEL
198
+ ```ruby
199
+ config.action_mailer.default_url_options = { host: 'localhost', port: 3000 }
113
200
  ```
114
201
 
115
- Replace MODEL with the class name used for the application’s users (it’s frequently `User` but could also be `Admin`). This will create a model (if one does not exist) and configure it with default Devise modules. The generator also configures your `config/routes.rb` file to point to the Devise controller.
202
+ The generator will install an initializer which describes ALL of Devise's configuration options. It is *imperative* that you take a look at it. When you are done, you are ready to add Devise to any of your models using the generator.
116
203
 
117
- Next, check the MODEL for any additional configuration options you might want to add, such as confirmable or lockable. If you add an option, be sure to inspect the migration file (created by the generator if your ORM supports them) and uncomment the appropriate section. For example, if you add the confirmable option in the model, you'll need to uncomment the Confirmable section in the migration. Then run `rake db:migrate`
118
204
 
119
- Next, you need to set up the default URL options for the Devise mailer in each environment. Here is a possible configuration for `config/environments/development.rb`:
205
+ In the following command you will replace `MODEL` with the class name used for the application’s users (it’s frequently `User` but could also be `Admin`). This will create a model (if one does not exist) and configure it with the default Devise modules. The generator also configures your `config/routes.rb` file to point to the Devise controller.
120
206
 
121
- ```ruby
122
- config.action_mailer.default_url_options = { host: 'localhost', port: 3000 }
207
+ ```console
208
+ $ rails generate devise MODEL
123
209
  ```
124
210
 
125
- You should restart your application after changing Devise's configuration options. Otherwise, you will run into strange errors, for example, users being unable to login and route helpers being undefined.
211
+ Next, check the MODEL for any additional configuration options you might want to add, such as confirmable or lockable. If you add an option, be sure to inspect the migration file (created by the generator if your ORM supports them) and uncomment the appropriate section. For example, if you add the confirmable option in the model, you'll need to uncomment the Confirmable section in the migration.
212
+
213
+ Then run `rails db:migrate`
214
+
215
+ You should restart your application after changing Devise's configuration options (this includes stopping spring). Otherwise, you will run into strange errors, for example, users being unable to login and route helpers being undefined.
126
216
 
127
217
  ### Controller filters and helpers
128
218
 
@@ -132,6 +222,8 @@ Devise will create some helpers to use inside your controllers and views. To set
132
222
  before_action :authenticate_user!
133
223
  ```
134
224
 
225
+ For Rails 5, note that `protect_from_forgery` is no longer prepended to the `before_action` chain, so if you have set `authenticate_user` before `protect_from_forgery`, your request will result in "Can't verify CSRF token authenticity." To resolve this, either change the order in which you call them, or use `protect_from_forgery prepend: true`.
226
+
135
227
  If your devise model is something other than User, replace "_user" with "_yourmodel". The same logic applies to the instructions below.
136
228
 
137
229
  To verify if a user is signed in, use the following helper:
@@ -155,7 +247,7 @@ user_session
155
247
  After signing in a user, confirming the account or updating the password, Devise will look for a scoped root path to redirect to. For instance, when using a `:user` resource, the `user_root_path` will be used if it exists; otherwise, the default `root_path` will be used. This means that you need to set the root inside your routes:
156
248
 
157
249
  ```ruby
158
- root to: "home#index"
250
+ root to: 'home#index'
159
251
  ```
160
252
 
161
253
  You can also override `after_sign_in_path_for` and `after_sign_out_path_for` to customize your redirect hooks.
@@ -174,19 +266,23 @@ member_session
174
266
 
175
267
  ### Configuring Models
176
268
 
177
- The Devise method in your models also accepts some options to configure its modules. For example, you can choose the cost of the encryption algorithm with:
269
+ The Devise method in your models also accepts some options to configure its modules. For example, you can choose the cost of the hashing algorithm with:
178
270
 
179
271
  ```ruby
180
- devise :database_authenticatable, :registerable, :confirmable, :recoverable, stretches: 20
272
+ devise :database_authenticatable, :registerable, :confirmable, :recoverable, stretches: 12
181
273
  ```
182
274
 
183
275
  Besides `:stretches`, you can define `:pepper`, `:encryptor`, `:confirm_within`, `:remember_for`, `:timeout_in`, `:unlock_in` among other options. For more details, see the initializer file that was created when you invoked the "devise:install" generator described above. This file is usually located at `/config/initializers/devise.rb`.
184
276
 
185
277
  ### Strong Parameters
186
278
 
279
+ ![The Parameter Sanitizer API has changed for Devise 4](http://messages.hellobits.com/warning.svg?message=The%20Parameter%20Sanitizer%20API%20has%20changed%20for%20Devise%204)
280
+
281
+ *For previous Devise versions see https://github.com/plataformatec/devise/tree/3-stable#strong-parameters*
282
+
187
283
  When you customize your own views, you may end up adding new attributes to forms. Rails 4 moved the parameter sanitization from the model to the controller, causing Devise to handle this concern at the controller as well.
188
284
 
189
- There are just three actions in Devise that allow any set of parameters to be passed down to the model, therefore requiring sanitization. Their names and the permitted parameters by default are:
285
+ There are just three actions in Devise that allow any set of parameters to be passed down to the model, therefore requiring sanitization. Their names and default permitted parameters are:
190
286
 
191
287
  * `sign_in` (`Devise::SessionsController#create`) - Permits only the authentication keys (like `email`)
192
288
  * `sign_up` (`Devise::RegistrationsController#create`) - Permits authentication keys plus `password` and `password_confirmation`
@@ -201,18 +297,34 @@ class ApplicationController < ActionController::Base
201
297
  protected
202
298
 
203
299
  def configure_permitted_parameters
204
- devise_parameter_sanitizer.for(:sign_up) << :username
300
+ devise_parameter_sanitizer.permit(:sign_up, keys: [:username])
205
301
  end
206
302
  end
207
303
  ```
208
304
 
209
- The above works for any additional fields where the parameters are simple scalar types. If you have nested attributes (say you're using `accepts_nested_attributes_for`), then you will need to tell devise about those nestings and types. Devise allows you to completely change Devise defaults or invoke custom behaviour by passing a block:
305
+ The above works for any additional fields where the parameters are simple scalar types. If you have nested attributes (say you're using `accepts_nested_attributes_for`), then you will need to tell devise about those nestings and types:
306
+
307
+ ```ruby
308
+ class ApplicationController < ActionController::Base
309
+ before_action :configure_permitted_parameters, if: :devise_controller?
310
+
311
+ protected
312
+
313
+ def configure_permitted_parameters
314
+ devise_parameter_sanitizer.permit(:sign_up, keys: [:first_name, :last_name, address_attributes: [:country, :state, :city, :area, :postal_code]])
315
+ end
316
+ end
317
+ ```
318
+
319
+ Devise allows you to completely change Devise defaults or invoke custom behaviour by passing a block:
210
320
 
211
321
  To permit simple scalar values for username and email, use this
212
322
 
213
323
  ```ruby
214
324
  def configure_permitted_parameters
215
- devise_parameter_sanitizer.for(:sign_in) { |u| u.permit(:username, :email) }
325
+ devise_parameter_sanitizer.permit(:sign_in) do |user_params|
326
+ user_params.permit(:username, :email)
327
+ end
216
328
  end
217
329
  ```
218
330
 
@@ -220,7 +332,9 @@ If you have some checkboxes that express the roles a user may take on registrati
220
332
 
221
333
  ```ruby
222
334
  def configure_permitted_parameters
223
- devise_parameter_sanitizer.for(:sign_up) { |u| u.permit({ roles: [] }, :email, :password, :password_confirmation) }
335
+ devise_parameter_sanitizer.permit(:sign_up) do |user_params|
336
+ user_params.permit({ roles: [] }, :email, :password, :password_confirmation)
337
+ end
224
338
  end
225
339
  ```
226
340
  For the list of permitted scalars, and how to declare permitted keys in nested hashes and arrays, see
@@ -231,8 +345,9 @@ If you have multiple Devise models, you may want to set up a different parameter
231
345
 
232
346
  ```ruby
233
347
  class User::ParameterSanitizer < Devise::ParameterSanitizer
234
- def sign_in
235
- default_params.permit(:username, :email)
348
+ def initialize(*)
349
+ super
350
+ permit(:sign_up, keys: [:username, :email])
236
351
  end
237
352
  end
238
353
  ```
@@ -262,7 +377,7 @@ We built Devise to help you quickly develop an application that uses authenticat
262
377
  Since Devise is an engine, all its views are packaged inside the gem. These views will help you get started, but after some time you may want to change them. If this is the case, you just need to invoke the following generator, and it will copy all views to your application:
263
378
 
264
379
  ```console
265
- rails generate devise:views
380
+ $ rails generate devise:views
266
381
  ```
267
382
 
268
383
  If you have more than one Devise model in your application (such as `User` and `Admin`), you will notice that Devise uses the same views for all models. Fortunately, Devise offers an easy way to customize views. All you need to do is set `config.scoped_views = true` inside the `config/initializers/devise.rb` file.
@@ -270,14 +385,14 @@ If you have more than one Devise model in your application (such as `User` and `
270
385
  After doing so, you will be able to have views based on the role like `users/sessions/new` and `admins/sessions/new`. If no view is found within the scope, Devise will use the default view at `devise/sessions/new`. You can also use the generator to generate scoped views:
271
386
 
272
387
  ```console
273
- rails generate devise:views users
388
+ $ rails generate devise:views users
274
389
  ```
275
390
 
276
391
  If you would like to generate only a few sets of views, like the ones for the `registerable` and `confirmable` module,
277
392
  you can pass a list of modules to the generator with the `-v` flag.
278
393
 
279
394
  ```console
280
- rails generate devise:views -v registrations confirmations
395
+ $ rails generate devise:views -v registrations confirmations
281
396
  ```
282
397
 
283
398
  ### Configuring controllers
@@ -287,7 +402,7 @@ If the customization at the views level is not enough, you can customize each co
287
402
  1. Create your custom controllers using the generator which requires a scope:
288
403
 
289
404
  ```console
290
- rails generate devise:controllers [scope]
405
+ $ rails generate devise:controllers [scope]
291
406
  ```
292
407
 
293
408
  If you specify `users` as the scope, controllers will be created in `app/controllers/users/`.
@@ -302,11 +417,12 @@ If the customization at the views level is not enough, you can customize each co
302
417
  ...
303
418
  end
304
419
  ```
420
+ (Use the -c flag to specify a controller, for example: `rails generate devise:controllers users -c=sessions`)
305
421
 
306
422
  2. Tell the router to use this controller:
307
423
 
308
424
  ```ruby
309
- devise_for :users, controllers: { sessions: "users/sessions" }
425
+ devise_for :users, controllers: { sessions: 'users/sessions' }
310
426
  ```
311
427
 
312
428
  3. Copy the views from `devise/sessions` to `users/sessions`. Since the controller was changed, it won't use the default views located in `devise/sessions`.
@@ -344,21 +460,27 @@ Remember that Devise uses flash messages to let users know if sign in was succes
344
460
  Devise also ships with default routes. If you need to customize them, you should probably be able to do it through the devise_for method. It accepts several options like :class_name, :path_prefix and so on, including the possibility to change path names for I18n:
345
461
 
346
462
  ```ruby
347
- devise_for :users, path: "auth", path_names: { sign_in: 'login', sign_out: 'logout', password: 'secret', confirmation: 'verification', unlock: 'unblock', registration: 'register', sign_up: 'cmon_let_me_in' }
463
+ devise_for :users, path: 'auth', path_names: { sign_in: 'login', sign_out: 'logout', password: 'secret', confirmation: 'verification', unlock: 'unblock', registration: 'register', sign_up: 'cmon_let_me_in' }
348
464
  ```
349
465
 
350
- Be sure to check `devise_for` documentation for details.
466
+ Be sure to check `devise_for` [documentation](http://www.rubydoc.info/github/plataformatec/devise/master/ActionDispatch/Routing/Mapper%3Adevise_for) for details.
351
467
 
352
468
  If you have the need for more deep customization, for instance to also allow "/sign_in" besides "/users/sign_in", all you need to do is create your routes normally and wrap them in a `devise_scope` block in the router:
353
469
 
354
470
  ```ruby
355
471
  devise_scope :user do
356
- get "sign_in", to: "devise/sessions#new"
472
+ get 'sign_in', to: 'devise/sessions#new'
357
473
  end
358
474
  ```
359
475
 
360
476
  This way, you tell Devise to use the scope `:user` when "/sign_in" is accessed. Notice `devise_scope` is also aliased as `as` in your router.
361
477
 
478
+ Please note: You will still need to add `devise_for` in your routes in order to use helper methods such as `current_user`.
479
+
480
+ ```ruby
481
+ devise_for :users, skip: :all
482
+ ```
483
+
362
484
  ### I18n
363
485
 
364
486
  Devise uses flash messages with I18n, in conjunction with the flash keys :notice and :alert. To customize your app, you can set up your locale file:
@@ -403,44 +525,97 @@ Caution: Devise Controllers inherit from ApplicationController. If your app uses
403
525
 
404
526
  ### Test helpers
405
527
 
406
- Devise includes some test helpers for functional specs. In order to use them, you need to include Devise in your functional tests by adding the following to the bottom of your `test/test_helper.rb` file:
528
+ Devise includes some test helpers for controller and integration tests.
529
+ In order to use them, you need to include the respective module in your test
530
+ cases/specs.
531
+
532
+ ### Controller tests
533
+
534
+ Controller tests require that you include `Devise::Test::ControllerHelpers` on
535
+ your test case or its parent `ActionController::TestCase` superclass.
536
+ For Rails 5, include `Devise::Test::IntegrationHelpers` instead, since the superclass
537
+ for controller tests has been changed to ActionDispatch::IntegrationTest
538
+ (for more details, see the [Integration tests](#integration-tests) section).
407
539
 
408
540
  ```ruby
409
- class ActionController::TestCase
410
- include Devise::TestHelpers
541
+ class PostsControllerTest < ActionController::TestCase
542
+ include Devise::Test::ControllerHelpers
411
543
  end
412
544
  ```
413
545
 
414
- If you're using RSpec, you can put the following inside a file named `spec/support/devise.rb` or in your `spec/spec_helper.rb` (or `spec/rails_helper.rb` if you are using rspec-rails):
546
+ If you're using RSpec, you can put the following inside a file named
547
+ `spec/support/devise.rb` or in your `spec/spec_helper.rb` (or
548
+ `spec/rails_helper.rb` if you are using `rspec-rails`):
415
549
 
416
550
  ```ruby
417
551
  RSpec.configure do |config|
418
- config.include Devise::TestHelpers, type: :controller
552
+ config.include Devise::Test::ControllerHelpers, type: :controller
553
+ config.include Devise::Test::ControllerHelpers, type: :view
419
554
  end
420
555
  ```
421
556
 
422
557
  Just be sure that this inclusion is made *after* the `require 'rspec/rails'` directive.
423
558
 
424
- Now you are ready to use the `sign_in` and `sign_out` methods. Such methods have the same signature as in controllers:
559
+ Now you are ready to use the `sign_in` and `sign_out` methods on your controller
560
+ tests:
425
561
 
426
562
  ```ruby
427
- sign_in :user, @user # sign_in(scope, resource)
428
- sign_in @user # sign_in(resource)
563
+ sign_in @user
564
+ sign_in @user, scope: :admin
565
+ ```
566
+
567
+ If you are testing Devise internal controllers or a controller that inherits
568
+ from Devise's, you need to tell Devise which mapping should be used before a
569
+ request. This is necessary because Devise gets this information from the router,
570
+ but since controller tests do not pass through the router, it needs to be stated
571
+ explicitly. For example, if you are testing the user scope, simply use:
572
+
573
+ ```ruby
574
+ test 'GET new' do
575
+ # Mimic the router behavior of setting the Devise scope through the env.
576
+ @request.env['devise.mapping'] = Devise.mappings[:user]
577
+
578
+ # Use the sign_in helper to sign in a fixture `User` record.
579
+ sign_in users(:alice)
429
580
 
430
- sign_out :user # sign_out(scope)
431
- sign_out @user # sign_out(resource)
581
+ get :new
582
+
583
+ # assert something
584
+ end
432
585
  ```
433
586
 
434
- There are two things that are important to keep in mind:
587
+ ### Integration tests
435
588
 
436
- 1. These helpers are not going to work for integration tests driven by Capybara or Webrat. They are meant to be used with functional tests only. Instead, fill in the form or explicitly set the user in session;
589
+ Integration test helpers are available by including the
590
+ `Devise::Test::IntegrationHelpers` module.
437
591
 
438
- 2. If you are testing Devise internal controllers or a controller that inherits from Devise's, you need to tell Devise which mapping should be used before a request. This is necessary because Devise gets this information from the router, but since functional tests do not pass through the router, it needs to be stated explicitly. For example, if you are testing the user scope, simply use:
592
+ ```ruby
593
+ class PostsTests < ActionDispatch::IntegrationTest
594
+ include Devise::Test::IntegrationHelpers
595
+ end
596
+ ```
439
597
 
440
- ```ruby
441
- @request.env["devise.mapping"] = Devise.mappings[:user]
442
- get :new
443
- ```
598
+ Now you can use the following `sign_in` and `sign_out` methods in your integration
599
+ tests:
600
+
601
+ ```ruby
602
+ sign_in users(:bob)
603
+ sign_in users(:bob), scope: :admin
604
+
605
+ sign_out :user
606
+ ```
607
+
608
+ RSpec users can include the `IntegrationHelpers` module on their `:feature` specs.
609
+
610
+ ```ruby
611
+ RSpec.configure do |config|
612
+ config.include Devise::Test::IntegrationHelpers, type: :feature
613
+ end
614
+ ```
615
+
616
+ Unlike controller tests, integration tests do not need to supply the
617
+ `devise.mapping` `env` value, as the mapping can be inferred by the routes that
618
+ are executed in your tests.
444
619
 
445
620
  You can read more about testing your Rails 3 - Rails 4 controllers with RSpec in the wiki:
446
621
 
@@ -477,7 +652,7 @@ devise :database_authenticatable, :timeoutable
477
652
  devise_for :admins
478
653
 
479
654
  # Inside your protected controller
480
- before_filter :authenticate_admin!
655
+ before_action :authenticate_admin!
481
656
 
482
657
  # Inside your controllers and views
483
658
  admin_signed_in?
@@ -545,6 +720,6 @@ https://github.com/plataformatec/devise/graphs/contributors
545
720
 
546
721
  ## License
547
722
 
548
- MIT License. Copyright 2009-2015 Plataformatec. http://plataformatec.com.br
723
+ MIT License. Copyright 2009-2018 Plataformatec. http://plataformatec.com.br
549
724
 
550
725
  You are not granted rights or licenses to the trademarks of Plataformatec, including without limitation the Devise name or logo.
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  class Devise::ConfirmationsController < DeviseController
2
4
  # GET /resource/confirmation/new
3
5
  def new
@@ -22,7 +24,7 @@ class Devise::ConfirmationsController < DeviseController
22
24
  yield resource if block_given?
23
25
 
24
26
  if resource.errors.empty?
25
- set_flash_message(:notice, :confirmed) if is_flashing_format?
27
+ set_flash_message!(:notice, :confirmed)
26
28
  respond_with_navigational(resource){ redirect_to after_confirmation_path_for(resource_name, resource) }
27
29
  else
28
30
  respond_with_navigational(resource.errors, status: :unprocessable_entity){ render :new }
@@ -1,26 +1,28 @@
1
+ # frozen_string_literal: true
2
+
1
3
  class Devise::OmniauthCallbacksController < DeviseController
2
- prepend_before_filter { request.env["devise.skip_timeout"] = true }
4
+ prepend_before_action { request.env["devise.skip_timeout"] = true }
3
5
 
4
6
  def passthru
5
- render status: 404, text: "Not found. Authentication passthru."
7
+ render status: 404, plain: "Not found. Authentication passthru."
6
8
  end
7
9
 
8
10
  def failure
9
- set_flash_message :alert, :failure, kind: OmniAuth::Utils.camelize(failed_strategy.name), reason: failure_message
11
+ set_flash_message! :alert, :failure, kind: OmniAuth::Utils.camelize(failed_strategy.name), reason: failure_message
10
12
  redirect_to after_omniauth_failure_path_for(resource_name)
11
13
  end
12
14
 
13
15
  protected
14
16
 
15
17
  def failed_strategy
16
- env["omniauth.error.strategy"]
18
+ request.respond_to?(:get_header) ? request.get_header("omniauth.error.strategy") : request.env["omniauth.error.strategy"]
17
19
  end
18
20
 
19
21
  def failure_message
20
- exception = env["omniauth.error"]
22
+ exception = request.respond_to?(:get_header) ? request.get_header("omniauth.error") : request.env["omniauth.error"]
21
23
  error = exception.error_reason if exception.respond_to?(:error_reason)
22
24
  error ||= exception.error if exception.respond_to?(:error)
23
- error ||= env["omniauth.error.type"].to_s
25
+ error ||= (request.respond_to?(:get_header) ? request.get_header("omniauth.error.type") : request.env["omniauth.error.type"]).to_s
24
26
  error.to_s.humanize if error
25
27
  end
26
28
 
@@ -1,7 +1,9 @@
1
+ # frozen_string_literal: true
2
+
1
3
  class Devise::PasswordsController < DeviseController
2
- prepend_before_filter :require_no_authentication
4
+ prepend_before_action :require_no_authentication
3
5
  # Render the #edit only if coming from a reset password email link
4
- append_before_filter :assert_reset_token_passed, only: :edit
6
+ append_before_action :assert_reset_token_passed, only: :edit
5
7
 
6
8
  # GET /resource/password/new
7
9
  def new
@@ -36,10 +38,11 @@ class Devise::PasswordsController < DeviseController
36
38
  resource.unlock_access! if unlockable?(resource)
37
39
  if Devise.sign_in_after_reset_password
38
40
  flash_message = resource.active_for_authentication? ? :updated : :updated_not_active
39
- set_flash_message(:notice, flash_message) if is_flashing_format?
41
+ set_flash_message!(:notice, flash_message)
42
+ resource.after_database_authentication
40
43
  sign_in(resource_name, resource)
41
44
  else
42
- set_flash_message(:notice, :updated_not_active) if is_flashing_format?
45
+ set_flash_message!(:notice, :updated_not_active)
43
46
  end
44
47
  respond_with resource, location: after_resetting_password_path_for(resource)
45
48
  else