You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.0 KiB
73 lines
2.0 KiB
<?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]; |
|
} |
|
|
|
}
|
|
|