ユーザーがログインしておらず、私のWebサイト以外のページにアクセスしたい場合は、REST VIEWS routers以外のユーザーにリダイレクトします/ drupal 8のログインページへの彼女は、drupal 7の場合にこの解決策を見つけましたが、Drupal = 8
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;
}
}
Drupal 8.3.3では、このコードは無限のリダイレクトを引き起こします。代わりにそれを追加することで修正しました。
..
$response = new RedirectResponse('/user/login', 301);
$response->send();
..
まず、module-name.services.yml
でイベントサブスクライバー用のサービスを作成します
コード-
services:
[MODULE-NAME]_event_subscriber:
class: Drupal\MODULE-NAME\EventSubscriber\[Event-Subscriber-class]
tags:
- {name: event_subscriber}
modules/module-name/src/EventSubscriber
ディレクトリ内に独自のeventsubscriberクラスを作成します。
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpKernel\Event\GetResponseEvent;
use Symfony\Component\HttpKernel\KernelEvents;
class Event-Subscriber-class implements EventSubscriberInterface {
private $redirectCode = 301;
public function checkForRedirection2(GetResponseEvent $event) {
$account = \Drupal::currentUser();
if (empty($account->id()) {
$response = new RedirectResponse('/', $this->redirectCode);
$response->send();
exit(0);
}
}
public static function getSubscribedEvents() {
$events[KernelEvents::REQUEST][] = array('checkForRedirection2');
return $events;
}
}