class QueryAccessCheck in GraphQL 8.3
Same name and namespace in other branches
- 8.4 src/Access/QueryAccessCheck.php \Drupal\graphql\Access\QueryAccessCheck
Hierarchy
- class \Drupal\graphql\Access\QueryAccessCheck implements AccessInterface
Expanded class hierarchy of QueryAccessCheck
1 string reference to 'QueryAccessCheck'
1 service uses QueryAccessCheck
File
- src/
Access/ QueryAccessCheck.php, line 10
Namespace
Drupal\graphql\AccessView 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.
*
* @return \Drupal\Core\Access\AccessResultInterface
* The access result.
*/
public function access(AccountInterface $account) {
// If the user has the global permission to execute any query, let them.
if ($account
->hasPermission('execute graphql requests')) {
return AccessResult::allowed();
}
$request = $this->requestStack
->getCurrentRequest();
/** @var \GraphQL\Server\OperationParams[] $operations */
if (!($operations = $request->attributes
->get('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.
if ($operation
->getOriginalInput('query')) {
return AccessResult::allowedIfHasPermission($account, 'execute graphql requests');
}
}
// If we reach this point, this is a persisted query.
return AccessResult::allowedIfHasPermission($account, 'execute persisted graphql requests');
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
QueryAccessCheck:: |
protected | property | The request stack. | |
QueryAccessCheck:: |
public | function | Checks access. | |
QueryAccessCheck:: |
public | function | QueryAccessCheck constructor. |