You are here

class FarmAssetChildrenViewsAccessCheck in farmOS 2.x

Checks access for displaying Views of asset children.

Hierarchy

Expanded class hierarchy of FarmAssetChildrenViewsAccessCheck

1 string reference to 'FarmAssetChildrenViewsAccessCheck'
farm_ui_views.services.yml in modules/core/ui/views/farm_ui_views.services.yml
modules/core/ui/views/farm_ui_views.services.yml
1 service uses FarmAssetChildrenViewsAccessCheck
farm_ui_views.asset_children_access in modules/core/ui/views/farm_ui_views.services.yml
Drupal\farm_ui_views\Access\FarmAssetChildrenViewsAccessCheck

File

modules/core/ui/views/src/Access/FarmAssetChildrenViewsAccessCheck.php, line 14

Namespace

Drupal\farm_ui_views\Access
View source
class FarmAssetChildrenViewsAccessCheck implements AccessInterface {

  /**
   * The asset storage.
   *
   * @var \Drupal\Core\Entity\EntityStorageInterface
   */
  protected $assetStorage;

  /**
   * The asset location service.
   *
   * @var \Drupal\farm_location\AssetLocationInterface
   */
  protected $assetLocation;

  /**
   * FarmAssetChildrenViewsAccessCheck constructor.
   *
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity type manager service.
   * @param \Drupal\farm_location\AssetLocationInterface $asset_location
   *   The asset location service.
   */
  public function __construct(EntityTypeManagerInterface $entity_type_manager, AssetLocationInterface $asset_location) {
    $this->assetStorage = $entity_type_manager
      ->getStorage('asset');
    $this->assetLocation = $asset_location;
  }

  /**
   * A custom access check.
   *
   * @param \Drupal\Core\Routing\RouteMatchInterface $route_match
   *   The route match.
   */
  public function access(RouteMatchInterface $route_match) {

    // If there is no "asset" parameter, bail.
    $asset_id = $route_match
      ->getParameter('asset');
    if (empty($asset_id)) {
      return AccessResult::allowed();
    }

    // If the asset is a location, deny access.

    /** @var \Drupal\asset\Entity\AssetInterface $asset */
    $asset = $this->assetStorage
      ->load($asset_id);
    if ($this->assetLocation
      ->isLocation($asset)) {
      return AccessResult::forbidden();
    }

    // Run a count query to see if there are any assets that reference this
    // asset as a parent.
    $count = $this->assetStorage
      ->getAggregateQuery()
      ->accessCheck(TRUE)
      ->condition('parent.entity.id', $asset_id)
      ->count()
      ->execute();

    // Determine access based on the child count.
    $access = AccessResult::allowedIf($count > 0);

    // Invalidate the access result when assets are changed.
    $access
      ->addCacheTags([
      "asset_list",
    ]);
    return $access;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
FarmAssetChildrenViewsAccessCheck::$assetLocation protected property The asset location service.
FarmAssetChildrenViewsAccessCheck::$assetStorage protected property The asset storage.
FarmAssetChildrenViewsAccessCheck::access public function A custom access check.
FarmAssetChildrenViewsAccessCheck::__construct public function FarmAssetChildrenViewsAccessCheck constructor.