61 lines
2.6 KiB
PHP
61 lines
2.6 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace DigiComp\HetznerDnsApi\Normalizer;
|
||
|
|
||
|
use Jane\Component\JsonSchemaRuntime\Reference;
|
||
|
use DigiComp\HetznerDnsApi\Runtime\Normalizer\CheckArray;
|
||
|
use Symfony\Component\Serializer\Exception\InvalidArgumentException;
|
||
|
use Symfony\Component\Serializer\Normalizer\DenormalizerAwareInterface;
|
||
|
use Symfony\Component\Serializer\Normalizer\DenormalizerAwareTrait;
|
||
|
use Symfony\Component\Serializer\Normalizer\DenormalizerInterface;
|
||
|
use Symfony\Component\Serializer\Normalizer\NormalizerAwareInterface;
|
||
|
use Symfony\Component\Serializer\Normalizer\NormalizerAwareTrait;
|
||
|
use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
|
||
|
class RecordsRecordIDGetResponse200Normalizer implements DenormalizerInterface, NormalizerInterface, DenormalizerAwareInterface, NormalizerAwareInterface
|
||
|
{
|
||
|
use DenormalizerAwareTrait;
|
||
|
use NormalizerAwareTrait;
|
||
|
use CheckArray;
|
||
|
public function supportsDenormalization($data, $type, $format = null) : bool
|
||
|
{
|
||
|
return $type === 'DigiComp\\HetznerDnsApi\\Model\\RecordsRecordIDGetResponse200';
|
||
|
}
|
||
|
public function supportsNormalization($data, $format = null) : bool
|
||
|
{
|
||
|
return is_object($data) && get_class($data) === 'DigiComp\\HetznerDnsApi\\Model\\RecordsRecordIDGetResponse200';
|
||
|
}
|
||
|
/**
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function denormalize($data, $class, $format = null, array $context = array())
|
||
|
{
|
||
|
if (isset($data['$ref'])) {
|
||
|
return new Reference($data['$ref'], $context['document-origin']);
|
||
|
}
|
||
|
if (isset($data['$recursiveRef'])) {
|
||
|
return new Reference($data['$recursiveRef'], $context['document-origin']);
|
||
|
}
|
||
|
$object = new \DigiComp\HetznerDnsApi\Model\RecordsRecordIDGetResponse200();
|
||
|
if (null === $data || false === \is_array($data)) {
|
||
|
return $object;
|
||
|
}
|
||
|
if (\array_key_exists('record', $data) && $data['record'] !== null) {
|
||
|
$object->setRecord($this->denormalizer->denormalize($data['record'], 'DigiComp\\HetznerDnsApi\\Model\\RecordResponse', 'json', $context));
|
||
|
}
|
||
|
elseif (\array_key_exists('record', $data) && $data['record'] === null) {
|
||
|
$object->setRecord(null);
|
||
|
}
|
||
|
return $object;
|
||
|
}
|
||
|
/**
|
||
|
* @return array|string|int|float|bool|\ArrayObject|null
|
||
|
*/
|
||
|
public function normalize($object, $format = null, array $context = array())
|
||
|
{
|
||
|
$data = array();
|
||
|
if (null !== $object->getRecord()) {
|
||
|
$data['record'] = $this->normalizer->normalize($object->getRecord(), 'json', $context);
|
||
|
}
|
||
|
return $data;
|
||
|
}
|
||
|
}
|