Security update for Core, with self-updated composer
[yaffs-website] / vendor / drupal / console / src / Command / Develop / TranslationSyncCommand.php
diff --git a/vendor/drupal/console/src/Command/Develop/TranslationSyncCommand.php b/vendor/drupal/console/src/Command/Develop/TranslationSyncCommand.php
deleted file mode 100644 (file)
index be71980..0000000
+++ /dev/null
@@ -1,204 +0,0 @@
-<?php
-
-/**
- * @file
- * Contains \Drupal\Console\Command\Develop\TranslationSyncCommand.
- */
-
-namespace Drupal\Console\Command\Develop;
-
-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\Finder\Finder;
-use Symfony\Component\Yaml\Dumper;
-use Symfony\Component\Yaml\Parser;
-use Symfony\Component\Console\Command\Command;
-use Drupal\Console\Core\Style\DrupalStyle;
-use Drupal\Console\Core\Command\Shared\CommandTrait;
-use Drupal\Console\Core\Utils\ConfigurationManager;
-
-class TranslationSyncCommand extends Command
-{
-    use CommandTrait;
-
-    /**
-     * @var string
-     */
-    protected $consoleRoot;
-
-    /**
-     * @var ConfigurationManager
-     */
-    protected $configurationManager;
-
-    /**
-     * TranslationSyncCommand constructor.
-     *
-     * @param $consoleRoot
-     * @param configurationManager $configurationManager
-     */
-    public function __construct(
-        $consoleRoot,
-        ConfigurationManager $configurationManager
-    ) {
-        $this->consoleRoot = $consoleRoot;
-        $this->configurationManager = $configurationManager;
-        parent::__construct();
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    protected function configure()
-    {
-        $this
-            ->setName('translation:sync')
-            ->setDescription($this->trans('commands.translation.sync.description'))
-            ->addArgument(
-                'language',
-                InputArgument::OPTIONAL,
-                $this->trans('commands.translation.sync.arguments.language'),
-                null
-            )
-            ->addOption(
-                'file',
-                null,
-                InputOption::VALUE_OPTIONAL,
-                $this->trans('commands.translation.stats.options.file'),
-                null
-            );
-    }
-
-    /**
-     * {@inheritdoc}
-     */
-    protected function execute(InputInterface $input, OutputInterface $output)
-    {
-        $io = new DrupalStyle($input, $output);
-
-        $language = $input->getArgument('language');
-        $file = $input->getOption('file');
-        $languages = $this->configurationManager->getConfiguration()->get('application.languages');
-        unset($languages['en']);
-
-        if ($language && !isset($languages[$language])) {
-            $io->error(
-                sprintf(
-                    $this->trans('commands.translation.stats.messages.invalid-language'),
-                    $language
-                )
-            );
-            return 1;
-        }
-
-        if ($language) {
-            $languages = [$language => $languages[$language]];
-        }
-
-        $this->syncTranslations($io, $language, $languages, $file);
-
-        $io->success($this->trans('commands.translation.sync.messages.sync-finished'));
-    }
-
-    protected function syncTranslations($io, $language = null, $languages, $file)
-    {
-        $englishFilesFinder = new Finder();
-        $yaml = new Parser();
-        $dumper = new Dumper();
-
-        $englishDirectory = $this->consoleRoot .
-            sprintf(
-                DRUPAL_CONSOLE_LANGUAGE,
-                'en'
-            );
-
-        if ($file) {
-            $englishFiles = $englishFilesFinder->files()->name($file)->in($englishDirectory);
-        } else {
-            $englishFiles = $englishFilesFinder->files()->name('*.yml')->in($englishDirectory);
-        }
-
-        foreach ($englishFiles as $file) {
-            $resource = $englishDirectory . '/' . $file->getBasename();
-            $filename = $file->getBasename('.yml');
-
-            try {
-                $englishFile = file_get_contents($resource);
-                $englishFileParsed = $yaml->parse($englishFile);
-            } catch (ParseException $e) {
-                $io->error($filename . '.yml: ' . $e->getMessage());
-                continue;
-            }
-
-            foreach ($languages as $langCode => $languageName) {
-                $languageDir = $this->consoleRoot .
-                                        sprintf(
-                                            DRUPAL_CONSOLE_LANGUAGE,
-                                            $langCode
-                                        );
-                if (isset($language) && $langCode != $language) {
-                    continue;
-                }
-                if (!isset($statistics[$langCode])) {
-                    $statistics[$langCode] = ['total' => 0, 'equal'=> 0 , 'diff' => 0];
-                }
-
-                $resourceTranslated = $languageDir . '/' . $file->getBasename();
-                if (!file_exists($resourceTranslated)) {
-                    file_put_contents($resourceTranslated, $englishFile);
-                    $io->info(
-                        sprintf(
-                            $this->trans('commands.translation.sync.messages.created-file'),
-                            $file->getBasename(),
-                            $languageName
-                        )
-                    );
-                    continue;
-                }
-
-                try {
-                    //print $resourceTranslated . "\n";
-                    $resourceTranslatedParsed = $yaml->parse(file_get_contents($resourceTranslated));
-                } catch (ParseException $e) {
-                    $io->error($resourceTranslated . ':' . $e->getMessage());
-                    continue;
-                }
-
-                $resourceTranslatedParsed = array_replace_recursive($englishFileParsed, $resourceTranslatedParsed);
-
-                try {
-                    $resourceTranslatedParsedYaml = $dumper->dump($resourceTranslatedParsed, 10);
-                } catch (\Exception $e) {
-                    $io->error(
-                        sprintf(
-                            $this->trans('commands.translation.sync.messages.error-generating'),
-                            $resourceTranslated,
-                            $languageName,
-                            $e->getMessage()
-                        )
-                    );
-
-                    continue;
-                }
-
-                try {
-                    file_put_contents($resourceTranslated, $resourceTranslatedParsedYaml);
-                } catch (\Exception $e) {
-                    $io->error(
-                        sprintf(
-                            '%s: %s',
-                            $this->trans('commands.translation.sync.messages.error-writing'),
-                            $resourceTranslated,
-                            $languageName,
-                            $e->getMessage()
-                        )
-                    );
-
-                    return 1;
-                }
-            }
-        }
-    }
-}