You are here

class RedirectSubscriber in Open Social 8.2

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php \Drupal\social_group\EventSubscriber\RedirectSubscriber
  2. 8 modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php \Drupal\social_group\EventSubscriber\RedirectSubscriber
  3. 8.3 modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php \Drupal\social_group\EventSubscriber\RedirectSubscriber
  4. 8.4 modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php \Drupal\social_group\EventSubscriber\RedirectSubscriber
  5. 8.5 modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php \Drupal\social_group\EventSubscriber\RedirectSubscriber
  6. 8.6 modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php \Drupal\social_group\EventSubscriber\RedirectSubscriber
  7. 8.7 modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php \Drupal\social_group\EventSubscriber\RedirectSubscriber
  8. 8.8 modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php \Drupal\social_group\EventSubscriber\RedirectSubscriber
  9. 10.3.x modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php \Drupal\social_group\EventSubscriber\RedirectSubscriber
  10. 10.0.x modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php \Drupal\social_group\EventSubscriber\RedirectSubscriber
  11. 10.1.x modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php \Drupal\social_group\EventSubscriber\RedirectSubscriber
  12. 10.2.x modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php \Drupal\social_group\EventSubscriber\RedirectSubscriber

Class RedirectSubscriber.

@package Drupal\social_group\EventSubscriber

Hierarchy

  • class \Drupal\social_group\EventSubscriber\RedirectSubscriber implements \Symfony\Component\EventDispatcher\EventSubscriberInterface

Expanded class hierarchy of RedirectSubscriber

1 string reference to 'RedirectSubscriber'
social_group.services.yml in modules/social_features/social_group/social_group.services.yml
modules/social_features/social_group/social_group.services.yml
1 service uses RedirectSubscriber
social_group.redirect_subscriber in modules/social_features/social_group/social_group.services.yml
Drupal\social_group\EventSubscriber\RedirectSubscriber

File

modules/social_features/social_group/src/EventSubscriber/RedirectSubscriber.php, line 16

Namespace

Drupal\social_group\EventSubscriber
View source
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()));
        }
      }
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
RedirectSubscriber::checkForRedirection public function This method is called when the KernelEvents::REQUEST event is dispatched.
RedirectSubscriber::getSubscribedEvents public static function Get the request events.