PeclUuidNameGenerator.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. /**
  3. * This file is part of the ramsey/uuid library
  4. *
  5. * For the full copyright and license information, please view the LICENSE
  6. * file that was distributed with this source code.
  7. *
  8. * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com>
  9. * @license http://opensource.org/licenses/MIT MIT
  10. */
  11. declare(strict_types=1);
  12. namespace Ramsey\Uuid\Generator;
  13. use Ramsey\Uuid\Exception\NameException;
  14. use Ramsey\Uuid\UuidInterface;
  15. use function sprintf;
  16. use function uuid_generate_md5;
  17. use function uuid_generate_sha1;
  18. use function uuid_parse;
  19. /**
  20. * PeclUuidNameGenerator generates strings of binary data from a namespace and a
  21. * name, using ext-uuid
  22. *
  23. * @link https://pecl.php.net/package/uuid ext-uuid
  24. */
  25. class PeclUuidNameGenerator implements NameGeneratorInterface
  26. {
  27. /** @psalm-pure */
  28. public function generate(UuidInterface $ns, string $name, string $hashAlgorithm): string
  29. {
  30. switch ($hashAlgorithm) {
  31. case 'md5':
  32. $uuid = uuid_generate_md5($ns->toString(), $name);
  33. break;
  34. case 'sha1':
  35. $uuid = uuid_generate_sha1($ns->toString(), $name);
  36. break;
  37. default:
  38. throw new NameException(sprintf(
  39. 'Unable to hash namespace and name with algorithm \'%s\'',
  40. $hashAlgorithm
  41. ));
  42. }
  43. return uuid_parse($uuid);
  44. }
  45. }