This repository has been archived on 2022-07-12. You can view files and clone it, but cannot push or open issues or pull requests.
opencase/modules/opencase_entities/src/OCActorAccessControlHandler...

61 lines
1.6 KiB
PHP
Raw Normal View History

2018-04-29 11:58:46 +00:00
<?php
namespace Drupal\opencase_entities;
use Drupal\Core\Entity\EntityAccessControlHandler;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\Access\AccessResult;
/**
* Access controller for the Actor entity.
*
* @see \Drupal\opencase_entities\Entity\OCActor.
*/
class OCActorAccessControlHandler extends EntityAccessControlHandler {
protected $viewLabelOperation = TRUE;
2018-04-29 11:58:46 +00:00
/**
* {@inheritdoc}
* Permissions are assigned by bundle.
*
2018-04-29 11:58:46 +00:00
*/
protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
/** @var \Drupal\opencase_entities\Entity\OCActorInterface $entity */
$bundle = $entity->bundle();
2018-04-29 11:58:46 +00:00
switch ($operation) {
case 'view label':
return AccessResult::allowed();
2018-04-29 11:58:46 +00:00
case 'view':
if (!$entity->isPublished()) {
2018-05-11 12:43:42 +00:00
return AccessResult::allowedIf(
$account->hasPermission("view unpublished actor entities")
);
2018-04-29 11:58:46 +00:00
}
return AccessResult::allowedIf(
$account->hasPermission("view published $bundle entities")
);
2018-04-29 11:58:46 +00:00
case "update":
return AccessResult::allowedIfHasPermission($account, "edit $bundle entities");
2018-04-29 11:58:46 +00:00
case "delete":
return AccessResult::allowedIfHasPermission($account, "delete $bundle entities");
2018-04-29 11:58:46 +00:00
}
// Unknown operation, no opinion.
return AccessResult::neutral();
}
/**
* {@inheritdoc}
*/
protected function checkCreateAccess(AccountInterface $account, array $context, $entity_bundle = NULL) {
2018-05-08 14:10:00 +00:00
return AccessResult::allowedIfHasPermission($account, "add $entity_bundle entities");
2018-04-29 11:58:46 +00:00
}
}