1 | <?php |
||
56 | class Item extends ItemList implements ItemInterface |
||
57 | { |
||
58 | /** |
||
59 | * Application item |
||
60 | * |
||
61 | * @var ApplicationItemInterface |
||
62 | */ |
||
63 | protected $item; |
||
64 | |||
65 | /** |
||
66 | * Item constructor |
||
67 | * |
||
68 | * @param ApplicationItemInterface $item Application item |
||
69 | */ |
||
70 | 13 | public function __construct(ApplicationItemInterface $item) |
|
71 | { |
||
72 | 13 | $this->item = $item; |
|
73 | 13 | parent::__construct(ItemFactory::createFromApplicationItems($this->item->getChildren())); |
|
74 | 13 | } |
|
75 | |||
76 | /** |
||
77 | * Get the first value of an item property |
||
78 | * |
||
79 | * @param string $name Item property name |
||
80 | * @return array|string|ItemInterface First value of an item property |
||
81 | * @api |
||
82 | */ |
||
83 | 2 | public function __get($name) |
|
84 | { |
||
85 | 2 | return $this->getProperty($name, null, 0); |
|
86 | } |
||
87 | |||
88 | /** |
||
89 | * Get a single property (value) |
||
90 | * |
||
91 | * @param string $name Property name |
||
92 | * @param string $profile Property profile |
||
93 | * @param int $index Property value index |
||
94 | * @return array|string|ItemInterface Property value(s) |
||
95 | * @throws OutOfBoundsException If the property name is unknown |
||
96 | * @throws OutOfBoundsException If the property value index is out of bounds |
||
97 | * @api |
||
98 | */ |
||
99 | 7 | public function getProperty($name, $profile = null, $index = null) |
|
100 | { |
||
101 | try { |
||
102 | 7 | $propertyValues = $this->item->getProperty($name, $profile); |
|
103 | 4 | } catch (DomainOutOfBoundsException $e) { |
|
104 | 4 | throw new OutOfBoundsException($e->getMessage(), $e->getCode()); |
|
105 | } |
||
106 | |||
107 | // If all property values should be returned |
||
108 | 7 | if ($index === null) { |
|
109 | 5 | return array_map([$this, 'exportPropertyValue'], $propertyValues); |
|
110 | } |
||
111 | |||
112 | // If the property value index is out of bounds |
||
113 | 6 | if (!isset($propertyValues[$index])) { |
|
114 | 1 | throw new OutOfBoundsException( |
|
115 | 1 | sprintf(OutOfBoundsException::INVALID_PROPERTY_VALUE_INDEX_STR, $index), |
|
116 | 1 | OutOfBoundsException::INVALID_PROPERTY_VALUE_INDEX |
|
117 | ); |
||
118 | } |
||
119 | |||
120 | 5 | return $this->exportPropertyValue($propertyValues[$index]); |
|
121 | } |
||
122 | |||
123 | /** |
||
124 | * Prepare a property value for returning it |
||
125 | * |
||
126 | * @param ValueInterface $value Property value |
||
127 | * @return Item|mixed Returnable property value |
||
128 | */ |
||
129 | 6 | protected function exportPropertyValue(ValueInterface $value) |
|
130 | { |
||
131 | 6 | return ($value instanceof ApplicationItemInterface) ? |
|
132 | 6 | ItemFactory::createFromApplicationItem($value) : $value->export(); |
|
133 | } |
||
134 | |||
135 | /** |
||
136 | * Return whether the item is of a particular type (or contained in a list of types) |
||
137 | * |
||
138 | * The item type(s) can be specified in a variety of ways, @see ProfiledNamesFactory::createFromArguments() |
||
139 | * |
||
140 | * @param array ...$types Item types |
||
141 | * @return boolean Item type is contained in the list of types |
||
142 | * @api |
||
143 | */ |
||
144 | 5 | public function isOfType(...$types) |
|
145 | { |
||
146 | /** @var ProfiledNamesList $profiledTypes */ |
||
147 | 5 | $profiledTypes = ProfiledNamesFactory::createFromArguments($types); |
|
148 | 5 | $aliasFactory = new AliasFactory(); |
|
149 | |||
150 | // Run through all item types |
||
151 | /** @var \stdClass $itemType */ |
||
152 | 5 | foreach ($this->item->getType() as $itemType) { |
|
153 | 5 | $itemTypeNames = $aliasFactory->createAliases($itemType->name); |
|
154 | 5 | if ($this->isOfProfiledTypes($itemType->profile, $itemTypeNames, $profiledTypes)) { |
|
155 | 5 | return true; |
|
156 | } |
||
157 | } |
||
158 | |||
159 | 3 | return false; |
|
160 | } |
||
161 | |||
162 | /** |
||
163 | * Return whether an aliased item type in contained in a set of query types |
||
164 | * |
||
165 | * @param string $profile Type profile |
||
166 | * @param array $names Aliased type names |
||
167 | * @param ProfiledNamesList $types Query types |
||
168 | * @return bool Item type is contained in the set of query types |
||
169 | */ |
||
170 | 5 | protected function isOfProfiledTypes($profile, array $names, ProfiledNamesList $types) |
|
171 | { |
||
172 | // Run through all query types |
||
173 | /** @var \stdClass $queryType */ |
||
174 | 5 | foreach ($types as $queryType) { |
|
175 | 5 | if (in_array($queryType->name, $names) && |
|
176 | 5 | (($queryType->profile === null) ? true : ($queryType->profile == $profile)) |
|
177 | ) { |
||
178 | 5 | return true; |
|
179 | } |
||
180 | } |
||
181 | 3 | return false; |
|
182 | } |
||
183 | |||
184 | /** |
||
185 | * Get all values of the first available property in a stack |
||
186 | * |
||
187 | * The property stack can be specified in a variety of ways, @see ProfiledNamesFactory::createFromArguments() |
||
188 | * |
||
189 | * @param string $name Name |
||
190 | * @param string $profile Profile |
||
191 | * @return array|string|ItemInterface Property values |
||
192 | * @throws InvalidArgumentException If no property name was given |
||
193 | * @throws OutOfBoundsException If none of the requested properties is known |
||
194 | * @api |
||
195 | */ |
||
196 | 2 | public function getFirstProperty($name, $profile = null) |
|
218 | |||
219 | /** |
||
220 | * Return all properties |
||
221 | * |
||
222 | * @return PropertyListInterface Properties |
||
223 | * @api |
||
224 | */ |
||
225 | 1 | public function getProperties() |
|
230 | |||
231 | /** |
||
232 | * Return an object representation of the item |
||
233 | * |
||
234 | * @return \stdClass Micro information item |
||
235 | * @api |
||
236 | */ |
||
237 | 2 | public function toObject() |
|
241 | |||
242 | /** |
||
243 | * Get the item type |
||
244 | * |
||
245 | * @return \stdClass[] Item type |
||
246 | */ |
||
247 | 1 | public function getType() |
|
251 | |||
252 | /** |
||
253 | * Get the item format |
||
254 | * |
||
255 | * @return int Item format |
||
256 | */ |
||
257 | 1 | public function getFormat() |
|
261 | |||
262 | /** |
||
263 | * Get the item ID |
||
264 | * |
||
265 | * @return string Item ID |
||
266 | */ |
||
267 | public function getId() |
||
271 | |||
272 | /** |
||
273 | * Return the item value |
||
274 | * |
||
275 | * @return string Item value |
||
276 | */ |
||
277 | public function getValue() |
||
281 | } |
||
282 |