mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
FIX Authenticators are more resilient to incomplete configuration
This commit is contained in:
parent
c0003bca3d
commit
091d99f599
@ -102,9 +102,12 @@ abstract class Authenticator extends Object {
|
||||
if(is_subclass_of($authenticator, 'Authenticator') == false)
|
||||
return false;
|
||||
|
||||
if(in_array($authenticator, self::$authenticators) == false) {
|
||||
$authenticators = Config::inst()->get(__CLASS__, 'authenticators');
|
||||
if(in_array($authenticator, $authenticators) == false) {
|
||||
if(call_user_func(array($authenticator, 'on_register')) === true) {
|
||||
array_push(self::$authenticators, $authenticator);
|
||||
Config::inst()->update(__CLASS__, 'authenticators', array(
|
||||
$authenticator,
|
||||
));
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
@ -125,8 +128,11 @@ abstract class Authenticator extends Object {
|
||||
*/
|
||||
public static function unregister_authenticator($authenticator) {
|
||||
if(call_user_func(array($authenticator, 'on_unregister')) === true) {
|
||||
if(in_array($authenticator, self::$authenticators)) {
|
||||
unset(self::$authenticators[array_search($authenticator, self::$authenticators)]);
|
||||
$authenticators = Config::inst()->get(__CLASS__, 'authenticators');
|
||||
if(($key = array_search($authenticator, $authenticators)) !== false) {
|
||||
unset($authenticators[$key]);
|
||||
Config::inst()->remove(__CLASS__, 'authenticators');
|
||||
Config::inst()->update(__CLASS__, 'authenticators', $authenticators);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -140,7 +146,7 @@ abstract class Authenticator extends Object {
|
||||
* otherwise.
|
||||
*/
|
||||
public static function is_registered($authenticator) {
|
||||
return in_array($authenticator, self::$authenticators);
|
||||
return in_array($authenticator, Config::inst()->get(__CLASS__, 'authenticators'));
|
||||
}
|
||||
|
||||
|
||||
@ -151,13 +157,16 @@ abstract class Authenticator extends Object {
|
||||
* authenticators.
|
||||
*/
|
||||
public static function get_authenticators() {
|
||||
// put default authenticator first (mainly for tab-order on loginform)
|
||||
if($key = array_search(self::$default_authenticator,self::$authenticators)) {
|
||||
unset(self::$authenticators[$key]);
|
||||
array_unshift(self::$authenticators, self::$default_authenticator);
|
||||
$authenticators = Config::inst()->get(__CLASS__, 'authenticators');
|
||||
$defaultAuthenticator = Config::inst()->get(__CLASS__, 'default_authenticator');
|
||||
|
||||
// put default authenticator first if it isn't already
|
||||
if (reset($authenticators) !== $defaultAuthenticator && ($key = array_search($defaultAuthenticator, $authenticators)) !== false) {
|
||||
unset($authenticators[$key]);
|
||||
array_unshift($authenticators, $defaultAuthenticator);
|
||||
}
|
||||
|
||||
return self::$authenticators;
|
||||
return $authenticators;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -175,7 +184,9 @@ abstract class Authenticator extends Object {
|
||||
* @return string
|
||||
*/
|
||||
public static function get_default_authenticator() {
|
||||
return self::$default_authenticator;
|
||||
$authenticators = static::get_authenticators();
|
||||
// the first authenticator is the default one
|
||||
return reset($authenticators);
|
||||
}
|
||||
|
||||
|
||||
|
@ -44,5 +44,15 @@ abstract class LoginForm extends Form {
|
||||
return $authClass::get_name();
|
||||
}
|
||||
|
||||
public function setAuthenticatorClass($class)
|
||||
{
|
||||
$this->authenticator_class = $class;
|
||||
$authenticatorField = $this->Fields()->dataFieldByName('AuthenticationMethod');
|
||||
if ($authenticatorField) {
|
||||
$authenticatorField->setValue($class);
|
||||
}
|
||||
return $this;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
@ -179,14 +179,18 @@ class MemberAuthenticator extends Authenticator {
|
||||
*
|
||||
* @param Controller The parent controller, necessary to create the
|
||||
* appropriate form action tag
|
||||
* @return Form Returns the login form to use with this authentication
|
||||
* @return MemberLoginForm Returns the login form to use with this authentication
|
||||
* method
|
||||
*/
|
||||
public static function get_login_form(Controller $controller) {
|
||||
return MemberLoginForm::create($controller, "LoginForm");
|
||||
}
|
||||
|
||||
public static function get_cms_login_form(\Controller $controller) {
|
||||
/**
|
||||
* @param Controller $controller
|
||||
* @return CMSMemberLoginForm
|
||||
*/
|
||||
public static function get_cms_login_form(Controller $controller) {
|
||||
return CMSMemberLoginForm::create($controller, "LoginForm");
|
||||
}
|
||||
|
||||
|
@ -221,4 +221,10 @@ class MemberAuthenticatorTest extends SapphireTest {
|
||||
$this->assertTrue($member->isLockedOut());
|
||||
$this->assertFalse($member->canLogIn()->valid());
|
||||
}
|
||||
|
||||
public function testDefaultAuthenticatorWontReturnIfDisabled()
|
||||
{
|
||||
Authenticator::unregister('MemberAuthenticator');
|
||||
$this->assertNotEquals('MemberAuthenticator', Authenticator::get_default_authenticator());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user