You are here

SocialGroupAccessControlHandler.php in Open Social 10.0.x

File

modules/social_features/social_group/src/Entity/Access/SocialGroupAccessControlHandler.php
View source
<?php

namespace Drupal\social_group\Entity\Access;

use Drupal\Core\Access\AccessResult;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Entity\EntityHandlerInterface;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\group\Entity\Access\GroupAccessControlHandler;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Extended access controller for the Group entity.
 *
 * @see social_group_entity_type_alter()
 */
class SocialGroupAccessControlHandler extends GroupAccessControlHandler implements EntityHandlerInterface {

  /**
   * The configuration factory service.
   *
   * @var \Drupal\Core\Config\ConfigFactoryInterface
   */
  protected $configFactory;

  /**
   * Constructs the group access control handler instance.
   *
   * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
   *   The entity type definition.
   * @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
   *   The configuration factory service.
   */
  public function __construct(EntityTypeInterface $entity_type, ConfigFactoryInterface $config_factory) {
    parent::__construct($entity_type);
    $this->configFactory = $config_factory;
  }

  /**
   * {@inheritdoc}
   */
  public static function createInstance(ContainerInterface $container, EntityTypeInterface $entity_type) {
    return new static($entity_type, $container
      ->get('config.factory'));
  }

  /**
   * {@inheritdoc}
   */
  protected function checkCreateAccess(AccountInterface $account, array $context, $entity_bundle = NULL) {
    if (!$account
      ->hasPermission('bypass group access') && !$account
      ->hasPermission('bypass create group access') && !$this->configFactory
      ->get('social_group.settings')
      ->get('allow_group_create')) {
      return AccessResult::forbidden();
    }
    return parent::checkCreateAccess($account, $context, $entity_bundle);
  }

}

Classes

Namesort descending Description
SocialGroupAccessControlHandler Extended access controller for the Group entity.