Skip to content
Snippets Groups Projects
Verified Commit e015f808 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3456738 by cmlara, Anybody, andrewbelcher, Berdir, catch: BC break in...

Issue #3456738 by cmlara, Anybody, andrewbelcher, Berdir, catch: BC break in login auth changes from #3444978
parent df700a8d
No related branches found
No related tags found
23 merge requests!11131[10.4.x-only-DO-NOT-MERGE]: Issue ##2842525 Ajax attached to Views exposed filter form does not trigger callbacks,!9470[10.3.x-only-DO-NOT-MERGE]: #3331771 Fix file_get_contents(): Passing null to parameter,!8736Update the Documention As per the Function uses.,!8528Issue #3456871 by Tim Bozeman: Support NULL services,!8513Issue #3453786: DefaultSelection should document why values for target_bundles NULL and [] behave as they do,!3878Removed unused condition head title for views,!3818Issue #2140179: $entity->original gets stale between updates,!3742Issue #3328429: Create item list field formatter for displaying ordered and unordered lists,!3731Claro: role=button on status report items,!3651Issue #3347736: Create new SDC component for Olivero (header-search),!3355Issue #3209129: Scrolling problems when adding a block via layout builder,!3154Fixes #2987987 - CSRF token validation broken on routes with optional parameters.,!3133core/modules/system/css/components/hidden.module.css,!2964Issue #2865710 : Dependencies from only one instance of a widget are used in display modes,!2812Issue #3312049: [Followup] Fix Drupal.Commenting.FunctionComment.MissingReturnType returns for NULL,!2378Issue #2875033: Optimize joins and table selection in SQL entity query implementation,!2062Issue #3246454: Add weekly granularity to views date sort,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!877Issue #2708101: Default value for link text is not saved,!617Issue #3043725: Provide a Entity Handler for user cancelation,!579Issue #2230909: Simple decimals fail to pass validation,!560Move callback classRemove outside of the loop,!555Issue #3202493
Pipeline #220582 canceled
Pipeline: drupal

#220584

    ...@@ -201,7 +201,7 @@ public function login(Request $request) { ...@@ -201,7 +201,7 @@ public function login(Request $request) {
    $authenticated = $this->userAuth->authenticateAccount($account, $credentials['pass']) ? $account->id() : FALSE; $authenticated = $this->userAuth->authenticateAccount($account, $credentials['pass']) ? $account->id() : FALSE;
    } }
    else { else {
    $authenticated = $this->userAuth->authenticateAccount($credentials['name'], $credentials['pass']); $authenticated = $this->userAuth->authenticate($credentials['name'], $credentials['pass']);
    } }
    if ($authenticated) { if ($authenticated) {
    $this->userFloodControl->clear('user.http_login', $this->getLoginFloodIdentifier($request, $credentials['name'])); $this->userFloodControl->clear('user.http_login', $this->getLoginFloodIdentifier($request, $credentials['name']));
    ......
    ...@@ -232,6 +232,13 @@ public function validateAuthentication(array &$form, FormStateInterface $form_st ...@@ -232,6 +232,13 @@ public function validateAuthentication(array &$form, FormStateInterface $form_st
    if ($this->userAuth instanceof UserAuthenticationInterface) { if ($this->userAuth instanceof UserAuthenticationInterface) {
    $form_state->set('uid', $this->userAuth->authenticateAccount($account, $password) ? $account->id() : FALSE); $form_state->set('uid', $this->userAuth->authenticateAccount($account, $password) ? $account->id() : FALSE);
    } }
    // The userAuth object is decorated by an object that that has not
    // been upgraded to the new UserAuthenticationInterface. Fallback
    // to the authenticate() method.
    else {
    $uid = $this->userAuth->authenticate($form_state->getValue('name'), $password);
    $form_state->set('uid', $uid);
    }
    } }
    elseif (!$this->userAuth instanceof UserAuthenticationInterface) { elseif (!$this->userAuth instanceof UserAuthenticationInterface) {
    $uid = $this->userAuth->authenticate($form_state->getValue('name'), $password); $uid = $this->userAuth->authenticate($form_state->getValue('name'), $password);
    ......
    <?php
    namespace Drupal\user_auth_decorator_test;
    use Drupal\user\UserAuthInterface;
    /**
    * Helper to validate UserAuthInterface BC layers are functional.
    */
    class UserAuthDecorator implements UserAuthInterface {
    /**
    * Constructs a UserAuthDecorator object.
    *
    * @param \Drupal\user\UserAuthInterface $inner
    * The inner User.Auth service.
    */
    public function __construct(protected UserAuthInterface $inner) {
    }
    /**
    * {@inheritdoc}
    */
    public function authenticate($username, #[\SensitiveParameter] $password) {
    return $this->inner->authenticate($username, $password);
    }
    }
    name: 'User Auth Service decorated only with UserAuthInterface'
    type: module
    description: 'Support module for user authentication testing.'
    package: Testing
    version: VERSION
    services:
    user_auth_decorator.user.auth:
    class: \Drupal\user_auth_decorator_test\UserAuthDecorator
    decorates: user.auth
    arguments:
    - '@user_auth_decorator.user.auth.inner'
    <?php
    declare(strict_types=1);
    namespace Drupal\Tests\user\Functional\Rest;
    use Drupal\user_auth_decorator_test\UserAuthDecorator;
    /**
    * Run UserJsonBasicAuthTest with a user.auth decorator.
    *
    * @group rest
    * @group #slow
    */
    class UserJsonBasicAuthDecoratedTest extends UserJsonBasicAuthTest {
    /**
    * Modules to install.
    *
    * @var array
    */
    protected static $modules = ['user_auth_decorator_test'];
    /**
    * Test that the UserAuthDecorator is providing user.auth.
    */
    public function testServiceDecorated(): void {
    $service = \Drupal::service('user.auth');
    $this->assertInstanceOf(UserAuthDecorator::class, $service);
    }
    }
    <?php
    declare(strict_types=1);
    namespace Drupal\Tests\user\Functional;
    use Drupal\user_auth_decorator_test\UserAuthDecorator;
    /**
    * Ensure that login works as expected with a decorator.
    *
    * The decorator does not implement UserAuthenticationInterface.
    *
    * @group user
    */
    class UserLoginDecoratedTest extends UserLoginTest {
    /**
    * Modules to install.
    *
    * @var array
    */
    protected static $modules = ['user_auth_decorator_test'];
    /**
    * Test that the UserAuthDecorator is providing user.auth.
    */
    public function testServiceDecorated(): void {
    $service = \Drupal::service('user.auth');
    $this->assertInstanceOf(UserAuthDecorator::class, $service);
    }
    }
    <?php
    declare(strict_types=1);
    namespace Drupal\Tests\user\Functional;
    use Drupal\user_auth_decorator_test\UserAuthDecorator;
    /**
    * Tests login and password reset via direct HTTP with a user.auth decorator.
    *
    * The decorator does not implement UserAuthenticationInterface.
    *
    * @group user
    */
    class UserLoginHttpDecoratedTest extends UserLoginHttpTest {
    /**
    * Modules to install.
    *
    * @var array
    */
    protected static $modules = ['user_auth_decorator_test'];
    /**
    * Test that the UserAuthDecorator is providing user.auth.
    */
    public function testServiceDecorated(): void {
    $service = \Drupal::service('user.auth');
    $this->assertInstanceOf(UserAuthDecorator::class, $service);
    }
    }
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment