2017 © Pedro Peláez
 

symfony-bundle twig-sandbox-bundle

Annotation configuration of the allowed methods and properties for Twig_Sandbox extension

image

intaro/twig-sandbox-bundle

Annotation configuration of the allowed methods and properties for Twig_Sandbox extension

  • Wednesday, April 18, 2018
  • by muxx
  • Repository
  • 3 Watchers
  • 2 Stars
  • 16,219 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 4 Forks
  • 0 Open issues
  • 7 Versions
  • 7 % Grown

The README.md

TwigSandboxBundle

CI, (*1)

There is Twig-extension Sandbox which can be used to evaluate untrusted code and where access to unsafe properties and methods is prohibited. This bundle allows to configure security policy for sandbox., (*2)

Installation

TwigSandboxBundle requires Symfony 6.0 or higher., (*3)

Install the bundle:, (*4)

$ composer require intaro/twig-sandbox-bundle

Register the bundle in config/bundles.php:, (*5)

return [
    // ...
    Intaro\TwigSandboxBundle\IntaroTwigSandboxBundle::class => ['all' => true],
];

Usage

Define allowed properties and methods for your entities using attribute #[Sandbox]. Optionally you can add type option for attribute (for example #[Sandbox(type: 'int')]). This option defines type of value that property stores or method returns., (*6)

In your application you can use annotation reader to extract value of type option and use this value to perform additional checks or any other actions, for example, use twig filters according to value of the option., (*7)

<?php
// Acme/DemoBundle/Entity/Product.php

namespace Acme\DemoBundle\Entity;

use Doctrine\ORM\Mapping as ORM;
use Intaro\TwigSandboxBundle\Annotation\Sandbox;

 #[ORM\Table]
 #[ORM\Entity]
class Product
{
    #[ORM\Column(name: 'id', type: 'integer')]
    #[ORM\Id]
    #[ORM\GeneratedValue(strategy: "AUTO")]
    private ?int $id = null;

    #[ORM\Column(name: 'name', type: 'string', length: 255)]
    #[Sandbox(type: 'string')]
    private string $name = '';

    #[ORM\Column(name: 'quantity', type: 'integer', nullable: true)]
    private ?int $quantity = null;


    #[Sandbox(type: 'int')]
    public function getId(): ?int
    {
        return $this->id;
    }

    public function setName(string $name): self
    {
        $this->name = $name;

        return $this;
    }

    #[Sandbox]
    public function getName(): string
    {
        return $this->name;
    }

    public function setQuantity(?int $quantity): self
    {
        $this->quantity = $quantity;

        return $this;
    }

    public function getQuantity(): ?int
    {
        return $this->quantity;
    }
}

And use sandbox environment., (*8)


use Acme\DemoBundle\Entity\Product; use Intaro\TwigSandboxBundle\Builder\EnvironmentBuilder; class Example { private EnvironmentBuilder $environmentBuilder; public function __construct(EnvironmentBuilder $environmentBuilder) { $this->environmentBuilder = $environmentBuilder; } $twig = $this->environmentBuilder->getSandboxEnvironment(); $product = new Product(); $product->setName('Product 1'); $product->setQuantity(5); // successful render $html1 = $twig->render( 'Product {{ product.name }}', ['product' => $product] ); // render with the exception on access to the quantity method $html2 = $twig->render( 'Product {{ product.name }} in the quantity {{ product.quantity }}', ['product' => $product] ); }

Validation

You can validate entity fields which contain twig templates with TwigSandbox validator., (*9)

// in Entity/Page.php

use Intaro\TwigSandboxBundle\Validator\Constraints\TwigSandbox;

class Page
{
    //...

    public static function loadValidatorMetadata(ClassMetadata $metadata)
    {
        $metadata->addPropertyConstraint('template', new TwigSandbox());
    }

    //...
}

Configure

Methods and properties

You can define allowed methods and properties of entities with attribute Intaro\TwigSandboxBundle\Attribute\Sandbox. Example above., (*10)

Tags

Default list of the allowed tags:, (*11)

- 'autoescape'
- 'filter'
- 'do'
- 'flush'
- 'for'
- 'set'
- 'verbatium'
- 'if'
- 'spaceless'

You can override list in the parameter intaro.twig_sandbox.policy_tags:, (*12)

# app/config/config.yml

parameters:
    intaro.twig_sandbox.policy_tags:
        - 'do'
        - 'for'
        - 'if'
        - 'spaceless'

Filters

Default list of the allowed filters:, (*13)

- 'abs'
- 'batch'
- 'capitalize'
- 'convert_encoding'
- 'date'
- 'date_modify'
- 'default'
- 'escape'
- 'first'
- 'format'
- 'join'
- 'json_encode'
- 'keys'
- 'last'
- 'length'
- 'lower'
- 'merge'
- 'nl2br'
- 'number_format'
- 'raw'
- 'replace'
- 'reverse'
- 'slice'
- 'sort'
- 'split'
- 'striptags'
- 'title'
- 'trim'
- 'upper'
- 'url_encode'

You can override list in the parameter intaro.twig_sandbox.policy_filters:, (*14)

# app/config/config.yml

parameters:
    intaro.twig_sandbox.policy_filters:
        - 'sort'
        - 'upper'
        - 'sort'

Functions

Default list of the allowed functions:, (*15)

- 'attribute'
- 'constant'
- 'cycle'
- 'date'
- 'random'
- 'range'

You can override list in parameter intaro.twig_sandbox.policy_functions:, (*16)

# app/config/config.yml

parameters:
    intaro.twig_sandbox.policy_functions:
        - 'date'
        - 'range'

Allowed types

Default list of allowed return types:, (*17)

- 'bool'
- 'collection'
- 'date'
- 'float'
- 'int'
- 'object'
- 'string'

You can override list in parameter intaro.twig_sandbox.sandbox_annotation.value_types:, (*18)

# app/config/config.yml

parameters:
    intaro.twig_sandbox.sandbox_annotation.value_types:
        - 'string'
        - 'date'
        - 'collection'
        - 'stdClass'

Environment

You can set twig environment parameters:, (*19)


$twig = $this->get(EnvironmentBuilder::class)->getSandboxEnvironment([ 'strict_variables' => true ]);

Also, you might want to add extensions to your twig environment. Example how to add:, (*20)

// Acme/DemoBundle/AcmeDemoBundle.php
<?php

namespace Acme\DemoBundle;

use Symfony\Component\HttpKernel\Bundle\Bundle;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Acme\DemoBundle\DependencyInjection\Compiler\TwigSandboxPass;

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

        $container->addCompilerPass(new TwigSandboxPass());
    }
}
// Acme/DemoBundle/DependencyInjection/Compiler/TwigSandboxPass.php
<?php

namespace Acme\DemoBundle\DependencyInjection\Compiler;

use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Reference;
use Intaro\TwigSandboxBundle\Builder\EnvironmentBuilder;

class TwigSandboxPass implements CompilerPassInterface
{
    public function process(ContainerBuilder $container)
    {
        if (!$container->hasDefinition(EnvironmentBuilder::class)) {
            return;
        }

        $sandbox = $container->getDefinition(EnvironmentBuilder::class);
        $sandbox->addMethodCall('addExtension', [new Reference('acme_demo.twig_extension')]);
    }
}

Development

Run tests

Install vendors:, (*21)

make vendor

Run php-cs-fixer, phpstan and phpunit:, (*22)

make check

The Versions

18/04 2018

dev-master

9999999-dev

Annotation configuration of the allowed methods and properties for Twig_Sandbox extension

  Sources   Download

MIT

The Requires

 

twig php symfony2 sandbox

18/04 2018

v1.0.0

1.0.0.0

Annotation configuration of the allowed methods and properties for Twig_Sandbox extension

  Sources   Download

MIT

The Requires

 

twig php symfony2 sandbox

10/10 2016

v0.1.4

0.1.4.0

Annotation configuration of the allowed methods and properties for Twig_Sandbox extension

  Sources   Download

MIT

The Requires

 

twig php symfony2 sandbox

14/09 2016

v0.1.3

0.1.3.0

Annotation configuration of the allowed methods and properties for Twig_Sandbox extension

  Sources   Download

MIT

The Requires

 

twig php symfony2 sandbox

16/06 2016

v0.1.2

0.1.2.0

Annotation configuration of the allowed methods and properties for Twig_Sandbox extension

  Sources   Download

MIT

The Requires

 

twig php symfony2 sandbox

09/09 2015

v0.1.1

0.1.1.0

Annotation configuration of the allowed methods and properties for Twig_Sandbox extension

  Sources   Download

MIT

The Requires

 

twig php symfony2 sandbox

23/06 2014

v0.1.0

0.1.0.0

Annotation configuration of the allowed methods and properties for Twig_Sandbox extension

  Sources   Download

MIT

The Requires

 

twig php symfony2 sandbox