1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* Created by PhpStorm. |
4
|
|
|
* User: alex |
5
|
|
|
* Date: 22/07/20 |
6
|
|
|
* Time: 8:21 PM |
7
|
|
|
*/ |
8
|
|
|
|
9
|
|
|
namespace AlgoWeb\ODataMetadata\Helpers; |
10
|
|
|
|
11
|
|
|
use AlgoWeb\ODataMetadata\CsdlConstants; |
12
|
|
|
use AlgoWeb\ODataMetadata\Edm\Validation\Internal\ValidationHelper; |
13
|
|
|
use AlgoWeb\ODataMetadata\EdmConstants; |
14
|
|
|
use AlgoWeb\ODataMetadata\Exception\InvalidOperationException; |
15
|
|
|
use AlgoWeb\ODataMetadata\Interfaces\IEdmElement; |
16
|
|
|
use AlgoWeb\ODataMetadata\Interfaces\IModel; |
17
|
|
|
|
18
|
|
|
trait ValueHelpers |
19
|
|
|
{ |
20
|
|
|
/** |
21
|
|
|
* Sets an annotation indicating if the value should be serialized as an element. |
22
|
|
|
* @param IModel $model Model containing the value. |
23
|
|
|
* @param bool $isSerializedAsElement Value indicating if the value should be serialized as an element. |
24
|
|
|
*/ |
25
|
|
|
public function SetIsSerializedAsElement(IModel $model, bool $isSerializedAsElement): void |
26
|
|
|
{ |
27
|
|
|
/** @var IEdmElement $self */ |
28
|
|
|
$self = $this; |
29
|
|
|
assert($self instanceof IEdmElement); |
30
|
|
|
if ($isSerializedAsElement) { |
31
|
|
|
$error = null; |
32
|
|
|
if (!ValidationHelper::ValidateValueCanBeWrittenAsXmlElementAnnotation( |
33
|
|
|
$self, |
34
|
|
|
null, |
|
|
|
|
35
|
|
|
null, |
|
|
|
|
36
|
|
|
$error |
|
|
|
|
37
|
|
|
) |
38
|
|
|
) { |
39
|
|
|
throw new InvalidOperationException(strval($error)); |
40
|
|
|
} |
41
|
|
|
} |
42
|
|
|
|
43
|
|
|
$model->SetAnnotationValue( |
44
|
|
|
$self, |
45
|
|
|
EdmConstants::InternalUri, |
46
|
|
|
CsdlConstants::IsSerializedAsElementAnnotation, |
47
|
|
|
$isSerializedAsElement |
48
|
|
|
); |
49
|
|
|
} |
50
|
|
|
|
51
|
|
|
/** |
52
|
|
|
* Gets an annotation indicating if the value should be serialized as an element. |
53
|
|
|
* @param IModel $model Model containing the value. |
54
|
|
|
* @return bool Value indicating if the string should be serialized as an element. |
55
|
|
|
*/ |
56
|
|
|
public function IsSerializedAsElement(IModel $model): bool |
57
|
|
|
{ |
58
|
|
|
$self = $this; |
59
|
|
|
assert($self instanceof IEdmElement); |
60
|
|
|
$value = $model->GetAnnotationValue( |
61
|
|
|
'boolean', |
62
|
|
|
$self, |
63
|
|
|
EdmConstants::InternalUri, |
64
|
|
|
CsdlConstants::IsSerializedAsElementAnnotation |
65
|
|
|
); |
66
|
|
|
return is_bool($value) ? $value : false; |
67
|
|
|
} |
68
|
|
|
} |
69
|
|
|
|