1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-12-19 10:55:56 +01:00
vichan/inc/lib/Twig/NodeVisitor/Sandbox.php

83 lines
2.5 KiB
PHP
Raw Normal View History

2011-10-05 06:22:53 +02:00
<?php
/*
* This file is part of Twig.
*
2018-05-10 12:24:53 +02:00
* (c) Fabien Potencier
2011-10-05 06:22:53 +02:00
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Twig_NodeVisitor_Sandbox implements sandboxing.
*
2018-05-10 12:24:53 +02:00
* @final
*
2013-08-01 21:20:12 +02:00
* @author Fabien Potencier <fabien@symfony.com>
2011-10-05 06:22:53 +02:00
*/
2018-05-10 12:24:53 +02:00
class Twig_NodeVisitor_Sandbox extends Twig_BaseNodeVisitor
2011-10-05 06:22:53 +02:00
{
protected $inAModule = false;
protected $tags;
protected $filters;
protected $functions;
2018-05-10 12:24:53 +02:00
protected function doEnterNode(Twig_Node $node, Twig_Environment $env)
2011-10-05 06:22:53 +02:00
{
if ($node instanceof Twig_Node_Module) {
$this->inAModule = true;
$this->tags = array();
$this->filters = array();
$this->functions = array();
return $node;
} elseif ($this->inAModule) {
// look for tags
2018-05-10 12:24:53 +02:00
if ($node->getNodeTag() && !isset($this->tags[$node->getNodeTag()])) {
$this->tags[$node->getNodeTag()] = $node;
2011-10-05 06:22:53 +02:00
}
// look for filters
2018-05-10 12:24:53 +02:00
if ($node instanceof Twig_Node_Expression_Filter && !isset($this->filters[$node->getNode('filter')->getAttribute('value')])) {
$this->filters[$node->getNode('filter')->getAttribute('value')] = $node;
2011-10-05 06:22:53 +02:00
}
// look for functions
2018-05-10 12:24:53 +02:00
if ($node instanceof Twig_Node_Expression_Function && !isset($this->functions[$node->getAttribute('name')])) {
$this->functions[$node->getAttribute('name')] = $node;
}
// the .. operator is equivalent to the range() function
if ($node instanceof Twig_Node_Expression_Binary_Range && !isset($this->functions['range'])) {
$this->functions['range'] = $node;
2011-10-05 06:22:53 +02:00
}
// wrap print to check __toString() calls
if ($node instanceof Twig_Node_Print) {
2018-05-10 12:24:53 +02:00
return new Twig_Node_SandboxedPrint($node->getNode('expr'), $node->getTemplateLine(), $node->getNodeTag());
2011-10-05 06:22:53 +02:00
}
}
return $node;
}
2018-05-10 12:24:53 +02:00
protected function doLeaveNode(Twig_Node $node, Twig_Environment $env)
2011-10-05 06:22:53 +02:00
{
if ($node instanceof Twig_Node_Module) {
$this->inAModule = false;
2018-05-10 12:24:53 +02:00
$node->setNode('display_start', new Twig_Node(array(new Twig_Node_CheckSecurity($this->filters, $this->tags, $this->functions), $node->getNode('display_start'))));
2011-10-05 06:22:53 +02:00
}
return $node;
}
public function getPriority()
{
return 0;
}
}
2018-05-10 12:24:53 +02:00
class_alias('Twig_NodeVisitor_Sandbox', 'Twig\NodeVisitor\SandboxNodeVisitor', false);