-
-
Notifications
You must be signed in to change notification settings - Fork 901
/
Copy pathUlidUriVariableTransformer.php
44 lines (38 loc) · 1.18 KB
/
UlidUriVariableTransformer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
/*
* This file is part of the API Platform project.
*
* (c) Kévin Dunglas <dunglas@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace ApiPlatform\Symfony\UriVariableTransformer;
use ApiPlatform\Metadata\Exception\InvalidUriVariableException;
use ApiPlatform\Metadata\UriVariableTransformerInterface;
use Symfony\Component\Uid\Ulid;
/**
* Transforms an ULID string to an instance of Symfony\Component\Uid\Ulid.
*/
final class UlidUriVariableTransformer implements UriVariableTransformerInterface
{
/**
* {@inheritdoc}
*/
public function transform(mixed $value, array $types, array $context = []): Ulid
{
try {
return Ulid::fromString($value);
} catch (\InvalidArgumentException $e) {
throw new InvalidUriVariableException($e->getMessage(), $e->getCode(), $e);
}
}
/**
* {@inheritdoc}
*/
public function supportsTransformation(mixed $value, array $types, array $context = []): bool
{
return \is_string($value) && is_a($types[0], Ulid::class, true);
}
}