The Asset Component

The Asset Component

The Asset component manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files.

In the past, it was common for web applications to hardcode URLs of web assets. For example:

  1. <link rel="stylesheet" type="text/css" href="/css/main.css">
  2. <!-- ... -->
  3. <a href="/"><img src="/images/logo.png" alt="logo"></a>

This practice is no longer recommended unless the web application is extremely simple. Hardcoding URLs can be a disadvantage because:

  • Templates get verbose: you have to write the full path for each asset. When using the Asset component, you can group assets in packages to avoid repeating the common part of their path;
  • Versioning is difficult: it has to be custom managed for each application. Adding a version (e.g. main.css?v=5) to the asset URLs is essential for some applications because it allows you to control how the assets are cached. The Asset component allows you to define different versioning strategies for each package;
  • Moving assets’ location is cumbersome and error-prone: it requires you to carefully update the URLs of all assets included in all templates. The Asset component allows to move assets effortlessly just by changing the base path value associated with the package of assets;
  • It’s nearly impossible to use multiple CDNs: this technique requires you to change the URL of the asset randomly for each request. The Asset component provides out-of-the-box support for any number of multiple CDNs, both regular (http://) and secure (https://).

Installation

  1. $ composer require symfony/asset

Note

If you install this component outside of a Symfony application, you must require the vendor/autoload.php file in your code to enable the class autoloading mechanism provided by Composer. Read this article for more details.

Usage

Asset Packages

The Asset component manages assets through packages. A package groups all the assets which share the same properties: versioning strategy, base path, CDN hosts, etc. In the following basic example, a package is created to manage assets without any versioning:

  1. use Symfony\Component\Asset\Package;
  2. use Symfony\Component\Asset\VersionStrategy\EmptyVersionStrategy;
  3. $package = new Package(new EmptyVersionStrategy());
  4. // Absolute path
  5. echo $package->getUrl('/image.png');
  6. // result: /image.png
  7. // Relative path
  8. echo $package->getUrl('image.png');
  9. // result: image.png

Packages implement Symfony\Component\Asset\PackageInterface, which defines the following two methods:

getVersion()

Returns the asset version for an asset.

getUrl()

Returns an absolute or root-relative public path.

With a package, you can:

  1. version the assets;
  2. set a common base path (e.g. /css) for the assets;
  3. configure a CDN for the assets

Versioned Assets

One of the main features of the Asset component is the ability to manage the versioning of the application’s assets. Asset versions are commonly used to control how these assets are cached.

Instead of relying on a simple version mechanism, the Asset component allows you to define advanced versioning strategies via PHP classes. The two built-in strategies are the Symfony\Component\Asset\VersionStrategy\EmptyVersionStrategy, which doesn’t add any version to the asset and Symfony\Component\Asset\VersionStrategy\StaticVersionStrategy, which allows you to set the version with a format string.

In this example, the StaticVersionStrategy is used to append the v1 suffix to any asset path:

  1. use Symfony\Component\Asset\Package;
  2. use Symfony\Component\Asset\VersionStrategy\StaticVersionStrategy;
  3. $package = new Package(new StaticVersionStrategy('v1'));
  4. // Absolute path
  5. echo $package->getUrl('/image.png');
  6. // result: /image.png?v1
  7. // Relative path
  8. echo $package->getUrl('image.png');
  9. // result: image.png?v1

In case you want to modify the version format, pass a sprintf-compatible format string as the second argument of the StaticVersionStrategy constructor:

  1. // puts the 'version' word before the version value
  2. $package = new Package(new StaticVersionStrategy('v1', '%s?version=%s'));
  3. echo $package->getUrl('/image.png');
  4. // result: /image.png?version=v1
  5. // puts the asset version before its path
  6. $package = new Package(new StaticVersionStrategy('v1', '%2$s/%1$s'));
  7. echo $package->getUrl('/image.png');
  8. // result: /v1/image.png
  9. echo $package->getUrl('image.png');
  10. // result: v1/image.png

JSON File Manifest

A popular strategy to manage asset versioning, which is used by tools such as Webpack, is to generate a JSON file mapping all source file names to their corresponding output file:

  1. {
  2. "css/app.css": "build/css/app.b916426ea1d10021f3f17ce8031f93c2.css",
  3. "js/app.js": "build/js/app.13630905267b809161e71d0f8a0c017b.js",
  4. "...": "..."
  5. }

In those cases, use the Symfony\Component\Asset\VersionStrategy\JsonManifestVersionStrategy:

  1. use Symfony\Component\Asset\Package;
  2. use Symfony\Component\Asset\VersionStrategy\JsonManifestVersionStrategy;
  3. // assumes the JSON file above is called "rev-manifest.json"
  4. $package = new Package(new JsonManifestVersionStrategy(__DIR__.'/rev-manifest.json'));
  5. echo $package->getUrl('css/app.css');
  6. // result: build/css/app.b916426ea1d10021f3f17ce8031f93c2.css

Custom Version Strategies

Use the Symfony\Component\Asset\VersionStrategy\VersionStrategyInterface to define your own versioning strategy. For example, your application may need to append the current date to all its web assets in order to bust the cache every day:

  1. use Symfony\Component\Asset\VersionStrategy\VersionStrategyInterface;
  2. class DateVersionStrategy implements VersionStrategyInterface
  3. {
  4. private $version;
  5. public function __construct()
  6. {
  7. $this->version = date('Ymd');
  8. }
  9. public function getVersion($path)
  10. {
  11. return $this->version;
  12. }
  13. public function applyVersion($path)
  14. {
  15. return sprintf('%s?v=%s', $path, $this->getVersion($path));
  16. }
  17. }

Grouped Assets

Often, many assets live under a common path (e.g. /static/images). If that’s your case, replace the default Symfony\Component\Asset\Package class with Symfony\Component\Asset\PathPackage to avoid repeating that path over and over again:

  1. use Symfony\Component\Asset\PathPackage;
  2. // ...
  3. $pathPackage = new PathPackage('/static/images', new StaticVersionStrategy('v1'));
  4. echo $pathPackage->getUrl('logo.png');
  5. // result: /static/images/logo.png?v1
  6. // Base path is ignored when using absolute paths
  7. echo $pathPackage->getUrl('/logo.png');
  8. // result: /logo.png?v1

Request Context Aware Assets

If you are also using the HttpFoundation component in your project (for instance, in a Symfony application), the PathPackage class can take into account the context of the current request:

  1. use Symfony\Component\Asset\Context\RequestStackContext;
  2. use Symfony\Component\Asset\PathPackage;
  3. // ...
  4. $pathPackage = new PathPackage(
  5. '/static/images',
  6. new StaticVersionStrategy('v1'),
  7. new RequestStackContext($requestStack)
  8. );
  9. echo $pathPackage->getUrl('logo.png');
  10. // result: /somewhere/static/images/logo.png?v1
  11. // Both "base path" and "base url" are ignored when using absolute path for asset
  12. echo $pathPackage->getUrl('/logo.png');
  13. // result: /logo.png?v1

Now that the request context is set, the PathPackage will prepend the current request base URL. So, for example, if your entire site is hosted under the /somewhere directory of your web server root directory and the configured base path is /static/images, all paths will be prefixed with /somewhere/static/images.

Absolute Assets and CDNs

Applications that host their assets on different domains and CDNs (Content Delivery Networks) should use the Symfony\Component\Asset\UrlPackage class to generate absolute URLs for their assets:

  1. use Symfony\Component\Asset\UrlPackage;
  2. // ...
  3. $urlPackage = new UrlPackage(
  4. 'http://static.example.com/images/',
  5. new StaticVersionStrategy('v1')
  6. );
  7. echo $urlPackage->getUrl('/logo.png');
  8. // result: http://static.example.com/images/logo.png?v1

You can also pass a schema-agnostic URL:

  1. use Symfony\Component\Asset\UrlPackage;
  2. // ...
  3. $urlPackage = new UrlPackage(
  4. '//static.example.com/images/',
  5. new StaticVersionStrategy('v1')
  6. );
  7. echo $urlPackage->getUrl('/logo.png');
  8. // result: //static.example.com/images/logo.png?v1

This is useful because assets will automatically be requested via HTTPS if a visitor is viewing your site in https. If you want to use this, make sure that your CDN host supports HTTPS.

In case you serve assets from more than one domain to improve application performance, pass an array of URLs as the first argument to the UrlPackage constructor:

  1. use Symfony\Component\Asset\UrlPackage;
  2. // ...
  3. $urls = [
  4. '//static1.example.com/images/',
  5. '//static2.example.com/images/',
  6. ];
  7. $urlPackage = new UrlPackage($urls, new StaticVersionStrategy('v1'));
  8. echo $urlPackage->getUrl('/logo.png');
  9. // result: http://static1.example.com/images/logo.png?v1
  10. echo $urlPackage->getUrl('/icon.png');
  11. // result: http://static2.example.com/images/icon.png?v1

For each asset, one of the URLs will be randomly used. But, the selection is deterministic, meaning that each asset will always be served by the same domain. This behavior simplifies the management of HTTP cache.

Request Context Aware Assets

Similarly to application-relative assets, absolute assets can also take into account the context of the current request. In this case, only the request scheme is considered, in order to select the appropriate base URL (HTTPs or protocol-relative URLs for HTTPs requests, any base URL for HTTP requests):

  1. use Symfony\Component\Asset\Context\RequestStackContext;
  2. use Symfony\Component\Asset\UrlPackage;
  3. // ...
  4. $urlPackage = new UrlPackage(
  5. ['http://example.com/', 'https://example.com/'],
  6. new StaticVersionStrategy('v1'),
  7. new RequestStackContext($requestStack)
  8. );
  9. echo $urlPackage->getUrl('/logo.png');
  10. // assuming the RequestStackContext says that we are on a secure host
  11. // result: https://example.com/logo.png?v1

Named Packages

Applications that manage lots of different assets may need to group them in packages with the same versioning strategy and base path. The Asset component includes a Symfony\Component\Asset\Packages class to simplify management of several packages.

In the following example, all packages use the same versioning strategy, but they all have different base paths:

  1. use Symfony\Component\Asset\Package;
  2. use Symfony\Component\Asset\Packages;
  3. use Symfony\Component\Asset\PathPackage;
  4. use Symfony\Component\Asset\UrlPackage;
  5. // ...
  6. $versionStrategy = new StaticVersionStrategy('v1');
  7. $defaultPackage = new Package($versionStrategy);
  8. $namedPackages = [
  9. 'img' => new UrlPackage('http://img.example.com/', $versionStrategy),
  10. 'doc' => new PathPackage('/somewhere/deep/for/documents', $versionStrategy),
  11. ];
  12. $packages = new Packages($defaultPackage, $namedPackages);

The Packages class allows to define a default package, which will be applied to assets that don’t define the name of package to use. In addition, this application defines a package named img to serve images from an external domain and a doc package to avoid repeating long paths when linking to a document inside a template:

  1. echo $packages->getUrl('/main.css');
  2. // result: /main.css?v1
  3. echo $packages->getUrl('/logo.png', 'img');
  4. // result: http://img.example.com/logo.png?v1
  5. echo $packages->getUrl('resume.pdf', 'doc');
  6. // result: /somewhere/deep/for/documents/resume.pdf?v1

Local Files and Other Protocols

In addition to HTTP this component supports other protocols (such as file:// and ftp://). This allows for example to serve local files in order to improve performance:

  1. use Symfony\Component\Asset\UrlPackage;
  2. // ...
  3. $localPackage = new UrlPackage(
  4. 'file:///path/to/images/',
  5. new EmptyVersionStrategy()
  6. );
  7. $ftpPackage = new UrlPackage(
  8. 'ftp://example.com/images/',
  9. new EmptyVersionStrategy()
  10. );
  11. echo $localPackage->getUrl('/logo.png');
  12. // result: file:///path/to/images/logo.png
  13. echo $ftpPackage->getUrl('/logo.png');
  14. // result: ftp://example.com/images/logo.png

Learn more

This work, including the code samples, is licensed under a Creative Commons BY-SA 3.0 license.