|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Drupal\islandora\ContextProvider;
|
|
|
|
|
|
|
|
use Drupal\Core\Cache\CacheableMetadata;
|
|
|
|
use Drupal\Core\Plugin\Context\Context;
|
|
|
|
use Drupal\Core\Plugin\Context\ContextProviderInterface;
|
|
|
|
use Drupal\Core\Plugin\Context\EntityContext;
|
|
|
|
use Drupal\Core\Plugin\Context\EntityContextDefinition;
|
|
|
|
use Drupal\Core\Routing\RouteMatchInterface;
|
|
|
|
use Drupal\Core\StringTranslation\StringTranslationTrait;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the current file as a context on file routes.
|
|
|
|
*/
|
|
|
|
class FileRouteContextProvider implements ContextProviderInterface {
|
|
|
|
|
|
|
|
use StringTranslationTrait;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The route match object.
|
|
|
|
*
|
|
|
|
* @var \Drupal\Core\Routing\RouteMatchInterface
|
|
|
|
*/
|
|
|
|
protected $routeMatch;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructs a new FileRouteContextProvider.
|
|
|
|
*
|
|
|
|
* @param \Drupal\Core\Routing\RouteMatchInterface $route_match
|
|
|
|
* The route match object.
|
|
|
|
*/
|
|
|
|
public function __construct(RouteMatchInterface $route_match) {
|
|
|
|
$this->routeMatch = $route_match;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function getRuntimeContexts(array $unqualified_context_ids) {
|
|
|
|
$context_definition = EntityContextDefinition::fromEntityTypeId('file')->setLabel(NULL)->setRequired(FALSE);
|
|
|
|
|
|
|
|
$value = NULL;
|
|
|
|
|
|
|
|
// Hack the file out of the route.
|
|
|
|
$route_object = $this->routeMatch->getRouteObject();
|
|
|
|
if ($route_object) {
|
|
|
|
$route_contexts = $route_object->getOption('parameters');
|
|
|
|
if ($route_contexts && isset($route_contexts['file'])) {
|
|
|
|
$file = $this->routeMatch->getParameter('file');
|
|
|
|
if ($file) {
|
|
|
|
$value = $file;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$cacheability = new CacheableMetadata();
|
|
|
|
$cacheability->setCacheContexts(['route']);
|
|
|
|
|
|
|
|
$context = new Context($context_definition, $value);
|
|
|
|
$context->addCacheableDependency($cacheability);
|
|
|
|
return ['file' => $context];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function getAvailableContexts() {
|
|
|
|
$context = EntityContext::fromEntityTypeId('file', $this->t('File from URL'));
|
|
|
|
return ['file' => $context];
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|