You are here

class QueryAccessCheck in GraphQL 8.4

Same name and namespace in other branches
  1. 8.3 src/Access/QueryAccessCheck.php \Drupal\graphql\Access\QueryAccessCheck

Grants access to executing arbitrary GraphQL queries on the defined servers.

Hierarchy

Expanded class hierarchy of QueryAccessCheck

1 string reference to 'QueryAccessCheck'
graphql.services.yml in ./graphql.services.yml
graphql.services.yml
1 service uses QueryAccessCheck
access_check.graphql.query in ./graphql.services.yml
Drupal\graphql\Access\QueryAccessCheck

File

src/Access/QueryAccessCheck.php, line 14

Namespace

Drupal\graphql\Access
View source
class QueryAccessCheck implements AccessInterface {

  /**
   * The request stack.
   *
   * @var \Symfony\Component\HttpFoundation\RequestStack
   */
  protected $requestStack;

  /**
   * QueryAccessCheck constructor.
   *
   * @param \Symfony\Component\HttpFoundation\RequestStack $requestStack
   *   The request stack.
   */
  public function __construct(RequestStack $requestStack) {
    $this->requestStack = $requestStack;
  }

  /**
   * Checks access.
   *
   * @param \Drupal\Core\Session\AccountInterface $account
   *   The currently logged in account.
   * @param \Drupal\graphql\Entity\ServerInterface $graphql_server
   *   The server instance.
   *
   * @return \Drupal\Core\Access\AccessResultInterface
   *   The access result.
   */
  public function access(AccountInterface $account, ServerInterface $graphql_server) {
    if ($account
      ->hasPermission('bypass graphql access')) {
      return AccessResult::allowed();
    }
    $id = $graphql_server
      ->id();

    // If the user has the global permission to execute any query, let them.
    if ($account
      ->hasPermission("execute {$id} arbitrary graphql requests")) {
      return AccessResult::allowed();
    }
    $request = $this->requestStack
      ->getCurrentRequest();
    $operations = $request->attributes
      ->get('operations', []);
    if (!$operations) {
      return AccessResult::forbidden();
    }
    $operations = is_array($operations) ? $operations : [
      $operations,
    ];
    foreach ($operations as $operation) {

      // If a query was provided by the user, this is an arbitrary query (it's
      // not a persisted query). Hence, we only grant access if the user has the
      // permission to execute any query.

      /** @var \GraphQL\Server\OperationParams $operation */
      if ($operation
        ->getOriginalInput('query')) {
        return AccessResult::allowedIfHasPermission($account, "execute {$id} arbitrary graphql requests");
      }
    }

    // If we reach this point, this is a persisted query.
    return AccessResult::allowedIfHasPermission($account, "execute {$id} persisted graphql requests");
  }

}

Members

Namesort descending Modifiers Type Description Overrides
QueryAccessCheck::$requestStack protected property The request stack.
QueryAccessCheck::access public function Checks access.
QueryAccessCheck::__construct public function QueryAccessCheck constructor.