. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Cli\Commands; use Fisharebest\Localization\Translation; use Fisharebest\Webtrees\Webtrees; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; use function basename; use function count; use function dirname; use function file_put_contents; use function glob; use function realpath; use function var_export; class CompilePoFiles extends Command { private const PO_FILE_PATTERN = Webtrees::ROOT_DIR . 'resources/lang/*/*.po'; protected function configure(): void { $this ->setName(name: 'compile-po-files') ->setDescription(description: 'Convert the PO files into PHP files'); } protected function execute(InputInterface $input, OutputInterface $output): int { $io = new SymfonyStyle(input: $input, output: $output); $po_files = glob(pattern: self::PO_FILE_PATTERN); if ($po_files === false || $po_files === []) { $io->error('Failed to find any PO files matching ' . self::PO_FILE_PATTERN); return Command::FAILURE; } $error = false; foreach ($po_files as $po_file) { $po_file = realpath($po_file); $translation = new Translation(filename: $po_file); $translations = $translation->asArray(); $php_file = dirname(path: $po_file) . '/' . basename(path: $po_file, suffix: '.po') . '.php'; $php_code = "error('Failed to write to ' . $php_file); $error = true; } else { $io->success('Created ' . $php_file . ' with ' . count(value: $translations) . ' translations'); } } return $error ? Command::FAILURE : Command::SUCCESS; } }