1: | <?php |
2: | |
3: | declare(strict_types=1); |
4: | |
5: | |
6: | |
7: | |
8: | |
9: | |
10: | |
11: | namespace NxSys\Library\Clients\Brex\API\Webhooks\Normalizer; |
12: | |
13: | use Jane\Component\JsonSchemaRuntime\Reference; |
14: | use NxSys\Library\Clients\Brex\API\Webhooks\Runtime\Normalizer\CheckArray; |
15: | use NxSys\Library\Clients\Brex\API\Webhooks\Runtime\Normalizer\ValidatorTrait; |
16: | use Symfony\Component\Serializer\Normalizer\DenormalizerAwareInterface; |
17: | use Symfony\Component\Serializer\Normalizer\DenormalizerAwareTrait; |
18: | use Symfony\Component\Serializer\Normalizer\DenormalizerInterface; |
19: | use Symfony\Component\Serializer\Normalizer\NormalizerAwareInterface; |
20: | use Symfony\Component\Serializer\Normalizer\NormalizerAwareTrait; |
21: | use Symfony\Component\Serializer\Normalizer\NormalizerInterface; |
22: | |
23: | class UserUpdatedEventNormalizer implements DenormalizerInterface, NormalizerInterface, DenormalizerAwareInterface, NormalizerAwareInterface |
24: | { |
25: | use DenormalizerAwareTrait; |
26: | use NormalizerAwareTrait; |
27: | use CheckArray; |
28: | use ValidatorTrait; |
29: | |
30: | public function supportsDenormalization($data, $type, $format = null): bool |
31: | { |
32: | return $type === 'NxSys\\Library\\Clients\\Brex\\API\\Webhooks\\Model\\UserUpdatedEvent'; |
33: | } |
34: | |
35: | public function supportsNormalization($data, $format = null): bool |
36: | { |
37: | return is_object($data) && get_class($data) === 'NxSys\\Library\\Clients\\Brex\\API\\Webhooks\\Model\\UserUpdatedEvent'; |
38: | } |
39: | |
40: | |
41: | |
42: | |
43: | public function denormalize($data, $class, $format = null, array $context = []) |
44: | { |
45: | if (isset($data['$ref'])) { |
46: | return new Reference($data['$ref'], $context['document-origin']); |
47: | } |
48: | if (isset($data['$recursiveRef'])) { |
49: | return new Reference($data['$recursiveRef'], $context['document-origin']); |
50: | } |
51: | $object = new \NxSys\Library\Clients\Brex\API\Webhooks\Model\UserUpdatedEvent(); |
52: | if (null === $data || false === \is_array($data)) { |
53: | return $object; |
54: | } |
55: | if (\array_key_exists('event_type', $data)) { |
56: | $object->setEventType($data['event_type']); |
57: | unset($data['event_type']); |
58: | } |
59: | if (\array_key_exists('user_id', $data)) { |
60: | $object->setUserId($data['user_id']); |
61: | unset($data['user_id']); |
62: | } |
63: | if (\array_key_exists('company_id', $data)) { |
64: | $object->setCompanyId($data['company_id']); |
65: | unset($data['company_id']); |
66: | } |
67: | if (\array_key_exists('updated_attributes', $data)) { |
68: | $values = []; |
69: | foreach ($data['updated_attributes'] as $value) { |
70: | $values[] = $value; |
71: | } |
72: | $object->setUpdatedAttributes($values); |
73: | unset($data['updated_attributes']); |
74: | } |
75: | foreach ($data as $key => $value_1) { |
76: | if (preg_match('/.*/', (string) $key)) { |
77: | $object[$key] = $value_1; |
78: | } |
79: | } |
80: | |
81: | return $object; |
82: | } |
83: | |
84: | |
85: | |
86: | |
87: | public function normalize($object, $format = null, array $context = []) |
88: | { |
89: | $data = []; |
90: | $data['event_type'] = $object->getEventType(); |
91: | $data['user_id'] = $object->getUserId(); |
92: | $data['company_id'] = $object->getCompanyId(); |
93: | $values = []; |
94: | foreach ($object->getUpdatedAttributes() as $value) { |
95: | $values[] = $value; |
96: | } |
97: | $data['updated_attributes'] = $values; |
98: | foreach ($object as $key => $value_1) { |
99: | if (preg_match('/.*/', (string) $key)) { |
100: | $data[$key] = $value_1; |
101: | } |
102: | } |
103: | |
104: | return $data; |
105: | } |
106: | } |
107: | |