XliffUtils.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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. /** @var \DOMNode $xliff */
  31. foreach ($dom->getElementsByTagName('xliff') as $xliff) {
  32. $version = $xliff->attributes->getNamedItem('version');
  33. if ($version) {
  34. return $version->nodeValue;
  35. }
  36. $namespace = $xliff->attributes->getNamedItem('xmlns');
  37. if ($namespace) {
  38. if (0 !== substr_compare('urn:oasis:names:tc:xliff:document:', $namespace->nodeValue, 0, 34)) {
  39. throw new InvalidArgumentException(sprintf('Not a valid XLIFF namespace "%s".', $namespace));
  40. }
  41. return substr($namespace, 34);
  42. }
  43. }
  44. // Falls back to v1.2
  45. return '1.2';
  46. }
  47. /**
  48. * Validates and parses the given file into a DOMDocument.
  49. *
  50. * @throws InvalidResourceException
  51. */
  52. public static function validateSchema(\DOMDocument $dom): array
  53. {
  54. $xliffVersion = static::getVersionNumber($dom);
  55. $internalErrors = libxml_use_internal_errors(true);
  56. if (\LIBXML_VERSION < 20900) {
  57. $disableEntities = libxml_disable_entity_loader(false);
  58. }
  59. $isValid = @$dom->schemaValidateSource(self::getSchema($xliffVersion));
  60. if (!$isValid) {
  61. if (\LIBXML_VERSION < 20900) {
  62. libxml_disable_entity_loader($disableEntities);
  63. }
  64. return self::getXmlErrors($internalErrors);
  65. }
  66. if (\LIBXML_VERSION < 20900) {
  67. libxml_disable_entity_loader($disableEntities);
  68. }
  69. $dom->normalizeDocument();
  70. libxml_clear_errors();
  71. libxml_use_internal_errors($internalErrors);
  72. return [];
  73. }
  74. public static function getErrorsAsString(array $xmlErrors): string
  75. {
  76. $errorsAsString = '';
  77. foreach ($xmlErrors as $error) {
  78. $errorsAsString .= sprintf("[%s %s] %s (in %s - line %d, column %d)\n",
  79. \LIBXML_ERR_WARNING === $error['level'] ? 'WARNING' : 'ERROR',
  80. $error['code'],
  81. $error['message'],
  82. $error['file'],
  83. $error['line'],
  84. $error['column']
  85. );
  86. }
  87. return $errorsAsString;
  88. }
  89. private static function getSchema(string $xliffVersion): string
  90. {
  91. if ('1.2' === $xliffVersion) {
  92. $schemaSource = file_get_contents(__DIR__.'/../Resources/schemas/xliff-core-1.2-strict.xsd');
  93. $xmlUri = 'http://www.w3.org/2001/xml.xsd';
  94. } elseif ('2.0' === $xliffVersion) {
  95. $schemaSource = file_get_contents(__DIR__.'/../Resources/schemas/xliff-core-2.0.xsd');
  96. $xmlUri = 'informativeCopiesOf3rdPartySchemas/w3c/xml.xsd';
  97. } else {
  98. throw new InvalidArgumentException(sprintf('No support implemented for loading XLIFF version "%s".', $xliffVersion));
  99. }
  100. return self::fixXmlLocation($schemaSource, $xmlUri);
  101. }
  102. /**
  103. * Internally changes the URI of a dependent xsd to be loaded locally.
  104. */
  105. private static function fixXmlLocation(string $schemaSource, string $xmlUri): string
  106. {
  107. $newPath = str_replace('\\', '/', __DIR__).'/../Resources/schemas/xml.xsd';
  108. $parts = explode('/', $newPath);
  109. $locationstart = 'file:///';
  110. if (0 === stripos($newPath, 'phar://')) {
  111. $tmpfile = tempnam(sys_get_temp_dir(), 'symfony');
  112. if ($tmpfile) {
  113. copy($newPath, $tmpfile);
  114. $parts = explode('/', str_replace('\\', '/', $tmpfile));
  115. } else {
  116. array_shift($parts);
  117. $locationstart = 'phar:///';
  118. }
  119. }
  120. $drive = '\\' === \DIRECTORY_SEPARATOR ? array_shift($parts).'/' : '';
  121. $newPath = $locationstart.$drive.implode('/', array_map('rawurlencode', $parts));
  122. return str_replace($xmlUri, $newPath, $schemaSource);
  123. }
  124. /**
  125. * Returns the XML errors of the internal XML parser.
  126. */
  127. private static function getXmlErrors(bool $internalErrors): array
  128. {
  129. $errors = [];
  130. foreach (libxml_get_errors() as $error) {
  131. $errors[] = [
  132. 'level' => \LIBXML_ERR_WARNING == $error->level ? 'WARNING' : 'ERROR',
  133. 'code' => $error->code,
  134. 'message' => trim($error->message),
  135. 'file' => $error->file ?: 'n/a',
  136. 'line' => $error->line,
  137. 'column' => $error->column,
  138. ];
  139. }
  140. libxml_clear_errors();
  141. libxml_use_internal_errors($internalErrors);
  142. return $errors;
  143. }
  144. }