TYPO3 CMS  TYPO3_7-6
SvgIconProvider.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
22 
27 {
28  const MARKUP_IDENTIFIER_INLINE = 'inline';
29 
34  public function prepareIconMarkup(Icon $icon, array $options = [])
35  {
36  $icon->setMarkup($this->generateMarkup($icon, $options));
37  $icon->setAlternativeMarkup(self::MARKUP_IDENTIFIER_INLINE, $this->generateInlineMarkup($icon, $options));
38  }
39 
46  protected function generateMarkup(Icon $icon, array $options)
47  {
48  if (empty($options['source'])) {
49  throw new \InvalidArgumentException('[' . $icon->getIdentifier() . '] The option "source" is required and must not be empty', 1440754980);
50  }
51 
52  $source = $options['source'];
53 
54  if (StringUtility::beginsWith($source, 'EXT:') || !StringUtility::beginsWith($source, '/')) {
55  $source = GeneralUtility::getFileAbsFileName($source);
56  }
57 
58  $source = PathUtility::getAbsoluteWebPath($source);
59  return '<img src="' . htmlspecialchars($source) . '" width="' . $icon->getDimension()->getWidth() . '" height="' . $icon->getDimension()->getHeight() . '" />';
60  }
61 
68  protected function generateInlineMarkup(Icon $icon, array $options)
69  {
70  if (empty($options['source'])) {
71  throw new \InvalidArgumentException('The option "source" is required and must not be empty', 1440754980);
72  }
73 
74  $source = $options['source'];
75 
76  if (StringUtility::beginsWith($source, 'EXT:') || !StringUtility::beginsWith($source, '/')) {
77  $source = GeneralUtility::getFileAbsFileName($source);
78  }
79 
80  return $this->getInlineSvg($source);
81  }
82 
88  protected function getInlineSvg($source)
89  {
90  if (!file_exists($source)) {
91  return '';
92  }
93 
94  $svgContent = file_get_contents($source);
95  $svgContent = preg_replace('/<script[\s\S]*?>[\s\S]*?<\/script>/i', '', $svgContent);
96  // Disables the functionality to allow external entities to be loaded when parsing the XML, must be kept
97  $previousValueOfEntityLoader = libxml_disable_entity_loader(true);
98  $svgElement = simplexml_load_string($svgContent);
99  libxml_disable_entity_loader($previousValueOfEntityLoader);
100 
101  // remove xml version tag
102  $domXml = dom_import_simplexml($svgElement);
103  return $domXml->ownerDocument->saveXML($domXml->ownerDocument->documentElement);
104  }
105 }
setAlternativeMarkup($markupIdentifier, $markup)
Definition: Icon.php:134
static getAbsoluteWebPath($targetPath)
Definition: PathUtility.php:40
static getFileAbsFileName($filename, $onlyRelative=true, $relToTYPO3_mainDir=false)
static beginsWith($haystack, $needle)