XliffUtils.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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. $disableEntities = libxml_disable_entity_loader(false);
  57. $isValid = @$dom->schemaValidateSource(self::getSchema($xliffVersion));
  58. if (!$isValid) {
  59. libxml_disable_entity_loader($disableEntities);
  60. return self::getXmlErrors($internalErrors);
  61. }
  62. libxml_disable_entity_loader($disableEntities);
  63. $dom->normalizeDocument();
  64. libxml_clear_errors();
  65. libxml_use_internal_errors($internalErrors);
  66. return [];
  67. }
  68. public static function getErrorsAsString(array $xmlErrors): string
  69. {
  70. $errorsAsString = '';
  71. foreach ($xmlErrors as $error) {
  72. $errorsAsString .= sprintf("[%s %s] %s (in %s - line %d, column %d)\n",
  73. LIBXML_ERR_WARNING === $error['level'] ? 'WARNING' : 'ERROR',
  74. $error['code'],
  75. $error['message'],
  76. $error['file'],
  77. $error['line'],
  78. $error['column']
  79. );
  80. }
  81. return $errorsAsString;
  82. }
  83. private static function getSchema(string $xliffVersion): string
  84. {
  85. if ('1.2' === $xliffVersion) {
  86. $schemaSource = file_get_contents(__DIR__.'/../Resources/schemas/xliff-core-1.2-strict.xsd');
  87. $xmlUri = 'http://www.w3.org/2001/xml.xsd';
  88. } elseif ('2.0' === $xliffVersion) {
  89. $schemaSource = file_get_contents(__DIR__.'/../Resources/schemas/xliff-core-2.0.xsd');
  90. $xmlUri = 'informativeCopiesOf3rdPartySchemas/w3c/xml.xsd';
  91. } else {
  92. throw new InvalidArgumentException(sprintf('No support implemented for loading XLIFF version "%s".', $xliffVersion));
  93. }
  94. return self::fixXmlLocation($schemaSource, $xmlUri);
  95. }
  96. /**
  97. * Internally changes the URI of a dependent xsd to be loaded locally.
  98. */
  99. private static function fixXmlLocation(string $schemaSource, string $xmlUri): string
  100. {
  101. $newPath = str_replace('\\', '/', __DIR__).'/../Resources/schemas/xml.xsd';
  102. $parts = explode('/', $newPath);
  103. $locationstart = 'file:///';
  104. if (0 === stripos($newPath, 'phar://')) {
  105. $tmpfile = tempnam(sys_get_temp_dir(), 'symfony');
  106. if ($tmpfile) {
  107. copy($newPath, $tmpfile);
  108. $parts = explode('/', str_replace('\\', '/', $tmpfile));
  109. } else {
  110. array_shift($parts);
  111. $locationstart = 'phar:///';
  112. }
  113. }
  114. $drive = '\\' === \DIRECTORY_SEPARATOR ? array_shift($parts).'/' : '';
  115. $newPath = $locationstart.$drive.implode('/', array_map('rawurlencode', $parts));
  116. return str_replace($xmlUri, $newPath, $schemaSource);
  117. }
  118. /**
  119. * Returns the XML errors of the internal XML parser.
  120. */
  121. private static function getXmlErrors(bool $internalErrors): array
  122. {
  123. $errors = [];
  124. foreach (libxml_get_errors() as $error) {
  125. $errors[] = [
  126. 'level' => LIBXML_ERR_WARNING == $error->level ? 'WARNING' : 'ERROR',
  127. 'code' => $error->code,
  128. 'message' => trim($error->message),
  129. 'file' => $error->file ?: 'n/a',
  130. 'line' => $error->line,
  131. 'column' => $error->column,
  132. ];
  133. }
  134. libxml_clear_errors();
  135. libxml_use_internal_errors($internalErrors);
  136. return $errors;
  137. }
  138. }