refactor: Cleanup git state - commit all staged changes
Major refactoring cleanup: - Add new controller architecture (class-controller-*.php) - Add new settings-v2 UI (views/settings-v2/) - Add new CSS architecture (agentic-sidebar.css, tokens) - Add esbuild build pipeline (scripts/build.js, package.json) - Add composer dependencies (vendor/) - Add frontend src directory (assets/js/src/index.jsx) - Add documentation files - Remove old/obsolete files (class-settings.php, old CSS) This commits all pending changes from previous refactoring efforts.
This commit is contained in:
135
vendor/symfony/html-sanitizer/HtmlSanitizer.php
vendored
Normal file
135
vendor/symfony/html-sanitizer/HtmlSanitizer.php
vendored
Normal file
@@ -0,0 +1,135 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Component\HtmlSanitizer;
|
||||
|
||||
use Symfony\Component\HtmlSanitizer\Parser\NativeParser;
|
||||
use Symfony\Component\HtmlSanitizer\Parser\ParserInterface;
|
||||
use Symfony\Component\HtmlSanitizer\Reference\W3CReference;
|
||||
use Symfony\Component\HtmlSanitizer\TextSanitizer\StringSanitizer;
|
||||
use Symfony\Component\HtmlSanitizer\Visitor\DomVisitor;
|
||||
|
||||
/**
|
||||
* @author Titouan Galopin <galopintitouan@gmail.com>
|
||||
*/
|
||||
final class HtmlSanitizer implements HtmlSanitizerInterface
|
||||
{
|
||||
private ParserInterface $parser;
|
||||
|
||||
/**
|
||||
* @var array<string, DomVisitor>
|
||||
*/
|
||||
private array $domVisitors = [];
|
||||
|
||||
public function __construct(
|
||||
private HtmlSanitizerConfig $config,
|
||||
?ParserInterface $parser = null,
|
||||
) {
|
||||
$this->parser = $parser ?? new NativeParser();
|
||||
}
|
||||
|
||||
public function sanitize(string $input): string
|
||||
{
|
||||
return $this->sanitizeFor(W3CReference::CONTEXT_BODY, $input);
|
||||
}
|
||||
|
||||
public function sanitizeFor(string $element, string $input): string
|
||||
{
|
||||
$element = StringSanitizer::htmlLower($element);
|
||||
$context = W3CReference::CONTEXTS_MAP[$element] ?? W3CReference::CONTEXT_BODY;
|
||||
$element = isset(W3CReference::BODY_ELEMENTS[$element]) ? $element : $context;
|
||||
|
||||
// Prevent DOS attack induced by extremely long HTML strings
|
||||
if (-1 !== $this->config->getMaxInputLength() && \strlen($input) > $this->config->getMaxInputLength()) {
|
||||
$input = substr($input, 0, $this->config->getMaxInputLength());
|
||||
}
|
||||
|
||||
// Text context: early return with HTML encoding
|
||||
if (W3CReference::CONTEXT_TEXT === $context) {
|
||||
return StringSanitizer::encodeHtmlEntities($input);
|
||||
}
|
||||
|
||||
// Other context: build a DOM visitor
|
||||
$this->domVisitors[$context] ??= $this->createDomVisitorForContext($context);
|
||||
|
||||
// Only operate on valid UTF-8 strings. This is necessary to prevent cross
|
||||
// site scripting issues on Internet Explorer 6. Idea from Drupal (filter_xss).
|
||||
if (!$this->isValidUtf8($input)) {
|
||||
return '';
|
||||
}
|
||||
|
||||
// Remove NULL character and HTML entities for null byte
|
||||
$input = str_replace(\chr(0), '<27>', $input);
|
||||
|
||||
// Parse as HTML
|
||||
if ('' === trim($input) || !$parsed = $this->parser->parse($input, $element)) {
|
||||
return '';
|
||||
}
|
||||
|
||||
// Visit the DOM tree and render the sanitized nodes
|
||||
return $this->domVisitors[$context]->visit($parsed)?->render() ?? '';
|
||||
}
|
||||
|
||||
private function isValidUtf8(string $html): bool
|
||||
{
|
||||
// preg_match() fails silently on strings containing invalid UTF-8.
|
||||
return '' === $html || preg_match('//u', $html);
|
||||
}
|
||||
|
||||
private function createDomVisitorForContext(string $context): DomVisitor
|
||||
{
|
||||
$elementsConfig = [];
|
||||
|
||||
// Head: only a few elements are allowed
|
||||
if (W3CReference::CONTEXT_HEAD === $context) {
|
||||
foreach ($this->config->getAllowedElements() as $allowedElement => $allowedAttributes) {
|
||||
if (\array_key_exists($allowedElement, W3CReference::HEAD_ELEMENTS)) {
|
||||
$elementsConfig[$allowedElement] = $allowedAttributes;
|
||||
}
|
||||
}
|
||||
|
||||
foreach ($this->config->getBlockedElements() as $blockedElement => $v) {
|
||||
if (\array_key_exists($blockedElement, W3CReference::HEAD_ELEMENTS)) {
|
||||
$elementsConfig[$blockedElement] = HtmlSanitizerAction::Block;
|
||||
}
|
||||
}
|
||||
|
||||
foreach ($this->config->getDroppedElements() as $droppedElement => $v) {
|
||||
if (\array_key_exists($droppedElement, W3CReference::HEAD_ELEMENTS)) {
|
||||
$elementsConfig[$droppedElement] = HtmlSanitizerAction::Drop;
|
||||
}
|
||||
}
|
||||
|
||||
return new DomVisitor($this->config, $elementsConfig);
|
||||
}
|
||||
|
||||
// Body: allow any configured element that isn't in <head>
|
||||
foreach ($this->config->getAllowedElements() as $allowedElement => $allowedAttributes) {
|
||||
if (!\array_key_exists($allowedElement, W3CReference::HEAD_ELEMENTS)) {
|
||||
$elementsConfig[$allowedElement] = $allowedAttributes;
|
||||
}
|
||||
}
|
||||
|
||||
foreach ($this->config->getBlockedElements() as $blockedElement => $v) {
|
||||
if (!\array_key_exists($blockedElement, W3CReference::HEAD_ELEMENTS)) {
|
||||
$elementsConfig[$blockedElement] = HtmlSanitizerAction::Block;
|
||||
}
|
||||
}
|
||||
|
||||
foreach ($this->config->getDroppedElements() as $droppedElement => $v) {
|
||||
if (!\array_key_exists($droppedElement, W3CReference::HEAD_ELEMENTS)) {
|
||||
$elementsConfig[$droppedElement] = HtmlSanitizerAction::Drop;
|
||||
}
|
||||
}
|
||||
|
||||
return new DomVisitor($this->config, $elementsConfig);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user