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 ExpensePaymentStatusUpdatedEventNormalizer 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\\ExpensePaymentStatusUpdatedEvent'; |
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\\ExpensePaymentStatusUpdatedEvent'; |
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\ExpensePaymentStatusUpdatedEvent(); |
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('expense_id', $data)) { |
60: | $object->setExpenseId($data['expense_id']); |
61: | unset($data['expense_id']); |
62: | } |
63: | if (\array_key_exists('payment_status', $data)) { |
64: | $object->setPaymentStatus($data['payment_status']); |
65: | unset($data['payment_status']); |
66: | } |
67: | if (\array_key_exists('payment_type', $data)) { |
68: | $object->setPaymentType($data['payment_type']); |
69: | unset($data['payment_type']); |
70: | } |
71: | if (\array_key_exists('company_id', $data)) { |
72: | $object->setCompanyId($data['company_id']); |
73: | unset($data['company_id']); |
74: | } |
75: | if (\array_key_exists('amount', $data)) { |
76: | $object->setAmount($this->denormalizer->denormalize($data['amount'], 'NxSys\\Library\\Clients\\Brex\\API\\Webhooks\\Model\\ExpensePaymentStatusUpdatedEventAmount', 'json', $context)); |
77: | unset($data['amount']); |
78: | } |
79: | if (\array_key_exists('payment_description', $data)) { |
80: | $object->setPaymentDescription($data['payment_description']); |
81: | unset($data['payment_description']); |
82: | } |
83: | foreach ($data as $key => $value) { |
84: | if (preg_match('/.*/', (string) $key)) { |
85: | $object[$key] = $value; |
86: | } |
87: | } |
88: | |
89: | return $object; |
90: | } |
91: | |
92: | |
93: | |
94: | |
95: | public function normalize($object, $format = null, array $context = []) |
96: | { |
97: | $data = []; |
98: | $data['event_type'] = $object->getEventType(); |
99: | $data['expense_id'] = $object->getExpenseId(); |
100: | $data['payment_status'] = $object->getPaymentStatus(); |
101: | $data['payment_type'] = $object->getPaymentType(); |
102: | if ($object->isInitialized('companyId') && null !== $object->getCompanyId()) { |
103: | $data['company_id'] = $object->getCompanyId(); |
104: | } |
105: | if ($object->isInitialized('amount') && null !== $object->getAmount()) { |
106: | $data['amount'] = $this->normalizer->normalize($object->getAmount(), 'json', $context); |
107: | } |
108: | if ($object->isInitialized('paymentDescription') && null !== $object->getPaymentDescription()) { |
109: | $data['payment_description'] = $object->getPaymentDescription(); |
110: | } |
111: | foreach ($object as $key => $value) { |
112: | if (preg_match('/.*/', (string) $key)) { |
113: | $data[$key] = $value; |
114: | } |
115: | } |
116: | |
117: | return $data; |
118: | } |
119: | } |
120: | |