0

我想创建一个 Twig 扩展并使用它:

{{ new_func(route-name) }}

做同样的事情:

{{ render_esi(url(route-name)) }}

...但有一些调整

它几乎完成了,但需要更改的是这一行,但我看不出如何从这段代码中调用 ESI(在 Twig 之外):

return $environment->render($route);   /// needs to receive route and render an ESI

-

namespace Acme\Bundle\MyBundle\Twig;

class NewTwigFunction extends \Twig_Extension
{

    private $request;

    public function __construct($container)
    {
        $this->request = $container->get('request');
    }

    public function getFunctions() {

        return array(
            'new_func' => new \Twig_Function_Method($this, 'newFunction', array('needs_environment' => true) )
        );

    }

    public function newFunction(\Twig_Environment $environment, $route) {

        $r = $this->request;

        return $environment->render($route);

    }

    public function getName() {

        return "new_func";

    }

 }
4

1 回答 1

11

我不确定我是否理解你为什么需要这个,但我认为这是一个抽象问题的例子:

如何追踪和扩展 Symfony2 的核心功能?

寻找功能

似乎您无法找到render_esi执行的位置,所以让我们解决这个问题!

这似乎不是一个标准的 Twig 功能,所以它必须是一个扩展,就像你正在创建的一样。

它应该位于 Symfony2 核心文件中的某个位置,所以我们开始查看vendor/symfony/src文件夹。因为我们已经知道我们正在处理 Twig 的扩展,Component所以文件夹是不可能的(因为 Twig 是一个独立于 Symfony2 核心组件的库)。

所以我们把它缩小到BridgeBundle。如果我们查看它们的内部,那么我们会看到Bundle/TwigBundleor Bridge/Twig。我们也知道 Symfony2 开发人员遵循严格的代码/架构风格,所以我们确切地知道要查找哪个文件夹 - Extension。现在只需检查它们。

长话短说,我们在 中找到了我们正在寻找的东西vendor/symfony/src/Symfony/Bridge/Twig/Extension/HttpKernelExtension,我们看到了一个render_*函数。大奖!

扩展功能

在更改任何内容之前,我们需要先模拟已经存在的内容,因此我们创建如下内容:

use Symfony\Component\HttpKernel\Fragment\FragmentHandler;

class NewTwigFunction extends \Twig_Extension
{
    private $handler;

    public function __construct(FragmentHandler $handler)
    {
        $this->handler = $handler;
    }

    public function getFunctions() 
    {
        return array(
            'new_func' => new \Twig_Function_Method($this, 'newFunction', array('is_safe' => array('html')) )
        );
    }

    public function newFunction($uri, $options = array()) 
    {
        return $this->handler->render($uri, 'esi', $options);
    }

    public function getName() 
    {
        return "new_func";
    }

 }

现在当你打电话

{{ new_func(url(route-name)) }}

你应该看到与

{{ render_esi(url(route-name)) }}

但是我们仍然需要摆脱这url部分。很简单,我们只需将router服务添加到我们的扩展程序中!现在我们的扩展看起来像这样:

use Symfony\Component\Routing\Router;
use Symfony\Component\HttpKernel\Fragment\FragmentHandler;

class NewTwigFunction extends \Twig_Extension
{
    private $handler;
    private $router;

    public function __construct(FragmentHandler $handler, Router $router)
    {
        $this->handler = $handler;
        $this->router  = $router;
    }

    public function getFunctions() 
    {
        return array(
            'new_func' => new \Twig_Function_Method($this, 'newFunction', array('is_safe' => array('html')) )
        );
    }

    public function newFunction($routeName, $options = array()) 
    {
        $uri = $this->router->generate($routeName);

        return $this->handler->render($uri, 'esi', $options);
    }

    public function getName() 
    {
        return "new_func";
    }

 }

并且{{ new_func(route-name) }}应该按预期工作。

夹在中间

按照我的理解,您需要与 几乎相同的功能render_esi,但对输出稍作更改。所以这意味着我们需要在 和 之间的某个地方return挂钩$this->handler->render($uri, $strategy, $options);

我们需要走多深的兔子洞取决于变化。

例如,如果您想在Response对象变成实际对象之前对其进行更改,则html string需要首先找到它被转换的位置。一个不错的选择是调查FragmentHandler

protected function deliver(Response $response)
{
    if (!$response->isSuccessful()) {
        throw new \RuntimeException(sprintf('Error when rendering "%s" (Status code is %s).', $this->request->getUri(), $response->getStatusCode()));
    }

    if (!$response instanceof StreamedResponse) {
        return $response->getContent();
    }

    $response->sendContent();
}

知道了!现在你只需要扩展FragmentHandler::deliver()并将它的实现传递到你的树枝扩展中。

跟踪配置

你要明白,Symfony2 的核心代码和你在日常生活中写的并没有什么不同,它仍然遵守自己的规则。

例如,通常在 Symfony2 中创建 Twig 扩展时,您需要将其配置为服务,对吗?好吧,Symfony2 核心扩展的配置方式相同。您只需要找到配置文件所在的位置。

遵循扩展功能中的逻辑,我们确定它们不位于Component. Bridge实际上是设计模式的名称- 不是您放置服务配置的地方:)

所以我们只剩下Bundle- 显然这就是我们找到我们需要的所有信息的地方:vendor/symfony/src/Bundle/TwigBundle/Resources/config/twig.xml

现在我们简单地查看一下 originalHttpKernelExtension是如何配置的并遵循它的引导:

    <service id="twig.extension.httpkernel" class="%twig.extension.httpkernel.class%" public="false">
        <argument type="service" id="fragment.handler" />
    </service>

将其转换为更常用的.yml格式,我们的扩展配置可能如下所示:

new_func:
    class: Acme\Bundle\MyBundle\Twig\NewTwigFunction
    arguments:
        - "@fragment.handler"
        # Uncomment when implementing code from 2nd example
        # - "@router"
    tags:
        - { name: twig.extension }
    public: false
于 2013-06-06T08:34:10.393 回答