You are here

public function AuthenticationSubscriber::onKernelRequestAuthenticate in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/EventSubscriber/AuthenticationSubscriber.php \Drupal\Core\EventSubscriber\AuthenticationSubscriber::onKernelRequestAuthenticate()

Authenticates user on request.

Parameters

\Symfony\Component\HttpKernel\Event\GetResponseEvent $event: The request event.

See also

\Drupal\Core\Authentication\AuthenticationProviderInterface::authenticate()

File

core/lib/Drupal/Core/EventSubscriber/AuthenticationSubscriber.php, line 79
Contains \Drupal\Core\EventSubscriber\AuthenticationSubscriber.

Class

AuthenticationSubscriber
Authentication subscriber.

Namespace

Drupal\Core\EventSubscriber

Code

public function onKernelRequestAuthenticate(GetResponseEvent $event) {
  if ($event
    ->getRequestType() === HttpKernelInterface::MASTER_REQUEST) {
    $request = $event
      ->getRequest();
    if ($this->authenticationProvider
      ->applies($request)) {
      $account = $this->authenticationProvider
        ->authenticate($request);
      if ($account) {
        $this->accountProxy
          ->setAccount($account);
      }
    }
  }
}