You are here

protected function OpignoActivityAccessControlHandler::checkAccess in Opigno module 3.x

Same name and namespace in other branches
  1. 8 src/OpignoActivityAccessControlHandler.php \Drupal\opigno_module\OpignoActivityAccessControlHandler::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

src/OpignoActivityAccessControlHandler.php, line 20

Class

OpignoActivityAccessControlHandler
Access controller for the Activity entity.

Namespace

Drupal\opigno_module

Code

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

  /** @var \Drupal\opigno_module\Entity\OpignoActivityInterface $entity */
  switch ($operation) {
    case 'view':
      if ($account
        ->hasPermission('manage group content in any group')) {

        // Allow admins & platform-level managers to view any content.
        return AccessResult::allowed();
      }
      if (!$entity
        ->isPublished()) {
        return AccessResult::allowedIfHasPermission($account, 'view unpublished activity entities');
      }
      return AccessResult::allowedIfHasPermission($account, 'view published activity entities');
    case 'update':
      if ($account
        ->hasPermission('manage group content in any group')) {

        // Allow admins & platform-level managers to edit any content.
        return AccessResult::allowed();
      }
      if ($entity
        ->getOwnerId() === $account
        ->id()) {

        // Allow users to edit its own content.
        return AccessResult::allowed();
      }
      return AccessResult::allowedIfHasPermission($account, 'edit activity entities');
    case 'delete':
      if ($account
        ->hasPermission('manage group content in any group')) {

        // Allow admins & platform-level managers to delete any content.
        return AccessResult::allowed();
      }
      if ($entity
        ->getOwnerId() === $account
        ->id()) {

        // Allow users to delete its own content.
        return AccessResult::allowed();
      }
      return AccessResult::allowedIfHasPermission($account, 'delete activity entities');
  }

  // Unknown operation, no opinion.
  return AccessResult::neutral();
}