You are here

public function PathProcessorImageStyles::processInbound in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/image/src/PathProcessor/PathProcessorImageStyles.php \Drupal\image\PathProcessor\PathProcessorImageStyles::processInbound()

Processes the inbound path.

Implementations may make changes to the request object passed in but should avoid all other side effects. This method can be called to process requests other than the current request.

Parameters

string $path: The path to process, with a leading slash.

\Symfony\Component\HttpFoundation\Request $request: The HttpRequest object representing the request to process. Note, if this method is being called via the path_processor_manager service and is not part of routing, the current request object must be cloned before being passed in.

Return value

string The processed path.

Overrides InboundPathProcessorInterface::processInbound

File

core/modules/image/src/PathProcessor/PathProcessorImageStyles.php, line 46

Class

PathProcessorImageStyles
Defines a path processor to rewrite image styles URLs.

Namespace

Drupal\image\PathProcessor

Code

public function processInbound($path, Request $request) {
  $directory_path = $this->streamWrapperManager
    ->getViaScheme('public')
    ->getDirectoryPath();
  if (strpos($path, '/' . $directory_path . '/styles/') === 0) {
    $path_prefix = '/' . $directory_path . '/styles/';
  }
  elseif (strpos($path, '/system/files/styles/') !== FALSE) {
    $path_prefix = '/system/files/styles/';
    $path = substr($path, strpos($path, $path_prefix), strlen($path));
  }
  else {
    return $path;
  }

  // Strip out path prefix.
  $rest = preg_replace('|^' . preg_quote($path_prefix, '|') . '|', '', $path);

  // Get the image style, scheme and path.
  if (substr_count($rest, '/') >= 2) {
    list($image_style, $scheme, $file) = explode('/', $rest, 3);

    // Set the file as query parameter.
    $request->query
      ->set('file', $file);
    return $path_prefix . $image_style . '/' . $scheme;
  }
  else {
    return $path;
  }
}