file_encrypt-8.x-1.x-dev/src/PathProcessor/PathProcessorFiles.php
src/PathProcessor/PathProcessorFiles.php
<?php
namespace Drupal\file_encrypt\PathProcessor;
use Drupal\Core\PathProcessor\InboundPathProcessorInterface;
use Symfony\Component\HttpFoundation\Request;
/**
* Defines a path processor to rewrite file URLs.
*
* As the route system does not allow arbitrary amount of parameters convert
* the file path to a query parameter on the request.
*/
class PathProcessorFiles implements InboundPathProcessorInterface {
/**
* {@inheritdoc}
*/
public function processInbound($path, Request $request) {
if (strpos($path, '/encrypt/files/') === 0 && !$request->query->has('file')) {
$file_path = preg_replace('|^\/encrypt\/files\/|', '', $path);
$request->query->set('file', $file_path);
return '/encrypt/files';
}
return $path;
}
}
