Symfony2资产按文件版本控制

时间:2013-07-22 18:52:35

标签: php caching symfony twig assets

问题

Symfony2是否可以按文件使用 assets_version

背景

我们正在使用assets_version和assets_version_format来管理文件版本并强制在CDN和浏览器缓存上进行缓存更新。

这就像魅力!,但是,我们发现所使用的所有静态资源只有一个assets_version参数。

这是一个问题,因为我们的webapp,有大量的静态资源,我们每天都在对prod环境进行更改。这种情况会杀死缓存。 :(

这是我们当前的配置:

config.yml

framework:

    templating:
        engines: ['twig']
        assets_version: %assets_version%
        assets_version_format:  "stv%%2$s/%%1$s"

# Assetic Configuration
assetic:
    debug:          %kernel.debug%
    use_controller: false
    # java: /usr/bin/java
    filters:
         cssrewrite: ~
         closure:
             jar: %kernel.root_dir%/java/compiler.jar
         yui_css:
             jar: %kernel.root_dir%/java/yuicompressor-2.4.6.jar

sometemplate.html.twig

    {% stylesheets 'bundles/webapp/css/funCommon.css'
                       'bundles/webapp/css/funMobile.css'
                       filter='?yui_css'
        %}
        <link rel=stylesheet href='{{ asset_url }}'>
        {% endstylesheets %}

    {% javascripts 'bundles/webapp/js/app.js'
                   'bundles/webapp/js/utils.js'
                    filter='?closure'  %}
        <script src="{{ asset_url }}"></script>
        {% endjavascripts %}

{% javascripts 'bundles/webapp/js/moduleX.js'
                   'bundles/webapp/js/utilsX.js'
                    filter='?closure'  %}
        <script src="{{ asset_url }}"></script>
        {% endjavascripts %}

当我更改任何 css文件或模块JS或任何其他文件时,所有路径都已更改

我想通过javascript / stylesheet twig标签的参数来管理assets_version_format的版本参数。

这就是我要找的东西:

{% javascripts 'bundles/webapp/js/app.js'
               'bundles/webapp/js/utils.js'
                filter='?closure' **version='XX'** %}
    <script src="{{ asset_url }}"></script>
    {% endjavascripts %}

4 个答案:

答案 0 :(得分:17)

经过多天搜索,我在AsseticBundle上找到了 选项

http://symfony.com/doc/2.0/reference/configuration/framework.html#full-default-configuration

使用该配置选项我可以这样做:

{% javascripts file package='packageName' %}

{{asset(file,packageName)}}

示例:

config.yml

framework:

    templating:
        engines: ['twig']
        assets_version: %assets_version%
        assets_version_format:  "stv%%2$s/%%1$s"
        packages:
             css:
                version: 6.1
                version_format: "stv%%2$s/%%1$s"
             jsApp:
                version: 4.2
                version_format: "stv%%2$s/%%1$s"

sometemplate.html.twig

<link rel=stylesheet href='{{ asset('bundles/webapp/css/funCommon.css','css') }}'>

{% javascripts 'bundles/webapp/js/app.js'
               'bundles/webapp/js/utils.js'
                filter='?closure'
                package='jsApp'
 %}
    <script src="{{ asset_url }}"></script>
 {% endjavascripts %}

这个输出是:

<link rel=stylesheet href="http://static.domain.com/stv6.1/css/HASH.css">

<script src="http://static.domain.com/stv4.2/js/HASH.js"></script>

对我而言,这是按文件管理资产的最简单方法。

答案 1 :(得分:4)

如果您尝试将 assets_version 参数与 javascripts 样式表帮助器一起使用,则仍需要使用资产帮助。

{% javascripts 'bundles/webapp/app.js'
               'bundles/webapp/utils.js'
               filter='?closure' %}
    <script src="{{ asset(asset_url) }}" type="text/javascript"></script>
{% endjavascripts %}

它不会自动添加到 asset_url (这是一件好事)。

答案 2 :(得分:3)

简单快捷的解决方法是这样的:

{% set asset_version = 'xyz' %}

{% javascripts 'bundles/webapp/js/app.js'
           'bundles/webapp/js/utils.js'
            filter='?closure' %}
    <script src="{{ asset_url }}?{{ asset_version }}"></script>
{% endjavascripts %}

但您可能希望将逻辑移动到接收asset_url作为参数的twig扩展名。

正常的过程是生成文件的哈希值,然后存储在用户缓存中。

然后,您可以在自定义命令中将所有哈希值与当前哈希值进行比较,并将最新的哈希值或其他内容附加到文件名以强制缓存更新。

答案 3 :(得分:0)

以下解决方案将附加时间戳而不是版本号。重要的是,他的时间戳只会在您清除缓存时发生变化。

首先创建一个编译器传递:

<?php

namespace App\Bundle\DependencyInjection\Compiler;

use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\DefinitionDecorator;

/**
 * Created by PhpStorm.
 * User: hpenny
 * Date: 15/03/17
 * Time: 2:33 PM
 */
class AssetCompilerPass implements CompilerPassInterface
{
    /**
     * You can modify the container here before it is dumped to PHP code.
     *
     * @param ContainerBuilder $container
     */
    public function process(ContainerBuilder $container)
    {
        $container->removeDefinition('assets._version__default');
        $decorator = new DefinitionDecorator('assets.static_version_strategy');
        $decorator->replaceArgument(0, time());
        $container->setDefinition('assets._version__default', $decorator);
    }
}

然后将其添加到主包中:

namespace App\Bundle;

use App\Bundle\DependencyInjection\Compiler\AssetCompilerPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;

class AppBundle extends Bundle
{
    public function build(ContainerBuilder $container)
    {
        parent::build($container);

        $container->addCompilerPass(new AssetCompilerPass());
    }
}

这仅适用于默认资产包。 如果您正在使用该功能,则需要遍历已设置的不同包定义。

您需要替换assets._version_<package name>而不是assets._version__default