TranslationWriter.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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\Writer;
  11. use Symfony\Component\Translation\Dumper\DumperInterface;
  12. use Symfony\Component\Translation\Exception\InvalidArgumentException;
  13. use Symfony\Component\Translation\Exception\RuntimeException;
  14. use Symfony\Component\Translation\MessageCatalogue;
  15. /**
  16. * TranslationWriter writes translation messages.
  17. *
  18. * @author Michel Salib <michelsalib@hotmail.com>
  19. */
  20. class TranslationWriter implements TranslationWriterInterface
  21. {
  22. private $dumpers = [];
  23. /**
  24. * Adds a dumper to the writer.
  25. */
  26. public function addDumper(string $format, DumperInterface $dumper)
  27. {
  28. $this->dumpers[$format] = $dumper;
  29. }
  30. /**
  31. * Obtains the list of supported formats.
  32. *
  33. * @return array
  34. */
  35. public function getFormats()
  36. {
  37. return array_keys($this->dumpers);
  38. }
  39. /**
  40. * Writes translation from the catalogue according to the selected format.
  41. *
  42. * @param string $format The format to use to dump the messages
  43. * @param array $options Options that are passed to the dumper
  44. *
  45. * @throws InvalidArgumentException
  46. */
  47. public function write(MessageCatalogue $catalogue, string $format, array $options = [])
  48. {
  49. if (!isset($this->dumpers[$format])) {
  50. throw new InvalidArgumentException(sprintf('There is no dumper associated with format "%s".', $format));
  51. }
  52. // get the right dumper
  53. $dumper = $this->dumpers[$format];
  54. if (isset($options['path']) && !is_dir($options['path']) && !@mkdir($options['path'], 0777, true) && !is_dir($options['path'])) {
  55. throw new RuntimeException(sprintf('Translation Writer was not able to create directory "%s".', $options['path']));
  56. }
  57. // save
  58. $dumper->dump($catalogue, $options);
  59. }
  60. }