51 private const SVG =
'svg';
62 return $this->isMimeTypeOrExtension(
81 $all_elements = $dom->getElementsByTagName(
"*");
83 for ($i = 0; $i < $all_elements->length; $i++) {
84 $current_node = $all_elements->item($i);
86 $element_name = $original_element_name = $current_node->tagName;
87 $whitelist_attr_arr = self::$whitelist[$element_name] ??
null;
89 if ($whitelist_attr_arr !== null) {
90 for ($x = 0; $x < $current_node->attributes->length; $x++) {
91 $attribute_name = $current_node->attributes->item($x)->name;
92 if (!in_array($attribute_name, $whitelist_attr_arr)) {
93 $this->rejection_message = $this->rejection_message
94 .
' (' . $original_element_name
95 .
'/' . $attribute_name .
').';
100 $this->rejection_message = $this->rejection_message
101 .
' (' . $original_element_name .
').';
221 'color-interpolation-filters',
229 'color-interpolation-filters',
364 'preserveAspectRatio',
419 'connector-curvature',
426 'patternContentUnits',
577 'preserveAspectRatio',
614 'preserveAspectRatio',
750 'sodipodi:namedview' =>
string $rejection_message
isSVG(Metadata $metadata)
process(FileStream $stream, Metadata $metadata)
This method gets invoked by the file upload service to process the file with the help of the processo...
__construct(?string $rejection_message=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class SVGWhitelistPreProcessor.
checkStream(FileStream $stream)