1 | <?php |
||
9 | class Filter extends AbstractArrayAccessibleCollection implements \JsonSerializable |
||
10 | { |
||
11 | /** |
||
12 | * The filters are concatenated AND-wise |
||
13 | */ |
||
14 | const CONDITION_TYPE_AND = 'AND'; |
||
15 | |||
16 | /** |
||
17 | * The filters are concatenated OR-wise |
||
18 | */ |
||
19 | const CONDITION_TYPE_OR = 'OR'; |
||
20 | |||
21 | /** |
||
22 | * The filters are concatenated XOR-wise |
||
23 | * Note: This is not currently supported by Doctrine, but left in for completeness |
||
24 | */ |
||
25 | const CONDITION_TYPE_XOR = 'XOR'; |
||
26 | |||
27 | /** |
||
28 | * Condition concatenation type, by default OR |
||
29 | * |
||
30 | * @var int |
||
31 | */ |
||
32 | private $conditionType = self::CONDITION_TYPE_AND; |
||
33 | |||
34 | /** |
||
35 | * Create a FilterDefinition from a deserialized compact exchange JSON filters. |
||
36 | * This wil recursively call itself to unpack the whole filter tree. |
||
37 | * |
||
38 | * @param $jsonSerializable |
||
39 | * |
||
40 | * @return array|Filter|FilterCondition |
||
41 | * @throws \Exception |
||
42 | * @deprecated Deprecated to be removed in 1.0.0. It seems to be unused. |
||
43 | */ |
||
44 | public static function createFromJsonSerializable($jsonSerializable) |
||
45 | { |
||
46 | @trigger_error('createFromJsonSerializable() is deprecated and will be removed in 1.0.0. It seems to be unused.', E_USER_DEPRECATED); |
||
|
|||
47 | |||
48 | if (!count((array) $jsonSerializable)) { |
||
49 | // Edge case: empty filter |
||
50 | return new Filter(); |
||
51 | } |
||
52 | |||
53 | if (count($jsonSerializable) == 2 && is_array($jsonSerializable[1])) { |
||
54 | // Complex Filter |
||
55 | $logic = $jsonSerializable[0]; |
||
56 | $elements = $jsonSerializable[1]; |
||
57 | $filter = new Filter(); |
||
58 | $filter->setConditionType($logic); |
||
59 | foreach ($elements as $element) { |
||
60 | $filter[] = static::createFromJsonSerializable($element); |
||
61 | } |
||
62 | |||
63 | return $filter; |
||
64 | } elseif (count($jsonSerializable) == 3) { |
||
65 | // Simple element |
||
66 | return new FilterCondition($jsonSerializable[0], $jsonSerializable[1], $jsonSerializable[2], $jsonSerializable[2]); |
||
67 | } |
||
68 | |||
69 | throw new \Exception('Unable to parse JSON-serializable filter structure'); |
||
70 | } |
||
71 | |||
72 | public function toUQL() |
||
85 | |||
86 | /** |
||
87 | * (PHP 5 >= 5.4.0)<br/> |
||
88 | * Specify data which should be serialized to JSON |
||
89 | * |
||
90 | * @link http://php.net/manual/en/jsonserializable.jsonserialize.php |
||
91 | * @return mixed data which can be serialized by <b>json_encode</b>, |
||
92 | * which is a value of any type other than a resource. |
||
93 | */ |
||
94 | public function jsonSerialize() |
||
95 | { |
||
96 | $serializableArray = [ |
||
97 | 'logic' => $this->getConditionType(), |
||
98 | 'elements' => [], |
||
99 | ]; |
||
100 | foreach ($this as $filter) { |
||
101 | $serializableArray['elements'][] = $filter->toJsonSerializable(); |
||
102 | } |
||
103 | |||
104 | return $serializableArray; |
||
105 | } |
||
106 | |||
107 | /** |
||
108 | * Recursively compact into a easily JSON-serializable array |
||
109 | * representation |
||
110 | * @deprecated Deprecated to be removed in 1.0.0. It seems to be unused. |
||
111 | */ |
||
112 | public function toJsonSerializable() |
||
113 | { |
||
114 | @trigger_error('toJsonSerializable() is deprecated and will be removed in 1.0.0. It seems to be unused.', E_USER_DEPRECATED); |
||
115 | |||
116 | return $this->jsonSerialize(); |
||
117 | } |
||
118 | |||
119 | /** |
||
120 | * @return int |
||
121 | */ |
||
122 | public function getConditionType() |
||
126 | |||
127 | /** |
||
128 | * @param int $conditionType |
||
129 | */ |
||
130 | public function setConditionType($conditionType) |
||
134 | |||
135 | public function getAllFirstLevelFilteredDataSourceUniqueNames() |
||
146 | |||
147 | /** |
||
148 | * Flatten the tree of Filters into a one-dimensional array |
||
149 | * or FilterConditions. |
||
150 | * |
||
151 | * @return FilterCondition[] |
||
152 | */ |
||
153 | public function getAllFilterConditionsFlat() |
||
169 | } |
||
170 |
If you suppress an error, we recommend checking for the error condition explicitly: