คุณสามารถทดสอบสถานะของผู้ใช้ตั้งแต่เนิ่น ๆ ด้วยสมาชิกเหตุการณ์ในโมดูลที่กำหนดเองที่สมัครเป็นสมาชิก KernelEvents :: REQUEST
ขั้นแรกให้คุณลงทะเบียนผู้สมัครสมาชิกกิจกรรมmymodule.services.yml
ในโฟลเดอร์โมดูลของคุณ:
services:
mymodule.event_subscriber:
class: Drupal\mymodule\EventSubscriber\RedirectAnonymousSubscriber
arguments: []
tags:
- {name: event_subscriber}
จากนั้นเพิ่มRedirectAnonymousSubscriber.php
สำหรับสมาชิกเหตุการณ์ที่กำหนดเองของคุณในโมดูลของคุณใน/src/EventSubscriber/
โฟลเดอร์
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
เหตุการณ์แล้วตั้งค่าการตอบสนองต่อ RedirectResponse สำหรับหน้าเข้าสู่ระบบ