EntityPermissionsForm.php

Same filename and directory in other branches
  1. 10 core/modules/user/src/Form/EntityPermissionsForm.php
  2. 11.x core/modules/user/src/Form/EntityPermissionsForm.php

Namespace

Drupal\user\Form

File

core/modules/user/src/Form/EntityPermissionsForm.php

View source
<?php

namespace Drupal\user\Form;

use Drupal\Core\Access\AccessResult;
use Drupal\Core\Access\AccessResultInterface;
use Drupal\Core\Config\ConfigManagerInterface;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\user\PermissionHandlerInterface;
use Drupal\user\RoleStorageInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\Routing\Route;

/**
 * Provides the permissions administration form for a bundle.
 *
 * This class handles bundles that are defined by configuration objects.
 *
 * @internal
 */
class EntityPermissionsForm extends UserPermissionsForm {
    
    /**
     * The configuration entity manager.
     *
     * @var \Drupal\Core\Config\ConfigManagerInterface
     */
    protected $configManager;
    
    /**
     * The entity type manager service.
     *
     * @var \Drupal\Core\Entity\EntityTypeManagerInterface
     */
    protected $entityTypeManager;
    
    /**
     * The bundle object.
     *
     * @var \Drupal\Core\Entity\EntityInterface
     */
    protected $bundle;
    
    /**
     * Constructs a new EntityPermissionsForm.
     *
     * @param \Drupal\user\PermissionHandlerInterface $permission_handler
     *   The permission handler.
     * @param \Drupal\user\RoleStorageInterface $role_storage
     *   The role storage.
     * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
     *   The module handler.
     * @param Drupal\Core\Config\ConfigManagerInterface $config_manager
     *   The configuration entity manager.
     * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
     *   The entity type manager service.
     */
    public function __construct(PermissionHandlerInterface $permission_handler, RoleStorageInterface $role_storage, ModuleHandlerInterface $module_handler, ConfigManagerInterface $config_manager, EntityTypeManagerInterface $entity_type_manager) {
        parent::__construct($permission_handler, $role_storage, $module_handler);
        $this->configManager = $config_manager;
        $this->entityTypeManager = $entity_type_manager;
    }
    
    /**
     * {@inheritdoc}
     */
    public static function create(ContainerInterface $container) {
        return new static($container->get('user.permissions'), $container->get('entity_type.manager')
            ->getStorage('user_role'), $container->get('module_handler'), $container->get('config.manager'), $container->get('entity_type.manager'));
    }
    
    /**
     * {@inheritdoc}
     */
    protected function permissionsByProvider() : array {
        // Get the names of all config entities that depend on $this->bundle.
        $config_name = $this->bundle
            ->getConfigDependencyName();
        $config_entities = $this->configManager
            ->getConfigEntitiesToChangeOnDependencyRemoval('config', [
            $config_name,
        ]);
        $config_names = array_map(function ($dependent_config) {
            return $dependent_config->getConfigDependencyName();
        }, $config_entities['delete'] ?? []);
        $config_names[] = $config_name;
        // Find all the permissions that depend on $this->bundle.
        $permissions = $this->permissionHandler
            ->getPermissions();
        $permissions_by_provider = [];
        foreach ($permissions as $permission_name => $permission) {
            $required_configs = $permission['dependencies']['config'] ?? [];
            if (array_intersect($required_configs, $config_names)) {
                $provider = $permission['provider'];
                $permissions_by_provider[$provider][$permission_name] = $permission;
            }
        }
        return $permissions_by_provider;
    }
    
    /**
     * Builds the user permissions administration form for a bundle.
     *
     * @param array $form
     *   An associative array containing the structure of the form.
     * @param \Drupal\Core\Form\FormStateInterface $form_state
     *   The current state of the form.
     * @param string $bundle_entity_type
     *   (optional) The entity type ID.
     * @param string|Drupal\Core\Entity\EntityInterface $bundle
     *   (optional) Either the bundle name or the bundle object.
     */
    public function buildForm(array $form, FormStateInterface $form_state, string $bundle_entity_type = NULL, $bundle = NULL) : array {
        // Set $this->bundle for use by ::permissionsByProvider().
        if ($bundle instanceof EntityInterface) {
            $this->bundle = $bundle;
            return parent::buildForm($form, $form_state);
        }
        $this->bundle = $this->entityTypeManager
            ->getStorage($bundle_entity_type)
            ->load($bundle);
        return parent::buildForm($form, $form_state);
    }
    
    /**
     * Checks that there are permissions to be managed.
     *
     * @param \Symfony\Component\Routing\Route $route
     *   The route to check against.
     * @param \Drupal\Core\Routing\RouteMatchInterface $route_match
     *   The parametrized route.
     * @param string|EntityInterface $bundle
     *   (optional) The bundle. Different entity types can have different names
     *   for their bundle key, so if not specified on the route via a {bundle}
     *   parameter, the access checker determines the appropriate key name, and
     *   gets the value from the corresponding request attribute. For example,
     *   for nodes, the bundle key is "node_type", so the value would be
     *   available via the {node_type} parameter rather than a {bundle}
     *   parameter.
     *
     * @return \Drupal\Core\Access\AccessResultInterface
     *   The access result.
     */
    public function access(Route $route, RouteMatchInterface $route_match, $bundle = NULL) : AccessResultInterface {
        // Set $this->bundle for use by ::permissionsByProvider().
        if ($bundle instanceof EntityInterface) {
            $this->bundle = $bundle;
        }
        else {
            $bundle_entity_type = $route->getDefault('bundle_entity_type');
            $bundle_name = is_string($bundle) ? $bundle : $route_match->getRawParameter($bundle_entity_type);
            $this->bundle = $this->entityTypeManager
                ->getStorage($bundle_entity_type)
                ->load($bundle_name);
        }
        if (empty($this->bundle)) {
            // A typo in the request path can lead to this case.
            return AccessResult::forbidden();
        }
        return AccessResult::allowedIf((bool) $this->permissionsByProvider());
    }

}

Classes

Title Deprecated Summary
EntityPermissionsForm Provides the permissions administration form for a bundle.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.