-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathPathPackage.php
69 lines (56 loc) · 1.88 KB
/
PathPackage.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Sylius\Bundle\ThemeBundle\Asset\Package;
use Sylius\Bundle\ThemeBundle\Asset\PathResolverInterface;
use Sylius\Bundle\ThemeBundle\Context\ThemeContextInterface;
use Symfony\Component\Asset\Context\ContextInterface;
use Symfony\Component\Asset\PathPackage as BasePathPackage;
use Symfony\Component\Asset\VersionStrategy\VersionStrategyInterface;
/**
* @see BasePathPackage
*/
class PathPackage extends BasePathPackage
{
/** @var ThemeContextInterface */
protected $themeContext;
/** @var PathResolverInterface */
protected $pathResolver;
public function __construct(
string $basePath,
VersionStrategyInterface $versionStrategy,
ThemeContextInterface $themeContext,
PathResolverInterface $pathResolver,
?ContextInterface $context = null
) {
parent::__construct($basePath, $versionStrategy, $context);
$this->themeContext = $themeContext;
$this->pathResolver = $pathResolver;
}
/**
* @param string $path
*/
public function getUrl($path): string
{
if ($this->isAbsoluteUrl($path)) {
return $path;
}
$theme = $this->themeContext->getTheme();
if (null !== $theme) {
$path = $this->pathResolver->resolve($path, $this->getBasePath(), $theme);
}
$versionedPath = $this->getVersionStrategy()->applyVersion($path);
// if absolute or begins with /, we're done
if ($this->isAbsoluteUrl($versionedPath) || ($versionedPath && '/' === $versionedPath[0])) {
return $versionedPath;
}
return $this->getBasePath() . ltrim($versionedPath, '/');
}
}