class RemoteImageStyleRoutes in Remote Stream Wrapper 8
Defines a route subscriber to register a url for serving image styles.
Hierarchy
- class \Drupal\remote_stream_wrapper\Routing\RemoteImageStyleRoutes implements ContainerInjectionInterface
Expanded class hierarchy of RemoteImageStyleRoutes
File
- src/
Routing/ RemoteImageStyleRoutes.php, line 14
Namespace
Drupal\remote_stream_wrapper\RoutingView source
class RemoteImageStyleRoutes implements ContainerInjectionInterface {
/**
* The stream wrapper manager service.
*
* @var \Drupal\Core\StreamWrapper\StreamWrapperManagerInterface
*/
protected $streamWrapperManager;
/**
* The module handler used to check whether the image module exists.
*
* @var \Drupal\Core\Extension\ModuleHandlerInterface
*/
protected $moduleHandler;
/**
* Constructs a new PathProcessorImageStyles object.
*
* @param \Drupal\Core\StreamWrapper\StreamWrapperManagerInterface $stream_wrapper_manager
* The stream wrapper manager service.
* @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
* The module handler.
*/
public function __construct(StreamWrapperManagerInterface $stream_wrapper_manager, ModuleHandlerInterface $module_handler) {
$this->streamWrapperManager = $stream_wrapper_manager;
$this->moduleHandler = $module_handler;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container) {
return new static($container
->get('stream_wrapper_manager'), $container
->get('module_handler'));
}
/**
* Returns an array of route objects.
*
* @return \Symfony\Component\Routing\Route[]
* An array of route objects.
*/
public function routes() {
$routes = [];
// This functionality relies on image module being installed.
if (!$this->moduleHandler
->moduleExists('image')) {
return $routes;
}
// Calling getWrappers() here returns an empty array here. Calling the
// register method seems to resolve it.
if (method_exists($this->streamWrapperManager, 'register')) {
$this->streamWrapperManager
->register();
}
// @todo Use the default scheme instead of hard-coding to public.
$public_directory_path = $this->streamWrapperManager
->getViaScheme('public')
->getDirectoryPath();
// Find all remote stream wrappers.
$wrappers = $this->streamWrapperManager
->getWrappers();
$remote_wrappers = array_filter($wrappers, function ($wrapper) {
return file_is_wrapper_remote($wrapper['class']);
});
$remote_schemes = array_keys($remote_wrappers);
foreach ($remote_schemes as $scheme) {
// Manually specify the scheme so that the route is preferred over the
// image.style_public route.
$routes['image.style_' . $scheme] = new Route('/' . $public_directory_path . '/styles/{image_style}/' . $scheme, [
'_controller' => 'Drupal\\remote_stream_wrapper\\Controller\\RemoteImageStyleDownloadController::deliver',
'scheme' => $scheme,
'_disable_route_normalizer' => TRUE,
], [
'_access' => 'TRUE',
]);
}
return $routes;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
RemoteImageStyleRoutes:: |
protected | property | The module handler used to check whether the image module exists. | |
RemoteImageStyleRoutes:: |
protected | property | The stream wrapper manager service. | |
RemoteImageStyleRoutes:: |
public static | function |
Instantiates a new instance of this class. Overrides ContainerInjectionInterface:: |
|
RemoteImageStyleRoutes:: |
public | function | Returns an array of route objects. | |
RemoteImageStyleRoutes:: |
public | function | Constructs a new PathProcessorImageStyles object. |