HashHandler.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\CssSelector\Parser\Handler;
  11. use Symfony\Component\CssSelector\Parser\Reader;
  12. use Symfony\Component\CssSelector\Parser\Token;
  13. use Symfony\Component\CssSelector\Parser\Tokenizer\TokenizerEscaping;
  14. use Symfony\Component\CssSelector\Parser\Tokenizer\TokenizerPatterns;
  15. use Symfony\Component\CssSelector\Parser\TokenStream;
  16. /**
  17. * CSS selector comment handler.
  18. *
  19. * This component is a port of the Python cssselect library,
  20. * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
  21. *
  22. * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
  23. *
  24. * @internal
  25. */
  26. class HashHandler implements HandlerInterface
  27. {
  28. public function __construct(
  29. private TokenizerPatterns $patterns,
  30. private TokenizerEscaping $escaping,
  31. ) {
  32. }
  33. public function handle(Reader $reader, TokenStream $stream): bool
  34. {
  35. $match = $reader->findPattern($this->patterns->getHashPattern());
  36. if (!$match) {
  37. return false;
  38. }
  39. $value = $this->escaping->escapeUnicode($match[1]);
  40. $stream->push(new Token(Token::TYPE_HASH, $value, $reader->getPosition()));
  41. $reader->moveForward(\strlen($match[0]));
  42. return true;
  43. }
  44. }