TranslationDataCollector.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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\DataCollector;
  11. use Symfony\Component\HttpFoundation\Request;
  12. use Symfony\Component\HttpFoundation\Response;
  13. use Symfony\Component\HttpKernel\DataCollector\DataCollector;
  14. use Symfony\Component\HttpKernel\DataCollector\LateDataCollectorInterface;
  15. use Symfony\Component\Translation\DataCollectorTranslator;
  16. /**
  17. * @author Abdellatif Ait boudad <a.aitboudad@gmail.com>
  18. */
  19. class TranslationDataCollector extends DataCollector implements LateDataCollectorInterface
  20. {
  21. private $translator;
  22. public function __construct(DataCollectorTranslator $translator)
  23. {
  24. $this->translator = $translator;
  25. }
  26. /**
  27. * {@inheritdoc}
  28. */
  29. public function lateCollect()
  30. {
  31. $messages = $this->sanitizeCollectedMessages($this->translator->getCollectedMessages());
  32. $this->data = $this->computeCount($messages);
  33. $this->data['messages'] = $messages;
  34. }
  35. /**
  36. * {@inheritdoc}
  37. */
  38. public function collect(Request $request, Response $response, \Exception $exception = null)
  39. {
  40. }
  41. /**
  42. * @return array
  43. */
  44. public function getMessages()
  45. {
  46. return isset($this->data['messages']) ? $this->data['messages'] : array();
  47. }
  48. /**
  49. * @return int
  50. */
  51. public function getCountMissings()
  52. {
  53. return isset($this->data[DataCollectorTranslator::MESSAGE_MISSING]) ? $this->data[DataCollectorTranslator::MESSAGE_MISSING] : 0;
  54. }
  55. /**
  56. * @return int
  57. */
  58. public function getCountFallbacks()
  59. {
  60. return isset($this->data[DataCollectorTranslator::MESSAGE_EQUALS_FALLBACK]) ? $this->data[DataCollectorTranslator::MESSAGE_EQUALS_FALLBACK] : 0;
  61. }
  62. /**
  63. * @return int
  64. */
  65. public function getCountDefines()
  66. {
  67. return isset($this->data[DataCollectorTranslator::MESSAGE_DEFINED]) ? $this->data[DataCollectorTranslator::MESSAGE_DEFINED] : 0;
  68. }
  69. /**
  70. * {@inheritdoc}
  71. */
  72. public function getName()
  73. {
  74. return 'translation';
  75. }
  76. private function sanitizeCollectedMessages($messages)
  77. {
  78. $result = array();
  79. foreach ($messages as $key => $message) {
  80. $messageId = $message['locale'].$message['domain'].$message['id'];
  81. if (!isset($result[$messageId])) {
  82. $message['count'] = 1;
  83. $message['parameters'] = !empty($message['parameters']) ? array($message['parameters']) : array();
  84. $messages[$key]['translation'] = $this->sanitizeString($message['translation']);
  85. $result[$messageId] = $message;
  86. } else {
  87. if (!empty($message['parameters'])) {
  88. $result[$messageId]['parameters'][] = $message['parameters'];
  89. }
  90. ++$result[$messageId]['count'];
  91. }
  92. unset($messages[$key]);
  93. }
  94. return $result;
  95. }
  96. private function computeCount($messages)
  97. {
  98. $count = array(
  99. DataCollectorTranslator::MESSAGE_DEFINED => 0,
  100. DataCollectorTranslator::MESSAGE_MISSING => 0,
  101. DataCollectorTranslator::MESSAGE_EQUALS_FALLBACK => 0,
  102. );
  103. foreach ($messages as $message) {
  104. ++$count[$message['state']];
  105. }
  106. return $count;
  107. }
  108. private function sanitizeString($string, $length = 80)
  109. {
  110. $string = trim(preg_replace('/\s+/', ' ', $string));
  111. if (false !== $encoding = mb_detect_encoding($string, null, true)) {
  112. if (mb_strlen($string, $encoding) > $length) {
  113. return mb_substr($string, 0, $length - 3, $encoding).'...';
  114. }
  115. } elseif (\strlen($string) > $length) {
  116. return substr($string, 0, $length - 3).'...';
  117. }
  118. return $string;
  119. }
  120. }