XliffUtils.php 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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\Translation\Util;
  11. use Symfony\Component\Translation\Exception\InvalidArgumentException;
  12. use Symfony\Component\Translation\Exception\InvalidResourceException;
  13. /**
  14. * Provides some utility methods for XLIFF translation files, such as validating
  15. * their contents according to the XSD schema.
  16. *
  17. * @author Fabien Potencier <fabien@symfony.com>
  18. */
  19. class XliffUtils
  20. {
  21. /**
  22. * Gets xliff file version based on the root "version" attribute.
  23. *
  24. * Defaults to 1.2 for backwards compatibility.
  25. *
  26. * @throws InvalidArgumentException
  27. */
  28. public static function getVersionNumber(\DOMDocument $dom): string
  29. {
  30. foreach ($dom->getElementsByTagName('xliff') as $xliff) {
  31. $version = $xliff->attributes->getNamedItem('version');
  32. if ($version) {
  33. return $version->nodeValue;
  34. }
  35. $namespace = $xliff->attributes->getNamedItem('xmlns');
  36. if ($namespace) {
  37. if (0 !== substr_compare('urn:oasis:names:tc:xliff:document:', $namespace->nodeValue, 0, 34)) {
  38. throw new InvalidArgumentException(\sprintf('Not a valid XLIFF namespace "%s".', $namespace));
  39. }
  40. return substr($namespace, 34);
  41. }
  42. }
  43. // Falls back to v1.2
  44. return '1.2';
  45. }
  46. /**
  47. * Validates and parses the given file into a DOMDocument.
  48. *
  49. * @throws InvalidResourceException
  50. */
  51. public static function validateSchema(\DOMDocument $dom): array
  52. {
  53. $xliffVersion = static::getVersionNumber($dom);
  54. $internalErrors = libxml_use_internal_errors(true);
  55. if ($shouldEnable = self::shouldEnableEntityLoader()) {
  56. $disableEntities = libxml_disable_entity_loader(false);
  57. }
  58. try {
  59. $isValid = @$dom->schemaValidateSource(self::getSchema($xliffVersion));
  60. if (!$isValid) {
  61. return self::getXmlErrors($internalErrors);
  62. }
  63. } finally {
  64. if ($shouldEnable) {
  65. libxml_disable_entity_loader($disableEntities);
  66. }
  67. }
  68. $dom->normalizeDocument();
  69. libxml_clear_errors();
  70. libxml_use_internal_errors($internalErrors);
  71. return [];
  72. }
  73. private static function shouldEnableEntityLoader(): bool
  74. {
  75. static $dom, $schema;
  76. if (null === $dom) {
  77. $dom = new \DOMDocument();
  78. $dom->loadXML('<?xml version="1.0"?><test/>');
  79. $tmpfile = tempnam(sys_get_temp_dir(), 'symfony');
  80. register_shutdown_function(static function () use ($tmpfile) {
  81. @unlink($tmpfile);
  82. });
  83. $schema = '<?xml version="1.0" encoding="utf-8"?>
  84. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  85. <xsd:include schemaLocation="file:///'.str_replace('\\', '/', $tmpfile).'" />
  86. </xsd:schema>';
  87. file_put_contents($tmpfile, '<?xml version="1.0" encoding="utf-8"?>
  88. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  89. <xsd:element name="test" type="testType" />
  90. <xsd:complexType name="testType"/>
  91. </xsd:schema>');
  92. }
  93. return !@$dom->schemaValidateSource($schema);
  94. }
  95. public static function getErrorsAsString(array $xmlErrors): string
  96. {
  97. $errorsAsString = '';
  98. foreach ($xmlErrors as $error) {
  99. $errorsAsString .= \sprintf("[%s %s] %s (in %s - line %d, column %d)\n",
  100. \LIBXML_ERR_WARNING === $error['level'] ? 'WARNING' : 'ERROR',
  101. $error['code'],
  102. $error['message'],
  103. $error['file'],
  104. $error['line'],
  105. $error['column']
  106. );
  107. }
  108. return $errorsAsString;
  109. }
  110. private static function getSchema(string $xliffVersion): string
  111. {
  112. if ('1.2' === $xliffVersion) {
  113. $schemaSource = file_get_contents(__DIR__.'/../Resources/schemas/xliff-core-1.2-transitional.xsd');
  114. $xmlUri = 'http://www.w3.org/2001/xml.xsd';
  115. } elseif ('2.0' === $xliffVersion) {
  116. $schemaSource = file_get_contents(__DIR__.'/../Resources/schemas/xliff-core-2.0.xsd');
  117. $xmlUri = 'informativeCopiesOf3rdPartySchemas/w3c/xml.xsd';
  118. } else {
  119. throw new InvalidArgumentException(\sprintf('No support implemented for loading XLIFF version "%s".', $xliffVersion));
  120. }
  121. return self::fixXmlLocation($schemaSource, $xmlUri);
  122. }
  123. /**
  124. * Internally changes the URI of a dependent xsd to be loaded locally.
  125. */
  126. private static function fixXmlLocation(string $schemaSource, string $xmlUri): string
  127. {
  128. $newPath = str_replace('\\', '/', __DIR__).'/../Resources/schemas/xml.xsd';
  129. $parts = explode('/', $newPath);
  130. $locationstart = 'file:///';
  131. if (0 === stripos($newPath, 'phar://')) {
  132. $tmpfile = tempnam(sys_get_temp_dir(), 'symfony');
  133. if ($tmpfile) {
  134. copy($newPath, $tmpfile);
  135. $parts = explode('/', str_replace('\\', '/', $tmpfile));
  136. } else {
  137. array_shift($parts);
  138. $locationstart = 'phar:///';
  139. }
  140. }
  141. $drive = '\\' === \DIRECTORY_SEPARATOR ? array_shift($parts).'/' : '';
  142. $newPath = $locationstart.$drive.implode('/', array_map('rawurlencode', $parts));
  143. return str_replace($xmlUri, $newPath, $schemaSource);
  144. }
  145. /**
  146. * Returns the XML errors of the internal XML parser.
  147. */
  148. private static function getXmlErrors(bool $internalErrors): array
  149. {
  150. $errors = [];
  151. foreach (libxml_get_errors() as $error) {
  152. $errors[] = [
  153. 'level' => \LIBXML_ERR_WARNING == $error->level ? 'WARNING' : 'ERROR',
  154. 'code' => $error->code,
  155. 'message' => trim($error->message),
  156. 'file' => $error->file ?: 'n/a',
  157. 'line' => $error->line,
  158. 'column' => $error->column,
  159. ];
  160. }
  161. libxml_clear_errors();
  162. libxml_use_internal_errors($internalErrors);
  163. return $errors;
  164. }
  165. }