forked from docker-php/docker-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceNormalizer.php
More file actions
94 lines (84 loc) · 3.56 KB
/
Copy pathServiceNormalizer.php
File metadata and controls
94 lines (84 loc) · 3.56 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php
namespace Docker\API\Normalizer;
use Joli\Jane\Reference\Reference;
use Symfony\Component\Serializer\Normalizer\DenormalizerInterface;
use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
use Symfony\Component\Serializer\Normalizer\SerializerAwareNormalizer;
class ServiceNormalizer extends SerializerAwareNormalizer implements DenormalizerInterface, NormalizerInterface
{
public function supportsDenormalization($data, $type, $format = null)
{
if ($type !== 'Docker\\API\\Model\\Service') {
return false;
}
return true;
}
public function supportsNormalization($data, $format = null)
{
if ($data instanceof \Docker\API\Model\Service) {
return true;
}
return false;
}
public function denormalize($data, $class, $format = null, array $context = [])
{
if (empty($data)) {
return null;
}
if (isset($data->{'$ref'})) {
return new Reference($data->{'$ref'}, $context['rootSchema'] ?: null);
}
$object = new \Docker\API\Model\Service();
if (!isset($context['rootSchema'])) {
$context['rootSchema'] = $object;
}
if (property_exists($data, 'ID')) {
$object->setID($data->{'ID'});
}
if (property_exists($data, 'Version')) {
$object->setVersion($this->serializer->deserialize($data->{'Version'}, 'Docker\\API\\Model\\NodeVersion', 'raw', $context));
}
if (property_exists($data, 'CreatedAt')) {
$object->setCreatedAt(\DateTime::createFromFormat("Y-m-d\TH:i:sP", $data->{'CreatedAt'}));
}
if (property_exists($data, 'UpdatedAt')) {
$object->setUpdatedAt(\DateTime::createFromFormat("Y-m-d\TH:i:sP", $data->{'UpdatedAt'}));
}
if (property_exists($data, 'Spec')) {
$object->setSpec($this->serializer->deserialize($data->{'Spec'}, 'Docker\\API\\Model\\ServiceSpec', 'raw', $context));
}
if (property_exists($data, 'Endpoint')) {
$object->setEndpoint($this->serializer->deserialize($data->{'Endpoint'}, 'Docker\\API\\Model\\Endpoint', 'raw', $context));
}
if (property_exists($data, 'UpdateStatus')) {
$object->setUpdateStatus($this->serializer->deserialize($data->{'UpdateStatus'}, 'Docker\\API\\Model\\UpdateStatus', 'raw', $context));
}
return $object;
}
public function normalize($object, $format = null, array $context = [])
{
$data = new \stdClass();
if (null !== $object->getID()) {
$data->{'ID'} = $object->getID();
}
if (null !== $object->getVersion()) {
$data->{'Version'} = $this->serializer->serialize($object->getVersion(), 'raw', $context);
}
if (null !== $object->getCreatedAt()) {
$data->{'CreatedAt'} = $object->getCreatedAt()->format("Y-m-d\TH:i:sP");
}
if (null !== $object->getUpdatedAt()) {
$data->{'UpdatedAt'} = $object->getUpdatedAt()->format("Y-m-d\TH:i:sP");
}
if (null !== $object->getSpec()) {
$data->{'Spec'} = $this->serializer->serialize($object->getSpec(), 'raw', $context);
}
if (null !== $object->getEndpoint()) {
$data->{'Endpoint'} = $this->serializer->serialize($object->getEndpoint(), 'raw', $context);
}
if (null !== $object->getUpdateStatus()) {
$data->{'UpdateStatus'} = $this->serializer->serialize($object->getUpdateStatus(), 'raw', $context);
}
return $data;
}
}