You are here

protected function CommentTypeAccessControlHandler::checkAccess in Comment Permissions 8

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 CommentAccessControlHandler::checkAccess

File

src/CommentTypeAccessControlHandler.php, line 25

Class

CommentTypeAccessControlHandler
Override comment access control handler for the comment entity type.

Namespace

Drupal\comment_perm

Code

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

  /** @var \Drupal\comment\CommentInterface|\Drupal\user\EntityOwnerInterface $entity */
  $comment_type = $entity
    ->bundle();
  $comment_admin = $this
    ->accessAdministerComment($account, $comment_type);
  if ($operation == 'approve') {
    return AccessResult::allowedIf($comment_admin && !$entity
      ->isPublished())
      ->cachePerPermissions()
      ->addCacheableDependency($entity);
  }
  if ($comment_admin) {
    $access = AccessResult::allowed()
      ->cachePerPermissions();
    return $operation != 'view' ? $access : $access
      ->andIf($entity
      ->getCommentedEntity()
      ->access($operation, $account, TRUE));
  }
  switch ($operation) {
    case 'view':
      $access_result = AccessResult::allowedIf($this
        ->accessComment($account, $comment_type) && $entity
        ->isPublished())
        ->cachePerPermissions()
        ->addCacheableDependency($entity)
        ->andIf($entity
        ->getCommentedEntity()
        ->access($operation, $account, TRUE));
      if (!$access_result
        ->isAllowed()) {
        $access_result
          ->setReason("The 'access comments' permission is required and the comment must be published.");
      }
      return $access_result;
    case 'update':
      $access_result = AccessResult::allowedIf($account
        ->id() && $account
        ->id() == $entity
        ->getOwnerId() && $entity
        ->isPublished() && $this
        ->accessEditOwnComment($account, $comment_type))
        ->cachePerPermissions()
        ->cachePerUser()
        ->addCacheableDependency($entity);
      if (!$access_result
        ->isAllowed()) {
        $access_result
          ->setReason("The 'edit own comments' permission is required, the user must be the comment author, and the comment must be published.");
      }
      return $access_result;
    default:

      // No opinion.
      return AccessResult::neutral()
        ->cachePerPermissions();
  }
}