This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Bundle/FrameworkBundle/Command/TranslationDebugCommand.php

269 lines
9.7 KiB
PHP
Raw Normal View History

2014-01-19 23:09:51 +00:00
<?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\Style\SymfonyStyle;
2014-01-19 23:09:51 +00:00
use Symfony\Component\Translation\Catalogue\MergeOperation;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Translation\MessageCatalogue;
use Symfony\Component\Translation\Translator;
2014-01-19 23:09:51 +00:00
/**
* Helps finding unused or missing translation messages in a given locale
* and comparing them with the fallback ones.
*
* @author Florian Voutzinos <florian@voutzinos.com>
*/
class TranslationDebugCommand extends ContainerAwareCommand
{
const MESSAGE_MISSING = 0;
const MESSAGE_UNUSED = 1;
const MESSAGE_EQUALS_FALLBACK = 2;
/**
* {@inheritdoc}
*/
protected function configure()
{
$this
2014-08-09 16:20:46 +01:00
->setName('debug:translation')
->setAliases(array(
'translation:debug',
))
2014-01-19 23:09:51 +00:00
->setDefinition(array(
new InputArgument('locale', InputArgument::REQUIRED, 'The locale'),
new InputArgument('bundle', InputArgument::OPTIONAL, 'The bundle name or directory where to load the messages, defaults to app/Resources folder'),
2014-01-19 23:09:51 +00:00
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'),
))
->setDescription('Displays translation messages information')
2014-01-19 23:09:51 +00:00
->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 app folder.
2014-01-19 23:09:51 +00:00
You can display information about bundle translations in a specific locale:
2014-01-19 23:09:51 +00:00
2015-01-04 09:52:37 +00:00
<info>php %command.full_name% en AcmeDemoBundle</info>
2014-01-19 23:09:51 +00:00
You can also specify a translation domain for the search:
2015-01-04 09:52:37 +00:00
<info>php %command.full_name% --domain=messages en AcmeDemoBundle</info>
2014-01-19 23:09:51 +00:00
You can only display missing messages:
2015-01-04 09:52:37 +00:00
<info>php %command.full_name% --only-missing en AcmeDemoBundle</info>
2014-01-19 23:09:51 +00:00
You can only display unused messages:
2015-01-04 09:52:37 +00:00
<info>php %command.full_name% --only-unused en AcmeDemoBundle</info>
You can display information about app translations in a specific locale:
<info>php %command.full_name% en</info>
2014-01-19 23:09:51 +00:00
EOF
)
;
}
/**
* {@inheritdoc}
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
$output = new SymfonyStyle($input, $output);
if (false !== strpos($input->getFirstArgument(), ':d')) {
$output->caution('The use of "translation:debug" command is deprecated since version 2.7 and will be removed in 3.0. Use the "debug:translation" instead.');
}
2014-01-19 23:09:51 +00:00
$locale = $input->getArgument('locale');
$domain = $input->getOption('domain');
$loader = $this->getContainer()->get('translation.loader');
$kernel = $this->getContainer()->get('kernel');
// Define Root Path to App folder
$transPaths = array($kernel->getRootDir().'/Resources/');
// Override with provided Bundle info
if (null !== $input->getArgument('bundle')) {
try {
$bundle = $kernel->getBundle($input->getArgument('bundle'));
$transPaths = array(
$bundle->getPath().'/Resources/',
sprintf('%s/Resources/%s/', $kernel->getRootDir(), $bundle->getName()),
);
} catch (\InvalidArgumentException $e) {
// such a bundle does not exist, so treat the argument as path
$transPaths = array($input->getArgument('bundle').'/Resources/');
if (!is_dir($transPaths[0])) {
throw new \InvalidArgumentException(sprintf('"%s" is neither an enabled bundle nor a directory.', $transPaths[0]));
}
}
}
2014-01-19 23:09:51 +00:00
// Extract used messages
$extractedCatalogue = new MessageCatalogue($locale);
foreach ($transPaths as $path) {
$path .= 'views';
if (is_dir($path)) {
$this->getContainer()->get('translation.extractor')->extract($path, $extractedCatalogue);
}
}
2014-01-19 23:09:51 +00:00
// Load defined messages
$currentCatalogue = new MessageCatalogue($locale);
foreach ($transPaths as $path) {
$path .= 'translations';
if (is_dir($path)) {
$loader->loadMessages($path, $currentCatalogue);
}
}
2014-01-19 23:09:51 +00:00
// Merge defined and extracted messages to get all message ids
$mergeOperation = new MergeOperation($extractedCatalogue, $currentCatalogue);
$allMessages = $mergeOperation->getResult()->all($domain);
if (null !== $domain) {
$allMessages = array($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);
2014-01-19 23:09:51 +00:00
if (null !== $domain) {
$outputMessage .= sprintf(' and domain "%s"', $domain);
2014-01-19 23:09:51 +00:00
}
$output->warning($outputMessage);
2014-01-19 23:09:51 +00:00
return;
}
// Load the fallback catalogues
$fallbackCatalogues = array();
$translator = $this->getContainer()->get('translator');
if ($translator instanceof Translator) {
foreach ($translator->getFallbackLocales() as $fallbackLocale) {
if ($fallbackLocale === $locale) {
continue;
}
2014-01-19 23:09:51 +00:00
$fallbackCatalogue = new MessageCatalogue($fallbackLocale);
foreach ($transPaths as $path) {
$path = $path.'translations';
if (is_dir($path)) {
$loader->loadMessages($path, $fallbackCatalogue);
}
}
$fallbackCatalogues[] = $fallbackCatalogue;
}
2014-01-19 23:09:51 +00:00
}
// Display header line
$headers = array('State', 'Domain', 'Id', sprintf('Message Preview (%s)', $locale));
2014-01-19 23:09:51 +00:00
foreach ($fallbackCatalogues as $fallbackCatalogue) {
$headers[] = sprintf('Fallback Message Preview (%s)', $fallbackCatalogue->getLocale());
}
$rows = array();
2014-01-19 23:09:51 +00:00
// 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 = array();
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)) {
2014-01-19 23:09:51 +00:00
$states[] = self::MESSAGE_EQUALS_FALLBACK;
2014-01-19 23:09:51 +00:00
break;
}
}
$row = array($this->formatStates($states), $domain, $this->formatId($messageId), $this->sanitizeString($value));
2014-01-19 23:09:51 +00:00
foreach ($fallbackCatalogues as $fallbackCatalogue) {
$row[] = $this->sanitizeString($fallbackCatalogue->get($messageId, $domain));
}
$rows[] = $row;
2014-01-19 23:09:51 +00:00
}
}
$output->table($headers, $rows);
2014-01-19 23:09:51 +00:00
}
private function formatState($state)
{
if (self::MESSAGE_MISSING === $state) {
return '<error>missing</error>';
2014-01-19 23:09:51 +00:00
}
if (self::MESSAGE_UNUSED === $state) {
return '<comment>unused</comment>';
2014-01-19 23:09:51 +00:00
}
if (self::MESSAGE_EQUALS_FALLBACK === $state) {
return '<info>fallback</info>';
2014-01-19 23:09:51 +00:00
}
return $state;
}
private function formatStates(array $states)
{
$result = array();
foreach ($states as $state) {
$result[] = $this->formatState($state);
}
return implode(' ', $result);
}
private function formatId($id)
{
return sprintf('<fg=cyan;options=bold>%s</fg=cyan;options=bold>', $id);
}
private function sanitizeString($string, $length = 40)
2014-01-19 23:09:51 +00:00
{
$string = trim(preg_replace('/\s+/', ' ', $string));
if (function_exists('mb_strlen') && false !== $encoding = mb_detect_encoding($string)) {
if (mb_strlen($string, $encoding) > $length) {
return mb_substr($string, 0, $length - 3, $encoding).'...';
2014-01-19 23:09:51 +00:00
}
} elseif (strlen($string) > $length) {
return substr($string, 0, $length - 3).'...';
2014-01-19 23:09:51 +00:00
}
return $string;
}
}