revise_auth 0.7.0 → 0.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 +4 -4
- data/app/controllers/revise_auth/registrations_controller.rb +1 -4
- data/app/controllers/revise_auth/sessions_controller.rb +4 -6
- data/app/controllers/revise_auth_controller.rb +0 -5
- data/config/i18n-tasks.yml +3 -2
- data/config/locales/cs.yml +1 -0
- data/config/locales/de.yml +1 -0
- data/config/locales/el.yml +1 -0
- data/config/locales/en.yml +1 -0
- data/config/locales/es.yml +1 -0
- data/config/locales/fr.yml +1 -0
- data/config/locales/nl.yml +1 -0
- data/config/locales/pt.yml +1 -0
- data/config/locales/tr.yml +1 -0
- data/config/locales/zh-TW.yml +1 -0
- data/lib/revise_auth/authentication.rb +17 -1
- data/lib/revise_auth/version.rb +1 -1
- data/lib/revise_auth.rb +1 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af1f59c2cc31af3c629baf760d48610da836dd5d2b4c7221742cd12122cceb49
|
4
|
+
data.tar.gz: 67f9631b83dc0034a0394779c052614617f8b038be6027be59a85de7c280e3fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa482292b597afabdb54d18b49045375f7c62f017826d222eac85d8cc7d8e0b8cb7a42eda3c383a512da00641b6638d49f84bf3f127d3f2e1e426e0700f3e53d
|
7
|
+
data.tar.gz: f942b60c9f169890bf4553526f32c8b6a5add8cbfbc5308d4f2bb12947bb615a4e7a0d09440e9963634fb3cda6322ab24ff5d9b382c6f4c21573f615e6187c92
|
@@ -1,5 +1,6 @@
|
|
1
1
|
class ReviseAuth::RegistrationsController < ReviseAuthController
|
2
2
|
before_action :authenticate_user!, except: [:new, :create]
|
3
|
+
before_action :require_unauthenticated, only: [:new, :create]
|
3
4
|
|
4
5
|
def new
|
5
6
|
@user = User.new
|
@@ -41,8 +42,4 @@ class ReviseAuth::RegistrationsController < ReviseAuthController
|
|
41
42
|
def profile_params
|
42
43
|
params.require(:user).permit(ReviseAuth.update_params)
|
43
44
|
end
|
44
|
-
|
45
|
-
def resolve_after_register_path
|
46
|
-
try(:after_register_path) || return_to_location || root_path
|
47
|
-
end
|
48
45
|
end
|
@@ -1,4 +1,8 @@
|
|
1
1
|
class ReviseAuth::SessionsController < ReviseAuthController
|
2
|
+
before_action :require_unauthenticated, only: [:new, :create]
|
3
|
+
|
4
|
+
rate_limit(**ReviseAuth.login_rate_limit) if respond_to?(:rate_limit) && ReviseAuth.login_rate_limit.present?
|
5
|
+
|
2
6
|
def new
|
3
7
|
end
|
4
8
|
|
@@ -16,10 +20,4 @@ class ReviseAuth::SessionsController < ReviseAuthController
|
|
16
20
|
logout
|
17
21
|
redirect_to root_path
|
18
22
|
end
|
19
|
-
|
20
|
-
private
|
21
|
-
|
22
|
-
def resolve_after_login_path
|
23
|
-
try(:after_login_path) || return_to_location || root_path
|
24
|
-
end
|
25
23
|
end
|
data/config/i18n-tasks.yml
CHANGED
data/config/locales/cs.yml
CHANGED
data/config/locales/de.yml
CHANGED
data/config/locales/el.yml
CHANGED
data/config/locales/en.yml
CHANGED
data/config/locales/es.yml
CHANGED
data/config/locales/fr.yml
CHANGED
data/config/locales/nl.yml
CHANGED
data/config/locales/pt.yml
CHANGED
data/config/locales/tr.yml
CHANGED
data/config/locales/zh-TW.yml
CHANGED
@@ -25,6 +25,10 @@ module ReviseAuth
|
|
25
25
|
redirect_to_login_with_stashed_location unless user_signed_in?
|
26
26
|
end
|
27
27
|
|
28
|
+
def require_unauthenticated
|
29
|
+
redirect_to resolve_after_login_path, alert: t("revise_auth.shared.already_authenticated") if user_signed_in?
|
30
|
+
end
|
31
|
+
|
28
32
|
# Authenticates the current user
|
29
33
|
# - from session cookie
|
30
34
|
# - (future) from Authorization header
|
@@ -61,9 +65,21 @@ module ReviseAuth
|
|
61
65
|
session[:user_return_to] = path
|
62
66
|
end
|
63
67
|
|
68
|
+
def return_to_location
|
69
|
+
session.delete(:user_return_to)
|
70
|
+
end
|
71
|
+
|
64
72
|
def redirect_to_login_with_stashed_location
|
65
73
|
stash_return_to_location(request.fullpath) if request.get?
|
66
|
-
redirect_to login_path, alert:
|
74
|
+
redirect_to login_path, alert: t("revise_auth.sign_up_or_login")
|
75
|
+
end
|
76
|
+
|
77
|
+
def resolve_after_register_path
|
78
|
+
try(:after_register_path) || return_to_location || root_path
|
79
|
+
end
|
80
|
+
|
81
|
+
def resolve_after_login_path
|
82
|
+
try(:after_login_path) || return_to_location || root_path
|
67
83
|
end
|
68
84
|
|
69
85
|
# Return true if it's a revise_auth_controller. false to all controllers unless
|
data/lib/revise_auth/version.rb
CHANGED
data/lib/revise_auth.rb
CHANGED
@@ -17,4 +17,5 @@ module ReviseAuth
|
|
17
17
|
config_accessor :sign_up_params, default: [:email, :password, :password_confirmation]
|
18
18
|
config_accessor :update_params, default: []
|
19
19
|
config_accessor :minimum_password_length, default: 12
|
20
|
+
config_accessor :login_rate_limit, default: {to: 10, within: 3.minutes, only: :create}
|
20
21
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: revise_auth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Oliver
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-06-
|
11
|
+
date: 2024-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -109,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
111
|
requirements: []
|
112
|
-
rubygems_version: 3.5.
|
112
|
+
rubygems_version: 3.5.14
|
113
113
|
signing_key:
|
114
114
|
specification_version: 4
|
115
115
|
summary: Simple authentication for Ruby on Rails apps
|