PageRenderTime 36ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/plugins/vjCommentPlugin/lib/tools/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/URI.php

https://bitbucket.org/Kudlaty/360kdw
PHP | 52 lines | 36 code | 5 blank | 11 comment | 6 complexity | bfb426e22d4d764adfca7bdfadec7ca6 MD5 | raw file
Possible License(s): LGPL-2.1
  1. <?php
  2. /**
  3. * Validates a URI in CSS syntax, which uses url('http://example.com')
  4. * @note While theoretically speaking a URI in a CSS document could
  5. * be non-embedded, as of CSS2 there is no such usage so we're
  6. * generalizing it. This may need to be changed in the future.
  7. * @warning Since HTMLPurifier_AttrDef_CSS blindly uses semicolons as
  8. * the separator, you cannot put a literal semicolon in
  9. * in the URI. Try percent encoding it, in that case.
  10. */
  11. class HTMLPurifier_AttrDef_CSS_URI extends HTMLPurifier_AttrDef_URI
  12. {
  13. public function __construct() {
  14. parent::__construct(true); // always embedded
  15. }
  16. public function validate($uri_string, $config, $context) {
  17. // parse the URI out of the string and then pass it onto
  18. // the parent object
  19. $uri_string = $this->parseCDATA($uri_string);
  20. if (strpos($uri_string, 'url(') !== 0) return false;
  21. $uri_string = substr($uri_string, 4);
  22. $new_length = strlen($uri_string) - 1;
  23. if ($uri_string[$new_length] != ')') return false;
  24. $uri = trim(substr($uri_string, 0, $new_length));
  25. if (!empty($uri) && ($uri[0] == "'" || $uri[0] == '"')) {
  26. $quote = $uri[0];
  27. $new_length = strlen($uri) - 1;
  28. if ($uri[$new_length] !== $quote) return false;
  29. $uri = substr($uri, 1, $new_length - 1);
  30. }
  31. $uri = $this->expandCSSEscape($uri);
  32. $result = parent::validate($uri, $config, $context);
  33. if ($result === false) return false;
  34. // extra sanity check; should have been done by URI
  35. $result = str_replace(array('"', "\\", "\n", "\x0c", "\r"), "", $result);
  36. return "url(\"$result\")";
  37. }
  38. }
  39. // vim: et sw=4 sts=4