You are here

class PreviewLinkAccessCheck in Preview Link 2.0.x

Same name and namespace in other branches
  1. 8 src/Access/PreviewLinkAccessCheck.php \Drupal\preview_link\Access\PreviewLinkAccessCheck
  2. 2.x src/Access/PreviewLinkAccessCheck.php \Drupal\preview_link\Access\PreviewLinkAccessCheck

Preview link access check.

Hierarchy

Expanded class hierarchy of PreviewLinkAccessCheck

1 string reference to 'PreviewLinkAccessCheck'
preview_link.services.yml in ./preview_link.services.yml
preview_link.services.yml
1 service uses PreviewLinkAccessCheck
access_check.preview_link in ./preview_link.services.yml
Drupal\preview_link\Access\PreviewLinkAccessCheck

File

src/Access/PreviewLinkAccessCheck.php, line 16

Namespace

Drupal\preview_link\Access
View source
class PreviewLinkAccessCheck implements AccessInterface {

  /**
   * Preview link host service.
   *
   * @var \Drupal\preview_link\PreviewLinkHostInterface
   */
  protected $previewLinkHost;

  /**
   * PreviewLinkAccessCheck constructor.
   *
   * @param \Drupal\preview_link\PreviewLinkHostInterface $previewLinkHost
   *   Preview link host service.
   */
  public function __construct(PreviewLinkHostInterface $previewLinkHost) {
    $this->previewLinkHost = $previewLinkHost;
  }

  /**
   * Checks access to the node add page for the node type.
   *
   * @param \Drupal\Core\Entity\EntityInterface $entity
   *   The entity.
   * @param string $preview_token
   *   The preview token.
   *
   * @return \Drupal\Core\Access\AccessResult
   *   A \Drupal\Core\Access\AccessInterface value.
   */
  public function access(EntityInterface $entity = NULL, string $preview_token = NULL) : AccessResultInterface {
    $neutral = AccessResult::neutral()
      ->addCacheableDependency($entity)
      ->addCacheContexts([
      'preview_link_route',
    ]);
    if (!$preview_token || !$entity) {
      return $neutral;
    }

    // If we can't find a valid preview link then ignore this.
    if (!$this->previewLinkHost
      ->hasPreviewLinks($entity)) {
      return $neutral
        ->setReason('This entity does not have a preview link.');
    }

    // If an entity has a preview link and it doesnt match up, then explicitly
    // deny access.
    if (!$this->previewLinkHost
      ->isToken($entity, [
      $preview_token,
    ])) {
      return AccessResult::forbidden('Preview token is invalid.')
        ->addCacheableDependency($entity)
        ->addCacheContexts([
        'preview_link_route',
      ]);
    }
    return AccessResult::allowed()
      ->addCacheableDependency($entity)
      ->addCacheContexts([
      'preview_link_route',
    ]);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PreviewLinkAccessCheck::$previewLinkHost protected property Preview link host service.
PreviewLinkAccessCheck::access public function Checks access to the node add page for the node type.
PreviewLinkAccessCheck::__construct public function PreviewLinkAccessCheck constructor.