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 {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@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();
|
|
|
|
$route_name = \Drupal::routeMatch()->getRouteName();
|
|
|
|
$case_routes = ['entity.oc_case.canonical', 'entity.oc_case.edit_form', 'view.cases.page_1'];
|
|
|
|
$is_case_context = in_array($route_name, $case_routes);
|
|
|
|
|
2018-04-29 11:58:46 +00:00
|
|
|
switch ($operation) {
|
|
|
|
case 'view':
|
|
|
|
if (!$entity->isPublished()) {
|
2018-05-08 13:41:02 +00:00
|
|
|
return AccessResult::allowedIfallowedIf(
|
|
|
|
$account->hasPermission("view unpublished $bundle entities")
|
|
|
|
or ($is_case_context && $account->hasPermission("view unpublished $bundle entities"))
|
|
|
|
);
|
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")
|
|
|
|
or ($is_case_context && $account->hasPermission("view $bundle involvement in cases"))
|
|
|
|
);
|
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
|
|
|
}
|
|
|
|
|
|
|
|
}
|