-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathComplexContent.php
More file actions
140 lines (113 loc) · 4.07 KB
/
Copy pathComplexContent.php
File metadata and controls
140 lines (113 loc) · 4.07 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?php
declare(strict_types=1);
namespace SimpleSAML\XMLSchema\XML;
use DOMElement;
use SimpleSAML\XML\Assert\Assert;
use SimpleSAML\XML\SchemaValidatableElementInterface;
use SimpleSAML\XML\SchemaValidatableElementTrait;
use SimpleSAML\XMLSchema\Exception\InvalidDOMElementException;
use SimpleSAML\XMLSchema\Exception\TooManyElementsException;
use SimpleSAML\XMLSchema\Type\BooleanValue;
use SimpleSAML\XMLSchema\Type\IDValue;
use function array_last;
use function array_merge;
use function strval;
/**
* Class representing the complexContent-type.
*
* @package simplesamlphp/xml-common
*/
final class ComplexContent extends AbstractAnnotated implements SchemaValidatableElementInterface
{
use SchemaValidatableElementTrait;
public const string LOCALNAME = 'complexContent';
/**
* ComplexContent constructor
*
* @param \SimpleSAML\XMLSchema\XML\ComplexRestriction|\SimpleSAML\XMLSchema\XML\Extension $content
* @param \SimpleSAML\XMLSchema\Type\BooleanValue|null $mixed
* @param \SimpleSAML\XMLSchema\XML\Annotation|null $annotation
* @param \SimpleSAML\XMLSchema\Type\IDValue|null $id
* @param array<\SimpleSAML\XML\Attribute> $namespacedAttributes
*/
public function __construct(
protected ComplexRestriction|Extension $content,
protected ?BooleanValue $mixed = null,
?Annotation $annotation = null,
?IDValue $id = null,
array $namespacedAttributes = [],
) {
parent::__construct($annotation, $id, $namespacedAttributes);
}
/**
* Collect the value of the content-property
*
* @return \SimpleSAML\XMLSchema\XML\ComplexRestriction|\SimpleSAML\XMLSchema\XML\Extension
*/
public function getContent(): ComplexRestriction|Extension
{
return $this->content;
}
/**
* Collect the value of the mixed-property
*
* @return \SimpleSAML\XMLSchema\Type\BooleanValue|null
*/
public function getMixed(): ?BooleanValue
{
return $this->mixed;
}
/**
* Test if an object, at the state it's in, would produce an empty XML-element
*
* @return bool
*/
public function isEmptyElement(): bool
{
return false;
}
/**
* Add this ComplexContent to an XML element.
*
* @param \DOMElement|null $parent The element we should append this ComplexContent to.
* @return \DOMElement
*/
public function toXML(?DOMElement $parent = null): DOMElement
{
$e = parent::toXML($parent);
if ($this->getMixed() !== null) {
$e->setAttribute('mixed', strval($this->getMixed()));
}
$this->getContent()->toXML($e);
return $e;
}
/**
* Create an instance of this object from its XML representation.
*
* @param \DOMElement $xml
* @return static
*
* @throws \SimpleSAML\XMLSchema\Exception\InvalidDOMElementException
* if the qualified name of the supplied element is wrong
*/
public static function fromXML(DOMElement $xml): static
{
Assert::same($xml->localName, static::getLocalName(), InvalidDOMElementException::class);
Assert::same($xml->namespaceURI, static::NS, InvalidDOMElementException::class);
$annotation = Annotation::getChildrenOfClass($xml);
Assert::maxCount($annotation, 1, TooManyElementsException::class);
$complexRestriction = ComplexRestriction::getChildrenOfClass($xml);
Assert::maxCount($complexRestriction, 1, TooManyElementsException::class);
$extension = Extension::getChildrenOfClass($xml);
Assert::maxCount($extension, 1, TooManyElementsException::class);
$content = array_merge($complexRestriction, $extension);
Assert::maxCount($content, 1, TooManyElementsException::class);
return new static(
$content[0],
self::getOptionalAttribute($xml, 'mixed', BooleanValue::class, null),
array_last($annotation),
self::getOptionalAttribute($xml, 'id', IDValue::class, null),
self::getAttributesNSFromXML($xml),
);
}
}