Passed
Push — master ( bbb696...321daf )
by Angel Fernando Quiroz
09:33
created

UserNormalizer   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 33
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 11
c 1
b 0
f 0
dl 0
loc 33
rs 10
wmc 5

4 Methods

Rating   Name   Duplication   Size   Complexity  
A supportsNormalization() 0 7 2
A normalize() 0 9 1
A getSupportedTypes() 0 3 1
A __construct() 0 3 1
1
<?php
2
3
/* For licensing terms, see /license.txt */
4
5
declare(strict_types=1);
6
7
namespace Chamilo\CoreBundle\Serializer\Normalizer;
8
9
use Chamilo\CoreBundle\Component\Utils\NameConvention;
10
use Chamilo\CoreBundle\Entity\User;
11
use Symfony\Component\Serializer\Normalizer\NormalizerAwareInterface;
12
use Symfony\Component\Serializer\Normalizer\NormalizerAwareTrait;
13
use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
14
15
class UserNormalizer implements NormalizerInterface, NormalizerAwareInterface
16
{
17
    use NormalizerAwareTrait;
18
19
    private const ALREADY_CALLED = 'USER_NORMALIZER_ALREADY_CALLED';
20
21
    public function __construct(
22
        private readonly NameConvention $nameConvention,
23
    ) {}
24
25
    public function normalize($object, ?string $format = null, array $context = []): array
26
    {
27
        $context[self::ALREADY_CALLED] = true;
28
29
        $data = $this->normalizer->normalize($object, $format, $context);
30
31
        $data['fullName'] = $this->nameConvention->getPersonName($object);
32
33
        return $data;
34
    }
35
36
    public function supportsNormalization($data, ?string $format = null, array $context = []): bool
37
    {
38
        if (isset($context[self::ALREADY_CALLED])) {
39
            return false;
40
        }
41
42
        return $data instanceof User;
43
    }
44
45
    public function getSupportedTypes(?string $format): array
46
    {
47
        return [User::class => false];
48
    }
49
}
50