Example #1
0
 /**
  * Normalize value of the text nodes, descendants of an element
  *
  * @param  DOMElement $element
  * @return void
  */
 protected function normalizeElement(DOMElement $element)
 {
     $xpath = new DOMXPath($element->ownerDocument);
     $query = './/text()[normalize-space() != ""]';
     foreach ($xpath->query($query, $element) as $i => $node) {
         $value = BuiltInFilters::sanitizeUrl($node->nodeValue);
         if (!$i) {
             $value = $this->unescapeBrackets(ltrim($value));
         }
         $node->nodeValue = $value;
     }
     if (isset($node)) {
         $node->nodeValue = rtrim($node->nodeValue);
     }
 }
Example #2
0
 /**
  * Filter an image's URL to enforce restrictions on its dimensions
  *
  * @see bbcode_firstpass::bbcode_img()
  *
  * @param  string  $url        Original URL
  * @param  array   $url_config Config used by the URL filter
  * @param  Logger  $logger
  * @param  integer $max_height Maximum height allowed
  * @param  integer $max_width  Maximum width allowed
  * @return string|bool         Original value if valid, FALSE otherwise
  */
 public static function filter_img_url($url, array $url_config, Logger $logger, $max_height, $max_width)
 {
     // Validate the URL
     $url = BuiltInFilters::filterUrl($url, $url_config, $logger);
     if ($url === false) {
         return false;
     }
     if ($max_height || $max_width) {
         $imagesize = new \FastImageSize\FastImageSize();
         $size_info = $imagesize->getImageSize($url);
         if ($size_info === false) {
             $logger->err('UNABLE_GET_IMAGE_SIZE');
             return false;
         }
         if ($max_height && $max_height < $size_info['height']) {
             $logger->err('MAX_IMG_HEIGHT_EXCEEDED', array('max_height' => $max_height));
             return false;
         }
         if ($max_width && $max_width < $size_info['width']) {
             $logger->err('MAX_IMG_WIDTH_EXCEEDED', array('max_width' => $max_width));
             return false;
         }
     }
     return $url;
 }
 /**
  * @testdox sanitizeUrl() tests
  * @dataProvider getSanitizeUrlTests
  */
 public function testSanitizeUrl($url, $expected)
 {
     $this->assertSame($expected, BuiltInFilters::sanitizeUrl($url));
 }