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 {
|
|
|
|
|
2018-07-09 18:15:16 +00:00
|
|
|
|
|
|
|
protected $viewLabelOperation = TRUE;
|
|
|
|
|
2018-04-29 11:58:46 +00:00
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
2018-05-08 13:41:02 +00:00
|
|
|
* 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 */
|
2018-05-08 13:41:02 +00:00
|
|
|
$bundle = $entity->bundle();
|
2018-04-29 11:58:46 +00:00
|
|
|
switch ($operation) {
|
2018-07-09 18:15:16 +00:00
|
|
|
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(
|
2021-09-17 13:21:56 +00:00
|
|
|
$account->hasPermission("view unpublished actor entities")
|
2018-05-08 13:41:02 +00:00
|
|
|
);
|
2018-04-29 11:58:46 +00:00
|
|
|
}
|
2018-05-08 13:41:02 +00:00
|
|
|
return AccessResult::allowedIf(
|
|
|
|
$account->hasPermission("view published $bundle entities")
|
|
|
|
);
|
2018-04-29 11:58:46 +00:00
|
|
|
|
2018-05-08 13:41:02 +00:00
|
|
|
case "update":
|
|
|
|
return AccessResult::allowedIfHasPermission($account, "edit $bundle entities");
|
2018-04-29 11:58:46 +00:00
|
|
|
|
2018-05-08 13:41:02 +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
|
|
|
}
|
|
|
|
|
|
|
|
}
|