RedirectSubscriber.php in Open Social 8.6
Same filename in this branch
- 8.6 modules/social_features/social_search/src/EventSubscriber/RedirectSubscriber.php
- 8.6 modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php
- 8.6 modules/social_features/social_user/src/EventSubscriber/RedirectSubscriber.php
- 8.6 modules/social_features/social_group/modules/social_group_quickjoin/src/EventSubscriber/RedirectSubscriber.php
- 8.6 modules/social_features/social_group/modules/social_group_default_route/src/EventSubscriber/RedirectSubscriber.php
- 8.6 modules/social_features/social_group/modules/social_group_flexible_group/src/EventSubscriber/RedirectSubscriber.php
Same filename and directory in other branches
- 8.9 modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php
- 8 modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php
- 8.2 modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php
- 8.3 modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php
- 8.4 modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php
- 8.5 modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php
- 8.7 modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php
- 8.8 modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php
- 10.3.x modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php
- 10.0.x modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php
- 10.1.x modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php
- 10.2.x modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php
Namespace
Drupal\social_group\EventSubscriberFile
modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.phpView source
<?php
namespace Drupal\social_group\EventSubscriber;
use Drupal\Core\Url;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpKernel\Event\GetResponseEvent;
use Symfony\Component\HttpKernel\KernelEvents;
/**
* Class RedirectSubscriber.
*
* @package Drupal\social_group\EventSubscriber
*/
class RedirectSubscriber implements EventSubscriberInterface {
/**
* Get the request events.
*
* @return mixed
* Returns request events.
*/
public static function getSubscribedEvents() {
$events[KernelEvents::REQUEST][] = [
'checkForRedirection',
];
return $events;
}
/**
* This method is called when the KernelEvents::REQUEST event is dispatched.
*
* @param \Symfony\Component\HttpKernel\Event\GetResponseEvent $event
* The event.
*/
public function checkForRedirection(GetResponseEvent $event) {
// Check if there is a group object on the current route.
$group = _social_group_get_current_group();
// Get the current route name for the checks being performed below.
$routeMatch = \Drupal::routeMatch()
->getRouteName();
// Get the current user.
$user = \Drupal::currentUser();
// The array of forbidden routes.
$routes = [
'entity.group.canonical',
'entity.group.join',
'view.group_events.page_group_events',
'view.group_topics.page_group_topics',
];
// If a group is set, and the type is closed_group.
if ($group && $group
->getGroupType()
->id() == 'closed_group') {
if ($user
->id() != 1) {
if ($user
->hasPermission('manage all groups')) {
return;
}
elseif (!$group
->getMember($user) && in_array($routeMatch, $routes)) {
$event
->setResponse(new RedirectResponse(Url::fromRoute('view.group_information.page_group_about', [
'group' => $group
->id(),
])
->toString()));
}
}
}
}
}
Classes
Name | Description |
---|---|
RedirectSubscriber | Class RedirectSubscriber. |