mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
391 lines
14 KiB
PHP
391 lines
14 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Symfony\Bundle\FrameworkBundle\Command;
|
|
|
|
use Symfony\Component\Console\Exception\InvalidArgumentException;
|
|
use Symfony\Component\Console\Input\InputArgument;
|
|
use Symfony\Component\Console\Input\InputInterface;
|
|
use Symfony\Component\Console\Input\InputOption;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
use Symfony\Component\Console\Style\SymfonyStyle;
|
|
use Symfony\Component\HttpKernel\KernelInterface;
|
|
use Symfony\Component\Translation\Catalogue\MergeOperation;
|
|
use Symfony\Component\Translation\DataCollectorTranslator;
|
|
use Symfony\Component\Translation\Extractor\ExtractorInterface;
|
|
use Symfony\Component\Translation\LoggingTranslator;
|
|
use Symfony\Component\Translation\MessageCatalogue;
|
|
use Symfony\Component\Translation\Reader\TranslationReaderInterface;
|
|
use Symfony\Component\Translation\Translator;
|
|
use Symfony\Component\Translation\TranslatorInterface;
|
|
|
|
/**
|
|
* Helps finding unused or missing translation messages in a given locale
|
|
* and comparing them with the fallback ones.
|
|
*
|
|
* @author Florian Voutzinos <florian@voutzinos.com>
|
|
*
|
|
* @final since version 3.4
|
|
*/
|
|
class TranslationDebugCommand extends ContainerAwareCommand
|
|
{
|
|
const MESSAGE_MISSING = 0;
|
|
const MESSAGE_UNUSED = 1;
|
|
const MESSAGE_EQUALS_FALLBACK = 2;
|
|
|
|
protected static $defaultName = 'debug:translation';
|
|
|
|
private $translator;
|
|
private $reader;
|
|
private $extractor;
|
|
private $defaultTransPath;
|
|
private $defaultViewsPath;
|
|
|
|
public function __construct($translator = null, TranslationReaderInterface $reader = null, ExtractorInterface $extractor = null, $defaultTransPath = null, $defaultViewsPath = null)
|
|
{
|
|
if (!$translator instanceof TranslatorInterface) {
|
|
@trigger_error(sprintf('%s() expects an instance of "%s" as first argument since Symfony 3.4. Not passing it is deprecated and will throw a TypeError in 4.0.', __METHOD__, TranslatorInterface::class), \E_USER_DEPRECATED);
|
|
|
|
parent::__construct($translator);
|
|
|
|
return;
|
|
}
|
|
|
|
parent::__construct();
|
|
|
|
$this->translator = $translator;
|
|
$this->reader = $reader;
|
|
$this->extractor = $extractor;
|
|
$this->defaultTransPath = $defaultTransPath;
|
|
$this->defaultViewsPath = $defaultViewsPath;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function configure()
|
|
{
|
|
$this
|
|
->setDefinition([
|
|
new InputArgument('locale', InputArgument::REQUIRED, 'The locale'),
|
|
new InputArgument('bundle', InputArgument::OPTIONAL, 'The bundle name or directory where to load the messages'),
|
|
new InputOption('domain', null, InputOption::VALUE_OPTIONAL, 'The messages domain'),
|
|
new InputOption('only-missing', null, InputOption::VALUE_NONE, 'Displays only missing messages'),
|
|
new InputOption('only-unused', null, InputOption::VALUE_NONE, 'Displays only unused messages'),
|
|
new InputOption('all', null, InputOption::VALUE_NONE, 'Load messages from all registered bundles'),
|
|
])
|
|
->setDescription('Displays translation messages information')
|
|
->setHelp(<<<'EOF'
|
|
The <info>%command.name%</info> command helps finding unused or missing translation
|
|
messages and comparing them with the fallback ones by inspecting the
|
|
templates and translation files of a given bundle or the default translations directory.
|
|
|
|
You can display information about bundle translations in a specific locale:
|
|
|
|
<info>php %command.full_name% en AcmeDemoBundle</info>
|
|
|
|
You can also specify a translation domain for the search:
|
|
|
|
<info>php %command.full_name% --domain=messages en AcmeDemoBundle</info>
|
|
|
|
You can only display missing messages:
|
|
|
|
<info>php %command.full_name% --only-missing en AcmeDemoBundle</info>
|
|
|
|
You can only display unused messages:
|
|
|
|
<info>php %command.full_name% --only-unused en AcmeDemoBundle</info>
|
|
|
|
You can display information about application translations in a specific locale:
|
|
|
|
<info>php %command.full_name% en</info>
|
|
|
|
You can display information about translations in all registered bundles in a specific locale:
|
|
|
|
<info>php %command.full_name% --all en</info>
|
|
|
|
EOF
|
|
)
|
|
;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*
|
|
* BC to be removed in 4.0
|
|
*/
|
|
public function isEnabled()
|
|
{
|
|
if (null !== $this->translator) {
|
|
return parent::isEnabled();
|
|
}
|
|
if (!class_exists('Symfony\Component\Translation\Translator')) {
|
|
return false;
|
|
}
|
|
|
|
return parent::isEnabled();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function execute(InputInterface $input, OutputInterface $output)
|
|
{
|
|
// BC to be removed in 4.0
|
|
if (null === $this->translator) {
|
|
$this->translator = $this->getContainer()->get('translator');
|
|
$this->reader = $this->getContainer()->get('translation.reader');
|
|
$this->extractor = $this->getContainer()->get('translation.extractor');
|
|
$this->defaultTransPath = $this->getContainer()->getParameter('translator.default_path');
|
|
$this->defaultViewsPath = $this->getContainer()->getParameter('twig.default_path');
|
|
}
|
|
|
|
$io = new SymfonyStyle($input, $output);
|
|
|
|
$locale = $input->getArgument('locale');
|
|
$domain = $input->getOption('domain');
|
|
/** @var KernelInterface $kernel */
|
|
$kernel = $this->getApplication()->getKernel();
|
|
|
|
// Define Root Paths
|
|
$transPaths = [$kernel->getRootDir().'/Resources/translations'];
|
|
if ($this->defaultTransPath) {
|
|
$transPaths[] = $this->defaultTransPath;
|
|
}
|
|
$viewsPaths = [$kernel->getRootDir().'/Resources/views'];
|
|
if ($this->defaultViewsPath) {
|
|
$viewsPaths[] = $this->defaultViewsPath;
|
|
}
|
|
|
|
// Override with provided Bundle info
|
|
if (null !== $input->getArgument('bundle')) {
|
|
try {
|
|
$bundle = $kernel->getBundle($input->getArgument('bundle'));
|
|
$transPaths = [$bundle->getPath().'/Resources/translations'];
|
|
if ($this->defaultTransPath) {
|
|
$transPaths[] = $this->defaultTransPath.'/'.$bundle->getName();
|
|
}
|
|
$transPaths[] = sprintf('%s/Resources/%s/translations', $kernel->getRootDir(), $bundle->getName());
|
|
$viewsPaths = [$bundle->getPath().'/Resources/views'];
|
|
if ($this->defaultViewsPath) {
|
|
$viewsPaths[] = $this->defaultViewsPath.'/bundles/'.$bundle->getName();
|
|
}
|
|
$viewsPaths[] = sprintf('%s/Resources/%s/views', $kernel->getRootDir(), $bundle->getName());
|
|
} catch (\InvalidArgumentException $e) {
|
|
// such a bundle does not exist, so treat the argument as path
|
|
$transPaths = [$input->getArgument('bundle').'/Resources/translations'];
|
|
$viewsPaths = [$input->getArgument('bundle').'/Resources/views'];
|
|
|
|
if (!is_dir($transPaths[0])) {
|
|
throw new InvalidArgumentException(sprintf('"%s" is neither an enabled bundle nor a directory.', $transPaths[0]));
|
|
}
|
|
}
|
|
} elseif ($input->getOption('all')) {
|
|
foreach ($kernel->getBundles() as $bundle) {
|
|
$transPaths[] = $bundle->getPath().'/Resources/translations';
|
|
if ($this->defaultTransPath) {
|
|
$transPaths[] = $this->defaultTransPath.'/'.$bundle->getName();
|
|
}
|
|
$transPaths[] = sprintf('%s/Resources/%s/translations', $kernel->getRootDir(), $bundle->getName());
|
|
$viewsPaths[] = $bundle->getPath().'/Resources/views';
|
|
if ($this->defaultViewsPath) {
|
|
$viewsPaths[] = $this->defaultViewsPath.'/bundles/'.$bundle->getName();
|
|
}
|
|
$viewsPaths[] = sprintf('%s/Resources/%s/views', $kernel->getRootDir(), $bundle->getName());
|
|
}
|
|
}
|
|
|
|
// Extract used messages
|
|
$extractedCatalogue = $this->extractMessages($locale, $viewsPaths);
|
|
|
|
// Load defined messages
|
|
$currentCatalogue = $this->loadCurrentMessages($locale, $transPaths);
|
|
|
|
// Merge defined and extracted messages to get all message ids
|
|
$mergeOperation = new MergeOperation($extractedCatalogue, $currentCatalogue);
|
|
$allMessages = $mergeOperation->getResult()->all($domain);
|
|
if (null !== $domain) {
|
|
$allMessages = [$domain => $allMessages];
|
|
}
|
|
|
|
// No defined or extracted messages
|
|
if (empty($allMessages) || null !== $domain && empty($allMessages[$domain])) {
|
|
$outputMessage = sprintf('No defined or extracted messages for locale "%s"', $locale);
|
|
|
|
if (null !== $domain) {
|
|
$outputMessage .= sprintf(' and domain "%s"', $domain);
|
|
}
|
|
|
|
$io->getErrorStyle()->warning($outputMessage);
|
|
|
|
return;
|
|
}
|
|
|
|
// Load the fallback catalogues
|
|
$fallbackCatalogues = $this->loadFallbackCatalogues($locale, $transPaths);
|
|
|
|
// Display header line
|
|
$headers = ['State', 'Domain', 'Id', sprintf('Message Preview (%s)', $locale)];
|
|
foreach ($fallbackCatalogues as $fallbackCatalogue) {
|
|
$headers[] = sprintf('Fallback Message Preview (%s)', $fallbackCatalogue->getLocale());
|
|
}
|
|
$rows = [];
|
|
// Iterate all message ids and determine their state
|
|
foreach ($allMessages as $domain => $messages) {
|
|
foreach (array_keys($messages) as $messageId) {
|
|
$value = $currentCatalogue->get($messageId, $domain);
|
|
$states = [];
|
|
|
|
if ($extractedCatalogue->defines($messageId, $domain)) {
|
|
if (!$currentCatalogue->defines($messageId, $domain)) {
|
|
$states[] = self::MESSAGE_MISSING;
|
|
}
|
|
} elseif ($currentCatalogue->defines($messageId, $domain)) {
|
|
$states[] = self::MESSAGE_UNUSED;
|
|
}
|
|
|
|
if (!\in_array(self::MESSAGE_UNUSED, $states) && true === $input->getOption('only-unused')
|
|
|| !\in_array(self::MESSAGE_MISSING, $states) && true === $input->getOption('only-missing')) {
|
|
continue;
|
|
}
|
|
|
|
foreach ($fallbackCatalogues as $fallbackCatalogue) {
|
|
if ($fallbackCatalogue->defines($messageId, $domain) && $value === $fallbackCatalogue->get($messageId, $domain)) {
|
|
$states[] = self::MESSAGE_EQUALS_FALLBACK;
|
|
|
|
break;
|
|
}
|
|
}
|
|
|
|
$row = [$this->formatStates($states), $domain, $this->formatId($messageId), $this->sanitizeString($value)];
|
|
foreach ($fallbackCatalogues as $fallbackCatalogue) {
|
|
$row[] = $this->sanitizeString($fallbackCatalogue->get($messageId, $domain));
|
|
}
|
|
|
|
$rows[] = $row;
|
|
}
|
|
}
|
|
|
|
$io->table($headers, $rows);
|
|
}
|
|
|
|
private function formatState($state)
|
|
{
|
|
if (self::MESSAGE_MISSING === $state) {
|
|
return '<error> missing </error>';
|
|
}
|
|
|
|
if (self::MESSAGE_UNUSED === $state) {
|
|
return '<comment> unused </comment>';
|
|
}
|
|
|
|
if (self::MESSAGE_EQUALS_FALLBACK === $state) {
|
|
return '<info> fallback </info>';
|
|
}
|
|
|
|
return $state;
|
|
}
|
|
|
|
private function formatStates(array $states)
|
|
{
|
|
$result = [];
|
|
foreach ($states as $state) {
|
|
$result[] = $this->formatState($state);
|
|
}
|
|
|
|
return implode(' ', $result);
|
|
}
|
|
|
|
private function formatId($id)
|
|
{
|
|
return sprintf('<fg=cyan;options=bold>%s</>', $id);
|
|
}
|
|
|
|
private function sanitizeString($string, $length = 40)
|
|
{
|
|
$string = trim(preg_replace('/\s+/', ' ', $string));
|
|
|
|
if (false !== $encoding = mb_detect_encoding($string, null, true)) {
|
|
if (mb_strlen($string, $encoding) > $length) {
|
|
return mb_substr($string, 0, $length - 3, $encoding).'...';
|
|
}
|
|
} elseif (\strlen($string) > $length) {
|
|
return substr($string, 0, $length - 3).'...';
|
|
}
|
|
|
|
return $string;
|
|
}
|
|
|
|
/**
|
|
* @param string $locale
|
|
* @param array $transPaths
|
|
*
|
|
* @return MessageCatalogue
|
|
*/
|
|
private function extractMessages($locale, $transPaths)
|
|
{
|
|
$extractedCatalogue = new MessageCatalogue($locale);
|
|
foreach ($transPaths as $path) {
|
|
if (is_dir($path)) {
|
|
$this->extractor->extract($path, $extractedCatalogue);
|
|
}
|
|
}
|
|
|
|
return $extractedCatalogue;
|
|
}
|
|
|
|
/**
|
|
* @param string $locale
|
|
* @param array $transPaths
|
|
*
|
|
* @return MessageCatalogue
|
|
*/
|
|
private function loadCurrentMessages($locale, $transPaths)
|
|
{
|
|
$currentCatalogue = new MessageCatalogue($locale);
|
|
foreach ($transPaths as $path) {
|
|
if (is_dir($path)) {
|
|
$this->reader->read($path, $currentCatalogue);
|
|
}
|
|
}
|
|
|
|
return $currentCatalogue;
|
|
}
|
|
|
|
/**
|
|
* @param string $locale
|
|
* @param array $transPaths
|
|
*
|
|
* @return MessageCatalogue[]
|
|
*/
|
|
private function loadFallbackCatalogues($locale, $transPaths)
|
|
{
|
|
$fallbackCatalogues = [];
|
|
if ($this->translator instanceof Translator || $this->translator instanceof DataCollectorTranslator || $this->translator instanceof LoggingTranslator) {
|
|
foreach ($this->translator->getFallbackLocales() as $fallbackLocale) {
|
|
if ($fallbackLocale === $locale) {
|
|
continue;
|
|
}
|
|
|
|
$fallbackCatalogue = new MessageCatalogue($fallbackLocale);
|
|
foreach ($transPaths as $path) {
|
|
if (is_dir($path)) {
|
|
$this->reader->read($path, $fallbackCatalogue);
|
|
}
|
|
}
|
|
$fallbackCatalogues[] = $fallbackCatalogue;
|
|
}
|
|
}
|
|
|
|
return $fallbackCatalogues;
|
|
}
|
|
}
|