Bạn có thể kiểm tra trạng thái của người dùng từ rất sớm với người đăng ký sự kiện trong mô-đun tùy chỉnh đăng ký KernelEvents :: REQUEST.
Đầu tiên, bạn đăng ký thuê bao sự kiện trong mymodule.services.yml
thư mục mô-đun của mình:
services:
mymodule.event_subscriber:
class: Drupal\mymodule\EventSubscriber\RedirectAnonymousSubscriber
arguments: []
tags:
- {name: event_subscriber}
Sau đó thêm RedirectAnonymousSubscriber.php
cho thuê bao sự kiện tùy chỉnh của bạn trong mô-đun của bạn trong /src/EventSubscriber/
thư mục.
namespace Drupal\mymodule\EventSubscriber;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpKernel\KernelEvents;
use Symfony\Component\HttpKernel\Event\GetResponseEvent;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
/**
* Event subscriber subscribing to KernelEvents::REQUEST.
*/
class RedirectAnonymousSubscriber implements EventSubscriberInterface {
public function __construct() {
$this->account = \Drupal::currentUser();
}
public function checkAuthStatus(GetResponseEvent $event) {
if ($this->account->isAnonymous() && \Drupal::routeMatch()->getRouteName() != 'user.login') {
// add logic to check other routes you want available to anonymous users,
// otherwise, redirect to login page.
$route_name = \Drupal::routeMatch()->getRouteName();
if (strpos($route_name, 'view') === 0 && strpos($route_name, 'rest_') !== FALSE) {
return;
}
$response = new RedirectResponse('/user/login', 301);
$event->setResponse($response);
$event->stopPropagation();
}
}
public static function getSubscribedEvents() {
$events[KernelEvents::REQUEST][] = array('checkAuthStatus');
return $events;
}
}
KernelEvents::REQUEST
sự kiện và sau đó đặt phản hồi thành RedirectResponse cho trang đăng nhập.