IcuDatFileLoader.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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\Loader;
  11. use Symfony\Component\Config\Resource\FileResource;
  12. use Symfony\Component\Translation\Exception\InvalidResourceException;
  13. use Symfony\Component\Translation\Exception\NotFoundResourceException;
  14. use Symfony\Component\Translation\MessageCatalogue;
  15. /**
  16. * IcuResFileLoader loads translations from a resource bundle.
  17. *
  18. * @author stealth35
  19. */
  20. class IcuDatFileLoader extends IcuResFileLoader
  21. {
  22. public function load(mixed $resource, string $locale, string $domain = 'messages'): MessageCatalogue
  23. {
  24. if (!stream_is_local($resource.'.dat')) {
  25. throw new InvalidResourceException(sprintf('This is not a local file "%s".', $resource));
  26. }
  27. if (!file_exists($resource.'.dat')) {
  28. throw new NotFoundResourceException(sprintf('File "%s" not found.', $resource));
  29. }
  30. try {
  31. $rb = new \ResourceBundle($locale, $resource);
  32. } catch (\Exception) {
  33. $rb = null;
  34. }
  35. if (!$rb) {
  36. throw new InvalidResourceException(sprintf('Cannot load resource "%s".', $resource));
  37. } elseif (intl_is_failure($rb->getErrorCode())) {
  38. throw new InvalidResourceException($rb->getErrorMessage(), $rb->getErrorCode());
  39. }
  40. $messages = $this->flatten($rb);
  41. $catalogue = new MessageCatalogue($locale);
  42. $catalogue->add($messages, $domain);
  43. if (class_exists(FileResource::class)) {
  44. $catalogue->addResource(new FileResource($resource.'.dat'));
  45. }
  46. return $catalogue;
  47. }
  48. }