File tree 5 files changed +22
-6
lines changed
5 files changed +22
-6
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ public function pluginDetails()
32
32
public function register ()
33
33
{
34
34
$ alias = AliasLoader::getInstance ();
35
- $ alias ->alias ('Auth ' , ' RainLab\User\Facades\Auth ' );
35
+ $ alias ->alias ('Auth ' , \ RainLab \User \Facades \Auth::class );
36
36
37
37
App::singleton ('user.auth ' , function () {
38
38
return \RainLab \User \Classes \AuthManager::instance ();
Original file line number Diff line number Diff line change @@ -66,7 +66,10 @@ public function defineProperties()
66
66
67
67
public function getRedirectOptions ()
68
68
{
69
- return ['' =>'- refresh page - ' , '0 ' => '- no redirect - ' ] + Page::sortBy ('baseFileName ' )->lists ('baseFileName ' , 'baseFileName ' );
69
+ return [
70
+ '' => '- refresh page - ' ,
71
+ '0 ' => '- no redirect - '
72
+ ] + Page::sortBy ('baseFileName ' )->lists ('baseFileName ' , 'baseFileName ' );
70
73
}
71
74
72
75
/**
@@ -584,6 +587,7 @@ protected function makeRedirection($intended = false)
584
587
if ($ property === '0 ' ) {
585
588
return ;
586
589
}
590
+
587
591
// Refresh page
588
592
if ($ property === '' ) {
589
593
return Redirect::refresh ();
Original file line number Diff line number Diff line change 10
10
use RainLab \User \Models \User as UserModel ;
11
11
12
12
/**
13
- * Password reset workflow
13
+ * ResetPassword controls the password reset workflow
14
14
*
15
15
* When a user has forgotten their password, they are able to reset it using
16
16
* a unique token that, sent to their email address upon request.
@@ -133,6 +133,11 @@ public function onResetPassword()
133
133
if (!$ user ->attemptResetPassword ($ code , post ('password ' ))) {
134
134
throw new ValidationException ($ errorFields );
135
135
}
136
+
137
+ // Check needed for compatbility with legacy systems
138
+ if (method_exists (\RainLab \User \Classes \AuthManager::class, 'clearThrottleForUserId ' )) {
139
+ Auth::clearThrottleForUserId ($ user ->id );
140
+ }
136
141
}
137
142
138
143
//
Original file line number Diff line number Diff line change 13
13
use ValidationException ;
14
14
15
15
/**
16
- * User session
16
+ * Session component
17
17
*
18
18
* This will inject the user object to every page and provide the ability for
19
19
* the user to sign out. This can also be used to restrict access to pages.
@@ -62,11 +62,17 @@ public function defineProperties()
62
62
];
63
63
}
64
64
65
+ /**
66
+ * getRedirectOptions
67
+ */
65
68
public function getRedirectOptions ()
66
69
{
67
70
return ['' =>'- none - ' ] + Page::sortBy ('baseFileName ' )->lists ('baseFileName ' , 'baseFileName ' );
68
71
}
69
72
73
+ /**
74
+ * getAllowedUserGroupsOptions
75
+ */
70
76
public function getAllowedUserGroupsOptions ()
71
77
{
72
78
return UserGroup::lists ('name ' ,'code ' );
@@ -91,7 +97,7 @@ public function onRun()
91
97
if (empty ($ this ->property ('redirect ' ))) {
92
98
throw new \InvalidArgumentException ('Redirect property is empty ' );
93
99
}
94
-
100
+
95
101
$ redirectUrl = $ this ->controller ->pageUrl ($ this ->property ('redirect ' ));
96
102
return Redirect::guest ($ redirectUrl );
97
103
}
@@ -178,7 +184,7 @@ public function onStopImpersonating()
178
184
protected function checkUserSecurity ()
179
185
{
180
186
$ allowedGroup = $ this ->property ('security ' , self ::ALLOW_ALL );
181
- $ allowedUserGroups = $ this ->property ('allowedUserGroups ' , []);
187
+ $ allowedUserGroups = ( array ) $ this ->property ('allowedUserGroups ' , []);
182
188
$ isAuthenticated = Auth::check ();
183
189
184
190
if ($ isAuthenticated ) {
Original file line number Diff line number Diff line change 75
75
1.5.3 : Fixes a bug in the user update functionality if password is not changed. Added highlighting for banned users in user list.
76
76
1.5.4 : Multiple translation improvements. Added view events to extend user preview and user listing toolbars.
77
77
1.5.5 : Updated settings icon and description.
78
+ 1.6.0 : Apply persistence settings on activation and registration. Fixes last seen touched when impersonating. Fixes user suspension not clearing.
You can’t perform that action at this time.
0 commit comments