devise 3.2.4 → 4.7.1
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.
- checksums.yaml +5 -5
- data/CHANGELOG.md +259 -994
- data/MIT-LICENSE +1 -1
- data/README.md +336 -99
- data/app/controllers/devise/confirmations_controller.rb +9 -3
- data/app/controllers/devise/omniauth_callbacks_controller.rb +12 -6
- data/app/controllers/devise/passwords_controller.rb +19 -6
- data/app/controllers/devise/registrations_controller.rb +55 -22
- data/app/controllers/devise/sessions_controller.rb +44 -14
- data/app/controllers/devise/unlocks_controller.rb +7 -2
- data/app/controllers/devise_controller.rb +65 -29
- data/app/helpers/devise_helper.rb +12 -19
- data/app/mailers/devise/mailer.rb +10 -0
- data/app/views/devise/confirmations/new.html.erb +8 -4
- data/app/views/devise/mailer/email_changed.html.erb +7 -0
- data/app/views/devise/mailer/password_change.html.erb +3 -0
- data/app/views/devise/passwords/edit.html.erb +15 -6
- data/app/views/devise/passwords/new.html.erb +8 -4
- data/app/views/devise/registrations/edit.html.erb +27 -13
- data/app/views/devise/registrations/new.html.erb +19 -8
- data/app/views/devise/sessions/new.html.erb +18 -9
- data/app/views/devise/shared/_error_messages.html.erb +15 -0
- data/app/views/devise/shared/{_links.erb → _links.html.erb} +9 -9
- data/app/views/devise/unlocks/new.html.erb +8 -4
- data/config/locales/en.yml +22 -16
- data/lib/devise/controllers/helpers.rb +109 -29
- data/lib/devise/controllers/rememberable.rb +12 -3
- data/lib/devise/controllers/scoped_views.rb +2 -0
- data/lib/devise/controllers/sign_in_out.rb +36 -20
- data/lib/devise/controllers/store_location.rb +31 -5
- data/lib/devise/controllers/url_helpers.rb +9 -7
- data/lib/devise/delegator.rb +2 -0
- data/lib/devise/encryptor.rb +24 -0
- data/lib/devise/failure_app.rb +116 -36
- data/lib/devise/hooks/activatable.rb +5 -4
- data/lib/devise/hooks/csrf_cleaner.rb +5 -1
- data/lib/devise/hooks/forgetable.rb +2 -0
- data/lib/devise/hooks/lockable.rb +6 -1
- data/lib/devise/hooks/proxy.rb +3 -1
- data/lib/devise/hooks/rememberable.rb +2 -0
- data/lib/devise/hooks/timeoutable.rb +15 -8
- data/lib/devise/hooks/trackable.rb +2 -0
- data/lib/devise/mailers/helpers.rb +7 -4
- data/lib/devise/mapping.rb +8 -2
- data/lib/devise/models/authenticatable.rb +76 -51
- data/lib/devise/models/confirmable.rb +129 -34
- data/lib/devise/models/database_authenticatable.rb +107 -30
- data/lib/devise/models/lockable.rb +19 -9
- data/lib/devise/models/omniauthable.rb +2 -0
- data/lib/devise/models/recoverable.rb +62 -26
- data/lib/devise/models/registerable.rb +4 -0
- data/lib/devise/models/rememberable.rb +58 -29
- data/lib/devise/models/timeoutable.rb +2 -6
- data/lib/devise/models/trackable.rb +20 -4
- data/lib/devise/models/validatable.rb +12 -5
- data/lib/devise/models.rb +3 -1
- data/lib/devise/modules.rb +2 -0
- data/lib/devise/omniauth/config.rb +2 -0
- data/lib/devise/omniauth/url_helpers.rb +14 -5
- data/lib/devise/omniauth.rb +2 -0
- data/lib/devise/orm/active_record.rb +5 -1
- data/lib/devise/orm/mongoid.rb +6 -2
- data/lib/devise/parameter_filter.rb +4 -0
- data/lib/devise/parameter_sanitizer.rb +139 -65
- data/lib/devise/rails/routes.rb +80 -61
- data/lib/devise/rails/warden_compat.rb +3 -10
- data/lib/devise/rails.rb +8 -17
- data/lib/devise/secret_key_finder.rb +27 -0
- data/lib/devise/strategies/authenticatable.rb +18 -7
- data/lib/devise/strategies/base.rb +2 -0
- data/lib/devise/strategies/database_authenticatable.rb +13 -5
- data/lib/devise/strategies/rememberable.rb +15 -3
- data/lib/devise/test/controller_helpers.rb +165 -0
- data/lib/devise/test/integration_helpers.rb +63 -0
- data/lib/devise/test_helpers.rb +7 -124
- data/lib/devise/time_inflector.rb +2 -0
- data/lib/devise/token_generator.rb +3 -41
- data/lib/devise/version.rb +3 -1
- data/lib/devise.rb +106 -79
- data/lib/generators/active_record/devise_generator.rb +44 -7
- data/lib/generators/active_record/templates/migration.rb +5 -3
- data/lib/generators/active_record/templates/migration_existing.rb +5 -3
- data/lib/generators/devise/controllers_generator.rb +46 -0
- data/lib/generators/devise/devise_generator.rb +4 -2
- data/lib/generators/devise/install_generator.rb +17 -0
- data/lib/generators/devise/orm_helpers.rb +10 -21
- data/lib/generators/devise/views_generator.rb +21 -11
- data/lib/generators/mongoid/devise_generator.rb +7 -5
- data/lib/generators/templates/README +2 -9
- data/lib/generators/templates/controllers/README +14 -0
- data/lib/generators/templates/controllers/confirmations_controller.rb +30 -0
- data/lib/generators/templates/controllers/omniauth_callbacks_controller.rb +30 -0
- data/lib/generators/templates/controllers/passwords_controller.rb +34 -0
- data/lib/generators/templates/controllers/registrations_controller.rb +62 -0
- data/lib/generators/templates/controllers/sessions_controller.rb +27 -0
- data/lib/generators/templates/controllers/unlocks_controller.rb +30 -0
- data/lib/generators/templates/devise.rb +69 -30
- data/lib/generators/templates/markerb/confirmation_instructions.markerb +1 -1
- data/lib/generators/templates/markerb/email_changed.markerb +7 -0
- data/lib/generators/templates/markerb/password_change.markerb +3 -0
- data/lib/generators/templates/markerb/reset_password_instructions.markerb +1 -1
- data/lib/generators/templates/markerb/unlock_instructions.markerb +1 -1
- data/lib/generators/templates/simple_form_for/confirmations/new.html.erb +5 -1
- data/lib/generators/templates/simple_form_for/passwords/edit.html.erb +10 -2
- data/lib/generators/templates/simple_form_for/passwords/new.html.erb +4 -1
- data/lib/generators/templates/simple_form_for/registrations/edit.html.erb +11 -3
- data/lib/generators/templates/simple_form_for/registrations/new.html.erb +11 -3
- data/lib/generators/templates/simple_form_for/sessions/new.html.erb +9 -4
- data/lib/generators/templates/simple_form_for/unlocks/new.html.erb +4 -1
- metadata +31 -259
- data/.gitignore +0 -11
- data/.travis.yml +0 -28
- data/.yardopts +0 -9
- data/CONTRIBUTING.md +0 -14
- data/Gemfile +0 -29
- data/Gemfile.lock +0 -160
- data/Rakefile +0 -35
- data/devise.gemspec +0 -27
- data/devise.png +0 -0
- data/gemfiles/Gemfile.rails-3.2-stable +0 -29
- data/gemfiles/Gemfile.rails-4.0-stable +0 -29
- data/gemfiles/Gemfile.rails-head +0 -29
- data/test/controllers/custom_strategy_test.rb +0 -62
- data/test/controllers/helpers_test.rb +0 -276
- data/test/controllers/internal_helpers_test.rb +0 -123
- data/test/controllers/passwords_controller_test.rb +0 -31
- data/test/controllers/sessions_controller_test.rb +0 -103
- data/test/controllers/url_helpers_test.rb +0 -59
- data/test/delegator_test.rb +0 -19
- data/test/devise_test.rb +0 -94
- data/test/failure_app_test.rb +0 -232
- data/test/generators/active_record_generator_test.rb +0 -103
- data/test/generators/devise_generator_test.rb +0 -39
- data/test/generators/install_generator_test.rb +0 -13
- data/test/generators/mongoid_generator_test.rb +0 -23
- data/test/generators/views_generator_test.rb +0 -96
- data/test/helpers/devise_helper_test.rb +0 -51
- data/test/integration/authenticatable_test.rb +0 -713
- data/test/integration/confirmable_test.rb +0 -284
- data/test/integration/database_authenticatable_test.rb +0 -84
- data/test/integration/http_authenticatable_test.rb +0 -105
- data/test/integration/lockable_test.rb +0 -239
- data/test/integration/omniauthable_test.rb +0 -133
- data/test/integration/recoverable_test.rb +0 -334
- data/test/integration/registerable_test.rb +0 -349
- data/test/integration/rememberable_test.rb +0 -167
- data/test/integration/timeoutable_test.rb +0 -183
- data/test/integration/trackable_test.rb +0 -92
- data/test/mailers/confirmation_instructions_test.rb +0 -115
- data/test/mailers/reset_password_instructions_test.rb +0 -96
- data/test/mailers/unlock_instructions_test.rb +0 -91
- data/test/mapping_test.rb +0 -127
- data/test/models/authenticatable_test.rb +0 -13
- data/test/models/confirmable_test.rb +0 -454
- data/test/models/database_authenticatable_test.rb +0 -249
- data/test/models/lockable_test.rb +0 -316
- data/test/models/omniauthable_test.rb +0 -7
- data/test/models/recoverable_test.rb +0 -184
- data/test/models/registerable_test.rb +0 -7
- data/test/models/rememberable_test.rb +0 -183
- data/test/models/serializable_test.rb +0 -49
- data/test/models/timeoutable_test.rb +0 -51
- data/test/models/trackable_test.rb +0 -13
- data/test/models/validatable_test.rb +0 -127
- data/test/models_test.rb +0 -144
- data/test/omniauth/config_test.rb +0 -57
- data/test/omniauth/url_helpers_test.rb +0 -54
- data/test/orm/active_record.rb +0 -10
- data/test/orm/mongoid.rb +0 -13
- data/test/parameter_sanitizer_test.rb +0 -81
- data/test/rails_app/Rakefile +0 -6
- data/test/rails_app/app/active_record/admin.rb +0 -6
- data/test/rails_app/app/active_record/shim.rb +0 -2
- data/test/rails_app/app/active_record/user.rb +0 -6
- data/test/rails_app/app/controllers/admins/sessions_controller.rb +0 -6
- data/test/rails_app/app/controllers/admins_controller.rb +0 -11
- data/test/rails_app/app/controllers/application_controller.rb +0 -9
- data/test/rails_app/app/controllers/home_controller.rb +0 -25
- data/test/rails_app/app/controllers/publisher/registrations_controller.rb +0 -2
- data/test/rails_app/app/controllers/publisher/sessions_controller.rb +0 -2
- data/test/rails_app/app/controllers/users/omniauth_callbacks_controller.rb +0 -14
- data/test/rails_app/app/controllers/users_controller.rb +0 -31
- data/test/rails_app/app/helpers/application_helper.rb +0 -3
- data/test/rails_app/app/mailers/users/mailer.rb +0 -12
- data/test/rails_app/app/mongoid/admin.rb +0 -29
- data/test/rails_app/app/mongoid/shim.rb +0 -23
- data/test/rails_app/app/mongoid/user.rb +0 -39
- data/test/rails_app/app/views/admins/index.html.erb +0 -1
- data/test/rails_app/app/views/admins/sessions/new.html.erb +0 -2
- data/test/rails_app/app/views/home/admin_dashboard.html.erb +0 -1
- data/test/rails_app/app/views/home/index.html.erb +0 -1
- data/test/rails_app/app/views/home/join.html.erb +0 -1
- data/test/rails_app/app/views/home/private.html.erb +0 -1
- data/test/rails_app/app/views/home/user_dashboard.html.erb +0 -1
- data/test/rails_app/app/views/layouts/application.html.erb +0 -24
- data/test/rails_app/app/views/users/edit_form.html.erb +0 -1
- data/test/rails_app/app/views/users/index.html.erb +0 -1
- data/test/rails_app/app/views/users/mailer/confirmation_instructions.erb +0 -1
- data/test/rails_app/app/views/users/sessions/new.html.erb +0 -1
- data/test/rails_app/bin/bundle +0 -3
- data/test/rails_app/bin/rails +0 -4
- data/test/rails_app/bin/rake +0 -4
- data/test/rails_app/config/application.rb +0 -40
- data/test/rails_app/config/boot.rb +0 -14
- data/test/rails_app/config/database.yml +0 -18
- data/test/rails_app/config/environment.rb +0 -5
- data/test/rails_app/config/environments/development.rb +0 -30
- data/test/rails_app/config/environments/production.rb +0 -80
- data/test/rails_app/config/environments/test.rb +0 -36
- data/test/rails_app/config/initializers/backtrace_silencers.rb +0 -7
- data/test/rails_app/config/initializers/devise.rb +0 -181
- data/test/rails_app/config/initializers/inflections.rb +0 -2
- data/test/rails_app/config/initializers/secret_token.rb +0 -8
- data/test/rails_app/config/initializers/session_store.rb +0 -1
- data/test/rails_app/config/routes.rb +0 -105
- data/test/rails_app/config.ru +0 -4
- data/test/rails_app/db/migrate/20100401102949_create_tables.rb +0 -71
- data/test/rails_app/db/schema.rb +0 -55
- data/test/rails_app/lib/shared_admin.rb +0 -17
- data/test/rails_app/lib/shared_user.rb +0 -29
- data/test/rails_app/public/404.html +0 -26
- data/test/rails_app/public/422.html +0 -26
- data/test/rails_app/public/500.html +0 -26
- data/test/rails_app/public/favicon.ico +0 -0
- data/test/routes_test.rb +0 -262
- data/test/support/action_controller/record_identifier.rb +0 -10
- data/test/support/assertions.rb +0 -40
- data/test/support/helpers.rb +0 -70
- data/test/support/integration.rb +0 -92
- data/test/support/locale/en.yml +0 -8
- data/test/support/mongoid.yml +0 -6
- data/test/support/webrat/integrations/rails.rb +0 -24
- data/test/test_helper.rb +0 -27
- data/test/test_helpers_test.rb +0 -173
- data/test/test_models.rb +0 -33
|
@@ -1,38 +1,23 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
module Devise
|
|
2
4
|
module Generators
|
|
3
5
|
module OrmHelpers
|
|
4
6
|
def model_contents
|
|
5
7
|
buffer = <<-CONTENT
|
|
6
8
|
# Include default devise modules. Others available are:
|
|
7
|
-
# :confirmable, :lockable, :timeoutable and :omniauthable
|
|
9
|
+
# :confirmable, :lockable, :timeoutable, :trackable and :omniauthable
|
|
8
10
|
devise :database_authenticatable, :registerable,
|
|
9
|
-
:recoverable, :rememberable, :
|
|
10
|
-
|
|
11
|
-
CONTENT
|
|
12
|
-
buffer += <<-CONTENT if needs_attr_accessible?
|
|
13
|
-
# Setup accessible (or protected) attributes for your model
|
|
14
|
-
attr_accessible :email, :password, :password_confirmation, :remember_me
|
|
11
|
+
:recoverable, :rememberable, :validatable
|
|
15
12
|
|
|
16
13
|
CONTENT
|
|
17
14
|
buffer
|
|
18
15
|
end
|
|
19
16
|
|
|
20
|
-
def needs_attr_accessible?
|
|
21
|
-
rails_3? && !strong_parameters_enabled?
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
def rails_3?
|
|
25
|
-
Rails::VERSION::MAJOR == 3
|
|
26
|
-
end
|
|
27
|
-
|
|
28
|
-
def strong_parameters_enabled?
|
|
29
|
-
defined?(ActionController::StrongParameters)
|
|
30
|
-
end
|
|
31
|
-
|
|
32
17
|
private
|
|
33
18
|
|
|
34
19
|
def model_exists?
|
|
35
|
-
File.
|
|
20
|
+
File.exist?(File.join(destination_root, model_path))
|
|
36
21
|
end
|
|
37
22
|
|
|
38
23
|
def migration_exists?(table_name)
|
|
@@ -40,7 +25,11 @@ CONTENT
|
|
|
40
25
|
end
|
|
41
26
|
|
|
42
27
|
def migration_path
|
|
43
|
-
|
|
28
|
+
if Rails.version >= '5.0.3'
|
|
29
|
+
db_migrate_path
|
|
30
|
+
else
|
|
31
|
+
@migration_path ||= File.join("db", "migrate")
|
|
32
|
+
end
|
|
44
33
|
end
|
|
45
34
|
|
|
46
35
|
def model_path
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
require 'rails/generators/base'
|
|
2
4
|
|
|
3
5
|
module Devise
|
|
@@ -21,13 +23,6 @@ module Devise
|
|
|
21
23
|
public_task :copy_views
|
|
22
24
|
end
|
|
23
25
|
|
|
24
|
-
# TODO: Add this to Rails itself
|
|
25
|
-
module ClassMethods
|
|
26
|
-
def hide!
|
|
27
|
-
Rails::Generators.hide_namespace self.namespace
|
|
28
|
-
end
|
|
29
|
-
end
|
|
30
|
-
|
|
31
26
|
def copy_views
|
|
32
27
|
if options[:views]
|
|
33
28
|
options[:views].each do |directory|
|
|
@@ -47,7 +42,7 @@ module Devise
|
|
|
47
42
|
def view_directory(name, _target_path = nil)
|
|
48
43
|
directory name.to_s, _target_path || "#{target_path}/#{name}" do |content|
|
|
49
44
|
if scope
|
|
50
|
-
content.gsub "devise/shared/links", "#{
|
|
45
|
+
content.gsub "devise/shared/links", "#{plural_scope}/shared/links"
|
|
51
46
|
else
|
|
52
47
|
content
|
|
53
48
|
end
|
|
@@ -55,7 +50,11 @@ module Devise
|
|
|
55
50
|
end
|
|
56
51
|
|
|
57
52
|
def target_path
|
|
58
|
-
@target_path ||= "app/views/#{
|
|
53
|
+
@target_path ||= "app/views/#{plural_scope || :devise}"
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
def plural_scope
|
|
57
|
+
@plural_scope ||= scope.presence && scope.underscore.pluralize
|
|
59
58
|
end
|
|
60
59
|
end
|
|
61
60
|
|
|
@@ -83,6 +82,13 @@ module Devise
|
|
|
83
82
|
source_root File.expand_path("../../templates/simple_form_for", __FILE__)
|
|
84
83
|
desc "Copies simple form enabled views to your application."
|
|
85
84
|
hide!
|
|
85
|
+
|
|
86
|
+
def copy_views
|
|
87
|
+
if options[:views]
|
|
88
|
+
options[:views].delete('mailer')
|
|
89
|
+
end
|
|
90
|
+
super
|
|
91
|
+
end
|
|
86
92
|
end
|
|
87
93
|
|
|
88
94
|
class ErbGenerator < Rails::Generators::Base #:nodoc:
|
|
@@ -111,7 +117,7 @@ module Devise
|
|
|
111
117
|
end
|
|
112
118
|
|
|
113
119
|
def target_path
|
|
114
|
-
"app/views/#{
|
|
120
|
+
"app/views/#{plural_scope || :devise}/mailer"
|
|
115
121
|
end
|
|
116
122
|
end
|
|
117
123
|
|
|
@@ -128,7 +134,11 @@ module Devise
|
|
|
128
134
|
default: defined?(SimpleForm) ? "simple_form_for" : "form_for"
|
|
129
135
|
|
|
130
136
|
hook_for :markerb, desc: "Generate markerb instead of erb mail views",
|
|
131
|
-
default: defined?(Markerb)
|
|
137
|
+
default: defined?(Markerb),
|
|
138
|
+
type: :boolean
|
|
139
|
+
|
|
140
|
+
hook_for :erb, desc: "Generate erb mail views",
|
|
141
|
+
default: !defined?(Markerb),
|
|
132
142
|
type: :boolean
|
|
133
143
|
end
|
|
134
144
|
end
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
require 'rails/generators/named_base'
|
|
2
4
|
require 'generators/devise/orm_helpers'
|
|
3
5
|
|
|
@@ -32,11 +34,11 @@ module Mongoid
|
|
|
32
34
|
field :remember_created_at, type: Time
|
|
33
35
|
|
|
34
36
|
## Trackable
|
|
35
|
-
field :sign_in_count, type: Integer, default: 0
|
|
36
|
-
field :current_sign_in_at, type: Time
|
|
37
|
-
field :last_sign_in_at, type: Time
|
|
38
|
-
field :current_sign_in_ip, type: String
|
|
39
|
-
field :last_sign_in_ip, type: String
|
|
37
|
+
# field :sign_in_count, type: Integer, default: 0
|
|
38
|
+
# field :current_sign_in_at, type: Time
|
|
39
|
+
# field :last_sign_in_at, type: Time
|
|
40
|
+
# field :current_sign_in_ip, type: String
|
|
41
|
+
# field :last_sign_in_ip, type: String
|
|
40
42
|
|
|
41
43
|
## Confirmable
|
|
42
44
|
# field :confirmation_token, type: String
|
|
@@ -6,7 +6,7 @@ Some setup you must do manually if you haven't yet:
|
|
|
6
6
|
is an example of default_url_options appropriate for a development environment
|
|
7
7
|
in config/environments/development.rb:
|
|
8
8
|
|
|
9
|
-
config.action_mailer.default_url_options = { host: 'localhost:3000
|
|
9
|
+
config.action_mailer.default_url_options = { host: 'localhost', port: 3000 }
|
|
10
10
|
|
|
11
11
|
In production, :host should be set to the actual host of your application.
|
|
12
12
|
|
|
@@ -21,14 +21,7 @@ Some setup you must do manually if you haven't yet:
|
|
|
21
21
|
<p class="notice"><%= notice %></p>
|
|
22
22
|
<p class="alert"><%= alert %></p>
|
|
23
23
|
|
|
24
|
-
4.
|
|
25
|
-
|
|
26
|
-
config.assets.initialize_on_precompile = false
|
|
27
|
-
|
|
28
|
-
On config/application.rb forcing your application to not access the DB
|
|
29
|
-
or load models when precompiling your assets.
|
|
30
|
-
|
|
31
|
-
5. You can copy Devise views (for customization) to your app by running:
|
|
24
|
+
4. You can copy Devise views (for customization) to your app by running:
|
|
32
25
|
|
|
33
26
|
rails g devise:views
|
|
34
27
|
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
===============================================================================
|
|
2
|
+
|
|
3
|
+
Some setup you must do manually if you haven't yet:
|
|
4
|
+
|
|
5
|
+
Ensure you have overridden routes for generated controllers in your routes.rb.
|
|
6
|
+
For example:
|
|
7
|
+
|
|
8
|
+
Rails.application.routes.draw do
|
|
9
|
+
devise_for :users, controllers: {
|
|
10
|
+
sessions: 'users/sessions'
|
|
11
|
+
}
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
===============================================================================
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
class <%= @scope_prefix %>ConfirmationsController < Devise::ConfirmationsController
|
|
4
|
+
# GET /resource/confirmation/new
|
|
5
|
+
# def new
|
|
6
|
+
# super
|
|
7
|
+
# end
|
|
8
|
+
|
|
9
|
+
# POST /resource/confirmation
|
|
10
|
+
# def create
|
|
11
|
+
# super
|
|
12
|
+
# end
|
|
13
|
+
|
|
14
|
+
# GET /resource/confirmation?confirmation_token=abcdef
|
|
15
|
+
# def show
|
|
16
|
+
# super
|
|
17
|
+
# end
|
|
18
|
+
|
|
19
|
+
# protected
|
|
20
|
+
|
|
21
|
+
# The path used after resending confirmation instructions.
|
|
22
|
+
# def after_resending_confirmation_instructions_path_for(resource_name)
|
|
23
|
+
# super(resource_name)
|
|
24
|
+
# end
|
|
25
|
+
|
|
26
|
+
# The path used after confirmation.
|
|
27
|
+
# def after_confirmation_path_for(resource_name, resource)
|
|
28
|
+
# super(resource_name, resource)
|
|
29
|
+
# end
|
|
30
|
+
end
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
class <%= @scope_prefix %>OmniauthCallbacksController < Devise::OmniauthCallbacksController
|
|
4
|
+
# You should configure your model like this:
|
|
5
|
+
# devise :omniauthable, omniauth_providers: [:twitter]
|
|
6
|
+
|
|
7
|
+
# You should also create an action method in this controller like this:
|
|
8
|
+
# def twitter
|
|
9
|
+
# end
|
|
10
|
+
|
|
11
|
+
# More info at:
|
|
12
|
+
# https://github.com/plataformatec/devise#omniauth
|
|
13
|
+
|
|
14
|
+
# GET|POST /resource/auth/twitter
|
|
15
|
+
# def passthru
|
|
16
|
+
# super
|
|
17
|
+
# end
|
|
18
|
+
|
|
19
|
+
# GET|POST /users/auth/twitter/callback
|
|
20
|
+
# def failure
|
|
21
|
+
# super
|
|
22
|
+
# end
|
|
23
|
+
|
|
24
|
+
# protected
|
|
25
|
+
|
|
26
|
+
# The path used when OmniAuth fails
|
|
27
|
+
# def after_omniauth_failure_path_for(scope)
|
|
28
|
+
# super(scope)
|
|
29
|
+
# end
|
|
30
|
+
end
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
class <%= @scope_prefix %>PasswordsController < Devise::PasswordsController
|
|
4
|
+
# GET /resource/password/new
|
|
5
|
+
# def new
|
|
6
|
+
# super
|
|
7
|
+
# end
|
|
8
|
+
|
|
9
|
+
# POST /resource/password
|
|
10
|
+
# def create
|
|
11
|
+
# super
|
|
12
|
+
# end
|
|
13
|
+
|
|
14
|
+
# GET /resource/password/edit?reset_password_token=abcdef
|
|
15
|
+
# def edit
|
|
16
|
+
# super
|
|
17
|
+
# end
|
|
18
|
+
|
|
19
|
+
# PUT /resource/password
|
|
20
|
+
# def update
|
|
21
|
+
# super
|
|
22
|
+
# end
|
|
23
|
+
|
|
24
|
+
# protected
|
|
25
|
+
|
|
26
|
+
# def after_resetting_password_path_for(resource)
|
|
27
|
+
# super(resource)
|
|
28
|
+
# end
|
|
29
|
+
|
|
30
|
+
# The path used after sending reset password instructions
|
|
31
|
+
# def after_sending_reset_password_instructions_path_for(resource_name)
|
|
32
|
+
# super(resource_name)
|
|
33
|
+
# end
|
|
34
|
+
end
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
class <%= @scope_prefix %>RegistrationsController < Devise::RegistrationsController
|
|
4
|
+
# before_action :configure_sign_up_params, only: [:create]
|
|
5
|
+
# before_action :configure_account_update_params, only: [:update]
|
|
6
|
+
|
|
7
|
+
# GET /resource/sign_up
|
|
8
|
+
# def new
|
|
9
|
+
# super
|
|
10
|
+
# end
|
|
11
|
+
|
|
12
|
+
# POST /resource
|
|
13
|
+
# def create
|
|
14
|
+
# super
|
|
15
|
+
# end
|
|
16
|
+
|
|
17
|
+
# GET /resource/edit
|
|
18
|
+
# def edit
|
|
19
|
+
# super
|
|
20
|
+
# end
|
|
21
|
+
|
|
22
|
+
# PUT /resource
|
|
23
|
+
# def update
|
|
24
|
+
# super
|
|
25
|
+
# end
|
|
26
|
+
|
|
27
|
+
# DELETE /resource
|
|
28
|
+
# def destroy
|
|
29
|
+
# super
|
|
30
|
+
# end
|
|
31
|
+
|
|
32
|
+
# GET /resource/cancel
|
|
33
|
+
# Forces the session data which is usually expired after sign
|
|
34
|
+
# in to be expired now. This is useful if the user wants to
|
|
35
|
+
# cancel oauth signing in/up in the middle of the process,
|
|
36
|
+
# removing all OAuth session data.
|
|
37
|
+
# def cancel
|
|
38
|
+
# super
|
|
39
|
+
# end
|
|
40
|
+
|
|
41
|
+
# protected
|
|
42
|
+
|
|
43
|
+
# If you have extra params to permit, append them to the sanitizer.
|
|
44
|
+
# def configure_sign_up_params
|
|
45
|
+
# devise_parameter_sanitizer.permit(:sign_up, keys: [:attribute])
|
|
46
|
+
# end
|
|
47
|
+
|
|
48
|
+
# If you have extra params to permit, append them to the sanitizer.
|
|
49
|
+
# def configure_account_update_params
|
|
50
|
+
# devise_parameter_sanitizer.permit(:account_update, keys: [:attribute])
|
|
51
|
+
# end
|
|
52
|
+
|
|
53
|
+
# The path used after sign up.
|
|
54
|
+
# def after_sign_up_path_for(resource)
|
|
55
|
+
# super(resource)
|
|
56
|
+
# end
|
|
57
|
+
|
|
58
|
+
# The path used after sign up for inactive accounts.
|
|
59
|
+
# def after_inactive_sign_up_path_for(resource)
|
|
60
|
+
# super(resource)
|
|
61
|
+
# end
|
|
62
|
+
end
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
class <%= @scope_prefix %>SessionsController < Devise::SessionsController
|
|
4
|
+
# before_action :configure_sign_in_params, only: [:create]
|
|
5
|
+
|
|
6
|
+
# GET /resource/sign_in
|
|
7
|
+
# def new
|
|
8
|
+
# super
|
|
9
|
+
# end
|
|
10
|
+
|
|
11
|
+
# POST /resource/sign_in
|
|
12
|
+
# def create
|
|
13
|
+
# super
|
|
14
|
+
# end
|
|
15
|
+
|
|
16
|
+
# DELETE /resource/sign_out
|
|
17
|
+
# def destroy
|
|
18
|
+
# super
|
|
19
|
+
# end
|
|
20
|
+
|
|
21
|
+
# protected
|
|
22
|
+
|
|
23
|
+
# If you have extra params to permit, append them to the sanitizer.
|
|
24
|
+
# def configure_sign_in_params
|
|
25
|
+
# devise_parameter_sanitizer.permit(:sign_in, keys: [:attribute])
|
|
26
|
+
# end
|
|
27
|
+
end
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
class <%= @scope_prefix %>UnlocksController < Devise::UnlocksController
|
|
4
|
+
# GET /resource/unlock/new
|
|
5
|
+
# def new
|
|
6
|
+
# super
|
|
7
|
+
# end
|
|
8
|
+
|
|
9
|
+
# POST /resource/unlock
|
|
10
|
+
# def create
|
|
11
|
+
# super
|
|
12
|
+
# end
|
|
13
|
+
|
|
14
|
+
# GET /resource/unlock?unlock_token=abcdef
|
|
15
|
+
# def show
|
|
16
|
+
# super
|
|
17
|
+
# end
|
|
18
|
+
|
|
19
|
+
# protected
|
|
20
|
+
|
|
21
|
+
# The path used after sending unlock password instructions
|
|
22
|
+
# def after_sending_unlock_instructions_path_for(resource)
|
|
23
|
+
# super(resource)
|
|
24
|
+
# end
|
|
25
|
+
|
|
26
|
+
# The path used after unlocking the resource
|
|
27
|
+
# def after_unlock_path_for(resource)
|
|
28
|
+
# super(resource)
|
|
29
|
+
# end
|
|
30
|
+
end
|
|
@@ -1,14 +1,18 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
# Use this hook to configure devise mailer, warden hooks and so forth.
|
|
2
4
|
# Many of these configuration options can be set straight in your model.
|
|
3
5
|
Devise.setup do |config|
|
|
4
6
|
# The secret key used by Devise. Devise uses this key to generate
|
|
5
7
|
# random tokens. Changing this key will render invalid all existing
|
|
6
8
|
# confirmation, reset password and unlock tokens in the database.
|
|
7
|
-
|
|
9
|
+
# Devise will use the `secret_key_base` as its `secret_key`
|
|
10
|
+
# by default. You can change it below and use your own secret key.
|
|
8
11
|
# config.secret_key = '<%= SecureRandom.hex(64) %>'
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
+
|
|
13
|
+
# ==> Controller configuration
|
|
14
|
+
# Configure the parent class to the devise controllers.
|
|
15
|
+
# config.parent_controller = 'DeviseController'
|
|
12
16
|
|
|
13
17
|
# ==> Mailer Configuration
|
|
14
18
|
# Configure the e-mail address which will be shown in Devise::Mailer,
|
|
@@ -19,6 +23,9 @@ Devise.setup do |config|
|
|
|
19
23
|
# Configure the class responsible to send e-mails.
|
|
20
24
|
# config.mailer = 'Devise::Mailer'
|
|
21
25
|
|
|
26
|
+
# Configure the parent class responsible to send e-mails.
|
|
27
|
+
# config.parent_mailer = 'ActionMailer::Base'
|
|
28
|
+
|
|
22
29
|
# ==> ORM configuration
|
|
23
30
|
# Load and configure the ORM. Supports :active_record (default) and
|
|
24
31
|
# :mongoid (bson_ext recommended) by default. Other ORMs may be
|
|
@@ -33,7 +40,7 @@ Devise.setup do |config|
|
|
|
33
40
|
# session. If you need permissions, you should implement that in a before filter.
|
|
34
41
|
# You can also supply a hash where the value is a boolean determining whether
|
|
35
42
|
# or not authentication should be aborted when the value is not present.
|
|
36
|
-
# config.authentication_keys = [
|
|
43
|
+
# config.authentication_keys = [:email]
|
|
37
44
|
|
|
38
45
|
# Configure parameters from the request object used for authentication. Each entry
|
|
39
46
|
# given should be a request method and it will automatically be passed to the
|
|
@@ -45,12 +52,12 @@ Devise.setup do |config|
|
|
|
45
52
|
# Configure which authentication keys should be case-insensitive.
|
|
46
53
|
# These keys will be downcased upon creating or modifying a user and when used
|
|
47
54
|
# to authenticate or find a user. Default is :email.
|
|
48
|
-
config.case_insensitive_keys = [
|
|
55
|
+
config.case_insensitive_keys = [:email]
|
|
49
56
|
|
|
50
57
|
# Configure which authentication keys should have whitespace stripped.
|
|
51
58
|
# These keys will have whitespace before and after removed upon creating or
|
|
52
59
|
# modifying a user and when used to authenticate or find a user. Default is :email.
|
|
53
|
-
config.strip_whitespace_keys = [
|
|
60
|
+
config.strip_whitespace_keys = [:email]
|
|
54
61
|
|
|
55
62
|
# Tell if authentication through request.params is enabled. True by default.
|
|
56
63
|
# It can be set to an array that will enable params authentication only for the
|
|
@@ -65,7 +72,7 @@ Devise.setup do |config|
|
|
|
65
72
|
# :database = Support basic authentication with authentication key + password
|
|
66
73
|
# config.http_authenticatable = false
|
|
67
74
|
|
|
68
|
-
# If
|
|
75
|
+
# If 401 status code should be returned for AJAX requests. True by default.
|
|
69
76
|
# config.http_authenticatable_on_xhr = true
|
|
70
77
|
|
|
71
78
|
# The realm used in Http Basic Authentication. 'Application' by default.
|
|
@@ -89,26 +96,41 @@ Devise.setup do |config|
|
|
|
89
96
|
# from the server. You can disable this option at your own risk.
|
|
90
97
|
# config.clean_up_csrf_token_on_authentication = true
|
|
91
98
|
|
|
99
|
+
# When false, Devise will not attempt to reload routes on eager load.
|
|
100
|
+
# This can reduce the time taken to boot the app but if your application
|
|
101
|
+
# requires the Devise mappings to be loaded during boot time the application
|
|
102
|
+
# won't boot properly.
|
|
103
|
+
# config.reload_routes = true
|
|
104
|
+
|
|
92
105
|
# ==> Configuration for :database_authenticatable
|
|
93
|
-
# For bcrypt, this is the cost for hashing the password and defaults to
|
|
94
|
-
# using other
|
|
106
|
+
# For bcrypt, this is the cost for hashing the password and defaults to 11. If
|
|
107
|
+
# using other algorithms, it sets how many times you want the password to be hashed.
|
|
95
108
|
#
|
|
96
109
|
# Limiting the stretches to just one in testing will increase the performance of
|
|
97
110
|
# your test suite dramatically. However, it is STRONGLY RECOMMENDED to not use
|
|
98
111
|
# a value less than 10 in other environments. Note that, for bcrypt (the default
|
|
99
|
-
#
|
|
112
|
+
# algorithm), the cost increases exponentially with the number of stretches (e.g.
|
|
100
113
|
# a value of 20 is already extremely slow: approx. 60 seconds for 1 calculation).
|
|
101
|
-
config.stretches = Rails.env.test? ? 1 :
|
|
114
|
+
config.stretches = Rails.env.test? ? 1 : 11
|
|
102
115
|
|
|
103
|
-
#
|
|
116
|
+
# Set up a pepper to generate the hashed password.
|
|
104
117
|
# config.pepper = '<%= SecureRandom.hex(64) %>'
|
|
105
118
|
|
|
119
|
+
# Send a notification to the original email when the user's email is changed.
|
|
120
|
+
# config.send_email_changed_notification = false
|
|
121
|
+
|
|
122
|
+
# Send a notification email when the user's password is changed.
|
|
123
|
+
# config.send_password_change_notification = false
|
|
124
|
+
|
|
106
125
|
# ==> Configuration for :confirmable
|
|
107
126
|
# A period that the user is allowed to access the website even without
|
|
108
127
|
# confirming their account. For instance, if set to 2.days, the user will be
|
|
109
128
|
# able to access the website for two days without confirming their account,
|
|
110
|
-
# access will be blocked just in the third day.
|
|
111
|
-
# the user
|
|
129
|
+
# access will be blocked just in the third day.
|
|
130
|
+
# You can also set it to nil, which will allow the user to access the website
|
|
131
|
+
# without confirming their account.
|
|
132
|
+
# Default is 0.days, meaning the user cannot access the website without
|
|
133
|
+
# confirming their account.
|
|
112
134
|
# config.allow_unconfirmed_access_for = 2.days
|
|
113
135
|
|
|
114
136
|
# A period that the user is allowed to confirm their account before their
|
|
@@ -126,12 +148,15 @@ Devise.setup do |config|
|
|
|
126
148
|
config.reconfirmable = true
|
|
127
149
|
|
|
128
150
|
# Defines which key will be used when confirming an account
|
|
129
|
-
# config.confirmation_keys = [
|
|
151
|
+
# config.confirmation_keys = [:email]
|
|
130
152
|
|
|
131
153
|
# ==> Configuration for :rememberable
|
|
132
154
|
# The time the user will be remembered without asking for credentials again.
|
|
133
155
|
# config.remember_for = 2.weeks
|
|
134
156
|
|
|
157
|
+
# Invalidates all the remember me tokens when the user signs out.
|
|
158
|
+
config.expire_all_remember_me_on_sign_out = true
|
|
159
|
+
|
|
135
160
|
# If true, extends the user's remember period when remembered via cookie.
|
|
136
161
|
# config.extend_remember_period = false
|
|
137
162
|
|
|
@@ -141,21 +166,18 @@ Devise.setup do |config|
|
|
|
141
166
|
|
|
142
167
|
# ==> Configuration for :validatable
|
|
143
168
|
# Range for password length.
|
|
144
|
-
config.password_length =
|
|
169
|
+
config.password_length = 6..128
|
|
145
170
|
|
|
146
171
|
# Email regex used to validate email formats. It simply asserts that
|
|
147
172
|
# one (and only one) @ exists in the given string. This is mainly
|
|
148
173
|
# to give user feedback and not to assert the e-mail validity.
|
|
149
|
-
|
|
174
|
+
config.email_regexp = /\A[^@\s]+@[^@\s]+\z/
|
|
150
175
|
|
|
151
176
|
# ==> Configuration for :timeoutable
|
|
152
177
|
# The time you want to timeout the user session without activity. After this
|
|
153
178
|
# time the user will be asked for credentials again. Default is 30 minutes.
|
|
154
179
|
# config.timeout_in = 30.minutes
|
|
155
180
|
|
|
156
|
-
# If true, expires auth token on session timeout.
|
|
157
|
-
# config.expire_auth_token_on_timeout = false
|
|
158
|
-
|
|
159
181
|
# ==> Configuration for :lockable
|
|
160
182
|
# Defines which strategy will be used to lock an account.
|
|
161
183
|
# :failed_attempts = Locks an account after a number of failed attempts to sign in.
|
|
@@ -163,7 +185,7 @@ Devise.setup do |config|
|
|
|
163
185
|
# config.lock_strategy = :failed_attempts
|
|
164
186
|
|
|
165
187
|
# Defines which key will be used when locking and unlocking an account
|
|
166
|
-
# config.unlock_keys = [
|
|
188
|
+
# config.unlock_keys = [:email]
|
|
167
189
|
|
|
168
190
|
# Defines which strategy will be used to unlock an account.
|
|
169
191
|
# :email = Sends an unlock link to the user email
|
|
@@ -180,24 +202,28 @@ Devise.setup do |config|
|
|
|
180
202
|
# config.unlock_in = 1.hour
|
|
181
203
|
|
|
182
204
|
# Warn on the last attempt before the account is locked.
|
|
183
|
-
# config.last_attempt_warning =
|
|
205
|
+
# config.last_attempt_warning = true
|
|
184
206
|
|
|
185
207
|
# ==> Configuration for :recoverable
|
|
186
208
|
#
|
|
187
209
|
# Defines which key will be used when recovering the password for an account
|
|
188
|
-
# config.reset_password_keys = [
|
|
210
|
+
# config.reset_password_keys = [:email]
|
|
189
211
|
|
|
190
212
|
# Time interval you can reset your password with a reset password key.
|
|
191
213
|
# Don't put a too small interval or your users won't have the time to
|
|
192
214
|
# change their passwords.
|
|
193
215
|
config.reset_password_within = 6.hours
|
|
194
216
|
|
|
217
|
+
# When set to false, does not sign a user in automatically after their password is
|
|
218
|
+
# reset. Defaults to true, so a user is signed in automatically after a reset.
|
|
219
|
+
# config.sign_in_after_reset_password = true
|
|
220
|
+
|
|
195
221
|
# ==> Configuration for :encryptable
|
|
196
|
-
# Allow you to use another encryption algorithm besides bcrypt (default).
|
|
197
|
-
# :sha1, :sha512 or
|
|
198
|
-
# :authlogic_sha512 (then you should set stretches above to 20
|
|
199
|
-
# and :restful_authentication_sha1 (then you should set
|
|
200
|
-
# REST_AUTH_SITE_KEY to pepper).
|
|
222
|
+
# Allow you to use another hashing or encryption algorithm besides bcrypt (default).
|
|
223
|
+
# You can use :sha1, :sha512 or algorithms from others authentication tools as
|
|
224
|
+
# :clearance_sha1, :authlogic_sha512 (then you should set stretches above to 20
|
|
225
|
+
# for default behavior) and :restful_authentication_sha1 (then you should set
|
|
226
|
+
# stretches to 10, and copy REST_AUTH_SITE_KEY to pepper).
|
|
201
227
|
#
|
|
202
228
|
# Require the `devise-encryptable` gem when using anything other than bcrypt
|
|
203
229
|
# config.encryptor = :sha512
|
|
@@ -254,7 +280,20 @@ Devise.setup do |config|
|
|
|
254
280
|
# The router that invoked `devise_for`, in the example above, would be:
|
|
255
281
|
# config.router_name = :my_engine
|
|
256
282
|
#
|
|
257
|
-
# When using
|
|
283
|
+
# When using OmniAuth, Devise cannot automatically set OmniAuth path,
|
|
258
284
|
# so you need to do it manually. For the users scope, it would be:
|
|
259
285
|
# config.omniauth_path_prefix = '/my_engine/users/auth'
|
|
286
|
+
|
|
287
|
+
# ==> Turbolinks configuration
|
|
288
|
+
# If your app is using Turbolinks, Turbolinks::Controller needs to be included to make redirection work correctly:
|
|
289
|
+
#
|
|
290
|
+
# ActiveSupport.on_load(:devise_failure_app) do
|
|
291
|
+
# include Turbolinks::Controller
|
|
292
|
+
# end
|
|
293
|
+
|
|
294
|
+
# ==> Configuration for :registerable
|
|
295
|
+
|
|
296
|
+
# When set to false, does not sign a user in automatically after their password is
|
|
297
|
+
# changed. Defaults to true, so a user is signed in automatically after changing a password.
|
|
298
|
+
# config.sign_in_after_change_password = true
|
|
260
299
|
end
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Hello <%= @email %>!
|
|
2
|
+
|
|
3
|
+
<% if @resource.try(:unconfirmed_email?) %>
|
|
4
|
+
We're contacting you to notify you that your email is being changed to <%= @resource.unconfirmed_email %>.
|
|
5
|
+
<% else %>
|
|
6
|
+
We're contacting you to notify you that your email has been changed to <%= @resource.email %>.
|
|
7
|
+
<% end %>
|
|
@@ -2,7 +2,7 @@ Hello <%= @resource.email %>!
|
|
|
2
2
|
|
|
3
3
|
Someone has requested a link to change your password, and you can do this through the link below.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
[Change my password](<%= edit_password_url(@resource, reset_password_token: @token) %>)
|
|
6
6
|
|
|
7
7
|
If you didn't request this, please ignore this email.
|
|
8
8
|
Your password won't change until you access the link above and create a new one.
|
|
@@ -4,4 +4,4 @@ Your account has been locked due to an excessive number of unsuccessful sign in
|
|
|
4
4
|
|
|
5
5
|
Click the link below to unlock your account:
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
[Unlock my account](<%= unlock_url(@resource, unlock_token: @token) %>)
|