Git Product home page Git Product logo

Comments (5)

cordoval avatar cordoval commented on August 24, 2024

currently, does the twig extension gets loaded all the time?

from nelmiosecuritybundle.

sstok avatar sstok commented on August 24, 2024

@cordoval Yes it does. Looking at the current implementation, it's possible to change this.

The ShaComputer is injected so you can pre-compute the hash if the content is static text.
So you would have to remove this optimization (although this dependency is not to heavy).

The ContentSecurityPolicyListener can easily be loaded using a RuntimeLoader, make the Function require the Twig context so you can access the RuntimeLoaders and no need for a custom Node 👍

public function getFunctions()
{
    return array(
        new \Twig_SimpleFunction('csp_nonce', array($this, 'getCSPNonce'), , array('needs_environment' => true)),
    );
}

public function getCSPNonce(Twig_Environment $env, $usage = null)
{
    // This requires a runtime-loader is registered for the provided class
    $listener = $env->getRuntime('ContentSecurityPolicyListenerNelmio\SecurityBundle\EventListener\ContentSecurityPolicyListener');

    if (null === $nonce = $this->listener->getNonce($usage)) {
        throw new \RuntimeException('You must enable nonce to use this feature');
    }
    
    return $nonce;
}

from nelmiosecuritybundle.

stof avatar stof commented on August 24, 2024

Well, it would be much better to move the definition of getCSPNonce to a runtime class instead, and let Twig compile the call to the function to use this runtime, instead of using $env->getRuntime yourselves in the extension method (which is not the intended way to use this feature).

The ShaComputer is indeed not a heavy dependency, so it may not be worth avoiding its instantiation at the cost of removing an optimization.

from nelmiosecuritybundle.

stof avatar stof commented on August 24, 2024

however, note that the listener is a kernel.request and kernel.response listener anyway. So avoiding to instantiate it for the Twig extension may not be worth it. The event dispatcher will instantiate it for all requests anyway (so the benefit would be for the CLI only)

from nelmiosecuritybundle.

franmomu avatar franmomu commented on August 24, 2024

oops, I didn't see this issue when implementing #283, closing since it was moved to a runtime class.

from nelmiosecuritybundle.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.