You are here

class WebformShareAccess in Webform 6.x

Same name and namespace in other branches
  1. 8.5 modules/webform_share/src/Access/WebformShareAccess.php \Drupal\webform_share\Access\WebformShareAccess

Defines the custom access control handler for webform sharing.

Hierarchy

Expanded class hierarchy of WebformShareAccess

File

modules/webform_share/src/Access/WebformShareAccess.php, line 14

Namespace

Drupal\webform_share\Access
View source
class WebformShareAccess {

  /**
   * Check whether the webform can be shared and it is not a template.
   *
   * @param \Drupal\webform\WebformInterface $webform
   *   A webform.
   *
   * @return \Drupal\Core\Access\AccessResultInterface
   *   The access result.
   */
  public static function checkAccess(WebformInterface $webform) {
    $share = $webform
      ->getSetting('share', TRUE);
    $share_node = \Drupal::moduleHandler()
      ->moduleExists('webform_node') && $webform
      ->getSetting('share_node', TRUE);
    $template = $webform
      ->isTemplate();
    return AccessResult::allowedIf(($share || $share_node) && !$template)
      ->addCacheTags([
      'config:webform.settings',
    ])
      ->addCacheableDependency($webform);
  }

  /**
   * Check whether the webform node can be shared.
   *
   * @param string $operation
   *   Operation being performed.
   * @param string $entity_access
   *   Entity access rule that needs to be checked.
   * @param \Drupal\node\NodeInterface $node
   *   A node.
   * @param \Drupal\Core\Session\AccountInterface $account
   *   Run access checks for this account.
   *
   * @return \Drupal\Core\Access\AccessResultInterface
   *   The access result.
   */
  public static function checkNodeAccess($operation, $entity_access, NodeInterface $node, AccountInterface $account) {

    /** @var \Drupal\webform\WebformEntityReferenceManagerInterface $entity_reference_manager */
    $entity_reference_manager = \Drupal::service('webform.entity_reference_manager');
    $webform = $entity_reference_manager
      ->getWebform($node);

    // Check that the node has a valid webform reference.
    if (!$webform) {
      return AccessResult::forbidden()
        ->addCacheableDependency($node);
    }
    $share = $webform
      ->getSetting('share_node', TRUE);
    if (!$share) {
      return AccessResult::forbidden()
        ->addCacheTags([
        'config:webform.settings',
      ])
        ->addCacheableDependency($node)
        ->addCacheableDependency($webform);
    }
    return WebformNodeAccess::checkAccess($operation, $entity_access, $node, NULL, $account);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
WebformShareAccess::checkAccess public static function Check whether the webform can be shared and it is not a template.
WebformShareAccess::checkNodeAccess public static function Check whether the webform node can be shared.