Skip to content

Commit 7f7534a

Browse files
committed
Finish compatibility with 2.0
1 parent f346907 commit 7f7534a

File tree

5 files changed

+22
-6
lines changed

5 files changed

+22
-6
lines changed

Plugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function pluginDetails()
3232
public function register()
3333
{
3434
$alias = AliasLoader::getInstance();
35-
$alias->alias('Auth', 'RainLab\User\Facades\Auth');
35+
$alias->alias('Auth', \RainLab\User\Facades\Auth::class);
3636

3737
App::singleton('user.auth', function () {
3838
return \RainLab\User\Classes\AuthManager::instance();

components/Account.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,10 @@ public function defineProperties()
6666

6767
public function getRedirectOptions()
6868
{
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');
7073
}
7174

7275
/**
@@ -584,6 +587,7 @@ protected function makeRedirection($intended = false)
584587
if ($property === '0') {
585588
return;
586589
}
590+
587591
// Refresh page
588592
if ($property === '') {
589593
return Redirect::refresh();

components/ResetPassword.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
use RainLab\User\Models\User as UserModel;
1111

1212
/**
13-
* Password reset workflow
13+
* ResetPassword controls the password reset workflow
1414
*
1515
* When a user has forgotten their password, they are able to reset it using
1616
* a unique token that, sent to their email address upon request.
@@ -133,6 +133,11 @@ public function onResetPassword()
133133
if (!$user->attemptResetPassword($code, post('password'))) {
134134
throw new ValidationException($errorFields);
135135
}
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+
}
136141
}
137142

138143
//

components/Session.php

+9-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
use ValidationException;
1414

1515
/**
16-
* User session
16+
* Session component
1717
*
1818
* This will inject the user object to every page and provide the ability for
1919
* the user to sign out. This can also be used to restrict access to pages.
@@ -62,11 +62,17 @@ public function defineProperties()
6262
];
6363
}
6464

65+
/**
66+
* getRedirectOptions
67+
*/
6568
public function getRedirectOptions()
6669
{
6770
return [''=>'- none -'] + Page::sortBy('baseFileName')->lists('baseFileName', 'baseFileName');
6871
}
6972

73+
/**
74+
* getAllowedUserGroupsOptions
75+
*/
7076
public function getAllowedUserGroupsOptions()
7177
{
7278
return UserGroup::lists('name','code');
@@ -91,7 +97,7 @@ public function onRun()
9197
if (empty($this->property('redirect'))) {
9298
throw new \InvalidArgumentException('Redirect property is empty');
9399
}
94-
100+
95101
$redirectUrl = $this->controller->pageUrl($this->property('redirect'));
96102
return Redirect::guest($redirectUrl);
97103
}
@@ -178,7 +184,7 @@ public function onStopImpersonating()
178184
protected function checkUserSecurity()
179185
{
180186
$allowedGroup = $this->property('security', self::ALLOW_ALL);
181-
$allowedUserGroups = $this->property('allowedUserGroups', []);
187+
$allowedUserGroups = (array) $this->property('allowedUserGroups', []);
182188
$isAuthenticated = Auth::check();
183189

184190
if ($isAuthenticated) {

updates/version.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -75,3 +75,4 @@
7575
1.5.3: Fixes a bug in the user update functionality if password is not changed. Added highlighting for banned users in user list.
7676
1.5.4: Multiple translation improvements. Added view events to extend user preview and user listing toolbars.
7777
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.

0 commit comments

Comments
 (0)