class ParagraphAccessControlHandler

Access controller for the paragraphs entity.

Hierarchy

  • class \Drupal\paragraphs\ParagraphAccessControlHandler extends \Drupal\Core\Entity\EntityAccessControlHandler implements \Drupal\Core\Entity\EntityHandlerInterface

Expanded class hierarchy of ParagraphAccessControlHandler

See also

\Drupal\paragraphs\Entity\Paragraph.

File

paragraphs/src/ParagraphAccessControlHandler.php, line 19

Namespace

Drupal\paragraphs
View source
class ParagraphAccessControlHandler extends EntityAccessControlHandler implements EntityHandlerInterface {

  /**
   * Contains the configuration object factory.
   *
   * @var \Drupal\Core\Config\ConfigFactoryInterface
   */
  protected $configFactory;

  /**
   * Constructs a TranslatorAccessControlHandler object.
   *
   * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
   *   The entity type definition.
   * @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
   *   The config object factory.
   */
  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 checkAccess(EntityInterface $paragraph, $operation, AccountInterface $account) {

    // Allowed when the operation is not view or the status is true.

    /** @var \Drupal\paragraphs\Entity\Paragraph $paragraph */
    $config = $this->configFactory
      ->get('paragraphs.settings');
    if ($operation === 'view') {
      $access_result = AccessResult::allowedIf($paragraph
        ->isPublished() || $account
        ->hasPermission('view unpublished paragraphs') && $config
        ->get('show_unpublished'))
        ->addCacheableDependency($config);
    }
    else {
      $access_result = AccessResult::allowed();
    }
    if ($paragraph
      ->getParentEntity() != NULL) {

      // Delete permission on the paragraph, should just depend on 'update'
      // access permissions on the parent.
      $operation = $operation == 'delete' ? 'update' : $operation;

      // Library items have no support for parent entity access checking.
      if ($paragraph
        ->getParentEntity()
        ->getEntityTypeId() != 'paragraphs_library_item') {
        $parent_access = $paragraph
          ->getParentEntity()
          ->access($operation, $account, TRUE);
        $access_result = $access_result
          ->andIf($parent_access);
      }
    }
    return $access_result;
  }

  /**
   * {@inheritdoc}
   */
  protected function checkCreateAccess(AccountInterface $account, array $context, $entity_bundle = NULL) {

    // Allow paragraph entities to be created in the context of entity forms.
    if (\Drupal::requestStack()
      ->getCurrentRequest()
      ->getRequestFormat() === 'html') {
      return AccessResult::allowed()
        ->addCacheContexts([
        'request_format',
      ]);
    }
    return AccessResult::neutral()
      ->addCacheContexts([
      'request_format',
    ]);
  }

}

Members

Name Modifierssort descending Type Description Overrides
ParagraphAccessControlHandler::checkAccess protected function
ParagraphAccessControlHandler::checkCreateAccess protected function
ParagraphAccessControlHandler::$configFactory protected property Contains the configuration object factory.
ParagraphAccessControlHandler::__construct public function Constructs a TranslatorAccessControlHandler object.
ParagraphAccessControlHandler::createInstance public static function