You are here

protected function SearchPageAccessControlHandler::checkAccess in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/search/src/SearchPageAccessControlHandler.php \Drupal\search\SearchPageAccessControlHandler::checkAccess()

Performs access checks.

This method is supposed to be overwritten by extending classes that do their own custom access checking.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: The entity for which to check access.

string $operation: The entity operation. Usually one of 'view', 'view label', 'update' or 'delete'.

\Drupal\Core\Session\AccountInterface $account: The user for which to check access.

Return value

\Drupal\Core\Access\AccessResultInterface The access result.

Overrides EntityAccessControlHandler::checkAccess

File

core/modules/search/src/SearchPageAccessControlHandler.php, line 21

Class

SearchPageAccessControlHandler
Defines the access control handler for the search page entity type.

Namespace

Drupal\search

Code

protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {

  /** @var \Drupal\search\SearchPageInterface $entity */
  if (in_array($operation, [
    'delete',
    'disable',
  ])) {
    if ($entity
      ->isDefaultSearch()) {
      return AccessResult::forbidden()
        ->addCacheableDependency($entity);
    }
    else {
      return parent::checkAccess($entity, $operation, $account)
        ->addCacheableDependency($entity);
    }
  }
  if ($operation == 'view') {
    if (!$entity
      ->status()) {
      return AccessResult::forbidden()
        ->addCacheableDependency($entity);
    }
    $plugin = $entity
      ->getPlugin();
    if ($plugin instanceof AccessibleInterface) {
      return $plugin
        ->access($operation, $account, TRUE)
        ->addCacheableDependency($entity);
    }
    return AccessResult::allowed()
      ->addCacheableDependency($entity);
  }
  return parent::checkAccess($entity, $operation, $account);
}