Total Complexity | 72 |
Total Lines | 652 |
Duplicated Lines | 0 % |
Changes | 36 | ||
Bugs | 0 | Features | 0 |
Complex classes like IronicSerialiser often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use IronicSerialiser, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
49 | class IronicSerialiser implements IObjectSerialiser |
||
50 | { |
||
51 | use SerialiseDepWrapperTrait; |
||
52 | use SerialisePropertyCacheTrait; |
||
53 | use SerialiseNavigationTrait; |
||
54 | use SerialiseLowLevelWritersTrait; |
||
55 | use SerialiseNextPageLinksTrait; |
||
56 | use SerialiseUtilitiesTrait; |
||
57 | |||
58 | /** |
||
59 | * Update time to insert into ODataEntry/ODataFeed fields |
||
60 | * @var Carbon |
||
61 | */ |
||
62 | private $updated; |
||
63 | |||
64 | /** |
||
65 | * Has base URI already been written out during serialisation? |
||
66 | * @var bool |
||
67 | */ |
||
68 | private $isBaseWritten = false; |
||
69 | |||
70 | /** |
||
71 | * @param IService $service Reference to the data service instance |
||
72 | * @param RequestDescription|null $request Type instance describing the client submitted request |
||
73 | * @throws \Exception |
||
74 | */ |
||
75 | public function __construct(IService $service, RequestDescription $request = null) |
||
76 | { |
||
77 | $this->service = $service; |
||
78 | $this->request = $request; |
||
79 | $this->absoluteServiceUri = $service->getHost()->getAbsoluteServiceUri()->getUrlAsString(); |
||
80 | $this->absoluteServiceUriWithSlash = rtrim($this->absoluteServiceUri, '/') . '/'; |
||
81 | $this->stack = new SegmentStack($request); |
||
82 | $this->complexTypeInstanceCollection = []; |
||
83 | $this->modelSerialiser = new ModelSerialiser(); |
||
84 | $this->updated = Carbon::now(); |
||
85 | } |
||
86 | |||
87 | /** |
||
88 | * Write a top level entry resource. |
||
89 | * |
||
90 | * @param QueryResult $entryObject Reference to the entry object to be written |
||
91 | * |
||
92 | * @return ODataEntry|null |
||
93 | * @throws InvalidOperationException |
||
94 | * @throws \ReflectionException |
||
95 | * @throws ODataException |
||
96 | */ |
||
97 | public function writeTopLevelElement(QueryResult $entryObject) |
||
98 | { |
||
99 | if (!isset($entryObject->results)) { |
||
100 | array_pop($this->lightStack); |
||
101 | return null; |
||
102 | } |
||
103 | $this->checkSingleElementInput($entryObject); |
||
104 | |||
105 | $this->loadStackIfEmpty(); |
||
106 | $baseURI = $this->isBaseWritten ? null : $this->absoluteServiceUriWithSlash; |
||
107 | $this->isBaseWritten = true; |
||
108 | |||
109 | $stackCount = count($this->lightStack); |
||
110 | $topOfStack = $this->lightStack[$stackCount-1]; |
||
111 | $payloadClass = get_class($entryObject->results); |
||
|
|||
112 | /** @var ResourceEntityType $resourceType */ |
||
113 | $resourceType = $this->getService()->getProvidersWrapper()->resolveResourceType($topOfStack['type']); |
||
114 | |||
115 | // need gubbinz to unpack an abstract resource type |
||
116 | $resourceType = $this->getConcreteTypeFromAbstractType($resourceType, $payloadClass); |
||
117 | |||
118 | // make sure we're barking up right tree |
||
119 | if (!$resourceType instanceof ResourceEntityType) { |
||
120 | throw new InvalidOperationException(get_class($resourceType)); |
||
121 | } |
||
122 | |||
123 | /** @var Model $res */ |
||
124 | $res = $entryObject->results; |
||
125 | $targClass = $resourceType->getInstanceType()->getName(); |
||
126 | if (!($res instanceof $targClass)) { |
||
127 | $msg = 'Object being serialised not instance of expected class, ' |
||
128 | . $targClass . ', is actually ' . $payloadClass; |
||
129 | throw new InvalidOperationException($msg); |
||
130 | } |
||
131 | |||
132 | $this->checkRelationPropertiesCached($targClass, $resourceType); |
||
133 | /** @var ResourceProperty[] $relProp */ |
||
134 | $relProp = $this->propertiesCache[$targClass]['rel']; |
||
135 | /** @var ResourceProperty[] $nonRelProp */ |
||
136 | $nonRelProp = $this->propertiesCache[$targClass]['nonRel']; |
||
137 | |||
138 | $resourceSet = $resourceType->getCustomState(); |
||
139 | if (!$resourceSet instanceof ResourceSet) { |
||
140 | throw new InvalidOperationException(''); |
||
141 | } |
||
142 | $title = $resourceType->getName(); |
||
143 | $type = $resourceType->getFullName(); |
||
144 | |||
145 | $relativeUri = $this->getEntryInstanceKey( |
||
146 | $res, |
||
147 | $resourceType, |
||
148 | $resourceSet->getName() |
||
149 | ); |
||
150 | $absoluteUri = rtrim($this->absoluteServiceUri, '/') . '/' . $relativeUri; |
||
151 | |||
152 | /** var $mediaLink ODataMediaLink|null */ |
||
153 | $mediaLink = null; |
||
154 | /** var $mediaLinks ODataMediaLink[] */ |
||
155 | $mediaLinks = []; |
||
156 | $this->writeMediaData( |
||
157 | $res, |
||
158 | $type, |
||
159 | $relativeUri, |
||
160 | $resourceType, |
||
161 | $mediaLink, |
||
162 | $mediaLinks |
||
163 | ); |
||
164 | |||
165 | $propertyContent = $this->writePrimitiveProperties($res, $nonRelProp); |
||
166 | |||
167 | $links = $this->buildLinksFromRels($entryObject, $relProp, $relativeUri); |
||
168 | |||
169 | $odata = new ODataEntry(); |
||
170 | $odata->resourceSetName = $resourceSet->getName(); |
||
171 | $odata->id = $absoluteUri; |
||
172 | $odata->title = new ODataTitle($title); |
||
173 | $odata->type = new ODataCategory($type); |
||
174 | $odata->propertyContent = $propertyContent; |
||
175 | $odata->isMediaLinkEntry = $resourceType->isMediaLinkEntry(); |
||
176 | $odata->editLink = new ODataLink(); |
||
177 | $odata->editLink->url = $relativeUri; |
||
178 | $odata->editLink->name = 'edit'; |
||
179 | $odata->editLink->title = $title; |
||
180 | $odata->mediaLink = $mediaLink; |
||
181 | $odata->mediaLinks = $mediaLinks; |
||
182 | $odata->links = $links; |
||
183 | $odata->updated = $this->getUpdated()->format(DATE_ATOM); |
||
184 | $odata->baseURI = $baseURI; |
||
185 | |||
186 | $newCount = count($this->lightStack); |
||
187 | if ($newCount != $stackCount) { |
||
188 | $msg = 'Should have ' . $stackCount . ' elements in stack, have ' . $newCount . ' elements'; |
||
189 | throw new InvalidOperationException($msg); |
||
190 | } |
||
191 | $this->updateLightStack($newCount); |
||
192 | return $odata; |
||
193 | } |
||
194 | |||
195 | /** |
||
196 | * Write top level feed element. |
||
197 | * |
||
198 | * @param QueryResult &$entryObjects Array of entry resources to be written |
||
199 | * |
||
200 | * @return ODataFeed |
||
201 | * @throws InvalidOperationException |
||
202 | * @throws ODataException |
||
203 | * @throws \ReflectionException |
||
204 | */ |
||
205 | public function writeTopLevelElements(QueryResult &$entryObjects) |
||
206 | { |
||
207 | $this->checkElementsInput($entryObjects); |
||
208 | |||
209 | $this->loadStackIfEmpty(); |
||
210 | |||
211 | $title = $this->getRequest()->getContainerName(); |
||
212 | $relativeUri = $this->getRequest()->getIdentifier(); |
||
213 | $absoluteUri = $this->getRequest()->getRequestUrl()->getUrlAsString(); |
||
214 | |||
215 | $selfLink = new ODataLink(); |
||
216 | $selfLink->name = 'self'; |
||
217 | $selfLink->title = $relativeUri; |
||
218 | $selfLink->url = $relativeUri; |
||
219 | |||
220 | $odata = new ODataFeed(); |
||
221 | $odata->title = new ODataTitle($title); |
||
222 | $odata->id = $absoluteUri; |
||
223 | $odata->selfLink = $selfLink; |
||
224 | $odata->updated = $this->getUpdated()->format(DATE_ATOM); |
||
225 | $odata->baseURI = $this->isBaseWritten ? null : $this->absoluteServiceUriWithSlash; |
||
226 | $this->isBaseWritten = true; |
||
227 | |||
228 | if ($this->getRequest()->queryType == QueryType::ENTITIES_WITH_COUNT()) { |
||
229 | $odata->rowCount = $this->getRequest()->getCountValue(); |
||
230 | } |
||
231 | $this->buildEntriesFromElements($entryObjects->results, $odata); |
||
232 | |||
233 | $resourceSet = $this->getRequest()->getTargetResourceSetWrapper()->getResourceSet(); |
||
234 | $requestTop = $this->getRequest()->getTopOptionCount(); |
||
235 | $pageSize = $this->getService()->getConfiguration()->getEntitySetPageSize($resourceSet); |
||
236 | $requestTop = (null === $requestTop) ? $pageSize+1 : $requestTop; |
||
237 | |||
238 | if (true === $entryObjects->hasMore && $requestTop > $pageSize) { |
||
239 | $this->buildNextPageLink($entryObjects, $odata); |
||
240 | } |
||
241 | |||
242 | return $odata; |
||
243 | } |
||
244 | |||
245 | /** |
||
246 | * Write top level url element. |
||
247 | * |
||
248 | * @param QueryResult $entryObject The entry resource whose url to be written |
||
249 | * |
||
250 | * @return ODataURL |
||
251 | * @throws InvalidOperationException |
||
252 | * @throws ODataException |
||
253 | * @throws \ReflectionException |
||
254 | */ |
||
255 | public function writeUrlElement(QueryResult $entryObject) |
||
256 | { |
||
257 | $url = new ODataURL(); |
||
258 | /** @var Model|null $res */ |
||
259 | $res = $entryObject->results; |
||
260 | if (null !== $res) { |
||
261 | $currentResourceType = $this->getCurrentResourceSetWrapper()->getResourceType(); |
||
262 | $relativeUri = $this->getEntryInstanceKey( |
||
263 | $res, |
||
264 | $currentResourceType, |
||
265 | $this->getCurrentResourceSetWrapper()->getName() |
||
266 | ); |
||
267 | |||
268 | $url->url = rtrim($this->absoluteServiceUri, '/') . '/' . $relativeUri; |
||
269 | } |
||
270 | |||
271 | return $url; |
||
272 | } |
||
273 | |||
274 | /** |
||
275 | * Write top level url collection. |
||
276 | * |
||
277 | * @param QueryResult $entryObjects Array of entry resources whose url to be written |
||
278 | * |
||
279 | * @return ODataURLCollection |
||
280 | * @throws InvalidOperationException |
||
281 | * @throws ODataException |
||
282 | * @throws \ReflectionException |
||
283 | */ |
||
284 | public function writeUrlElements(QueryResult $entryObjects) |
||
285 | { |
||
286 | $urls = new ODataURLCollection(); |
||
287 | if (!empty($entryObjects->results)) { |
||
288 | $i = 0; |
||
289 | foreach ($entryObjects->results as $entryObject) { |
||
290 | if (!$entryObject instanceof QueryResult) { |
||
291 | $query = new QueryResult(); |
||
292 | $query->results = $entryObject; |
||
293 | } else { |
||
294 | $query = $entryObject; |
||
295 | } |
||
296 | $urls->urls[$i] = $this->writeUrlElement($query); |
||
297 | ++$i; |
||
298 | } |
||
299 | |||
300 | if ($i > 0 && true === $entryObjects->hasMore) { |
||
301 | $this->buildNextPageLink($entryObjects, $urls); |
||
302 | } |
||
303 | } |
||
304 | |||
305 | if ($this->getRequest()->queryType == QueryType::ENTITIES_WITH_COUNT()) { |
||
306 | $urls->count = $this->getRequest()->getCountValue(); |
||
307 | } |
||
308 | |||
309 | return $urls; |
||
310 | } |
||
311 | |||
312 | /** |
||
313 | * Write top level complex resource. |
||
314 | * |
||
315 | * @param QueryResult &$complexValue The complex object to be written |
||
316 | * @param string $propertyName The name of the complex property |
||
317 | * @param ResourceType &$resourceType Describes the type of complex object |
||
318 | * |
||
319 | * @return ODataPropertyContent |
||
320 | * @throws InvalidOperationException |
||
321 | * @throws \ReflectionException |
||
322 | */ |
||
323 | public function writeTopLevelComplexObject(QueryResult &$complexValue, $propertyName, ResourceType &$resourceType) |
||
324 | { |
||
325 | $result = $complexValue->results; |
||
326 | |||
327 | $propertyContent = new ODataPropertyContent(); |
||
328 | $odataProperty = new ODataProperty(); |
||
329 | $odataProperty->name = $propertyName; |
||
330 | $odataProperty->typeName = $resourceType->getFullName(); |
||
331 | if (null != $result) { |
||
332 | $internalContent = $this->writeComplexValue($resourceType, $result); |
||
333 | $odataProperty->value = $internalContent; |
||
334 | } |
||
335 | |||
336 | $propertyContent->properties[$propertyName] = $odataProperty; |
||
337 | |||
338 | return $propertyContent; |
||
339 | } |
||
340 | |||
341 | /** |
||
342 | * Write top level bag resource. |
||
343 | * |
||
344 | * @param QueryResult &$BagValue The bag object to be |
||
345 | * written |
||
346 | * @param string $propertyName The name of the |
||
347 | * bag property |
||
348 | * @param ResourceType &$resourceType Describes the type of |
||
349 | * bag object |
||
350 | * |
||
351 | * @return ODataPropertyContent |
||
352 | * @throws InvalidOperationException |
||
353 | * @throws \ReflectionException |
||
354 | */ |
||
355 | public function writeTopLevelBagObject(QueryResult &$BagValue, $propertyName, ResourceType &$resourceType) |
||
367 | } |
||
368 | |||
369 | /** |
||
370 | * Write top level primitive value. |
||
371 | * |
||
372 | * @param QueryResult &$primitiveValue The primitive value to be |
||
373 | * written |
||
374 | * @param ResourceProperty &$resourceProperty Resource property describing the |
||
375 | * primitive property to be written |
||
376 | * @return ODataPropertyContent |
||
377 | * @throws InvalidOperationException |
||
378 | * @throws \ReflectionException |
||
379 | */ |
||
380 | public function writeTopLevelPrimitive(QueryResult &$primitiveValue, ResourceProperty &$resourceProperty = null) |
||
381 | { |
||
382 | if (null === $resourceProperty) { |
||
383 | throw new InvalidOperationException('Resource property must not be null'); |
||
384 | } |
||
385 | $propertyContent = new ODataPropertyContent(); |
||
386 | |||
387 | $odataProperty = new ODataProperty(); |
||
388 | $odataProperty->name = $resourceProperty->getName(); |
||
389 | $iType = $resourceProperty->getInstanceType(); |
||
390 | if (!$iType instanceof IType) { |
||
391 | throw new InvalidOperationException(get_class($iType)); |
||
392 | } |
||
393 | $odataProperty->typeName = $iType->getFullTypeName(); |
||
394 | if (null == $primitiveValue->results) { |
||
395 | $odataProperty->value = null; |
||
396 | } else { |
||
397 | $rType = $resourceProperty->getResourceType()->getInstanceType(); |
||
398 | if (!$rType instanceof IType) { |
||
399 | throw new InvalidOperationException(get_class($rType)); |
||
400 | } |
||
401 | $odataProperty->value = $this->primitiveToString($rType, $primitiveValue->results); |
||
402 | } |
||
403 | |||
404 | $propertyContent->properties[$odataProperty->name] = $odataProperty; |
||
405 | |||
406 | return $propertyContent; |
||
407 | } |
||
408 | |||
409 | /** |
||
410 | * Get update timestamp. |
||
411 | * |
||
412 | * @return Carbon |
||
413 | */ |
||
414 | public function getUpdated() |
||
417 | } |
||
418 | |||
419 | /** |
||
420 | * @param Model $entityInstance |
||
421 | * @param ResourceType $resourceType |
||
422 | * @param string $containerName |
||
423 | * @return string |
||
424 | * @throws InvalidOperationException |
||
425 | * @throws ODataException |
||
426 | * @throws \ReflectionException |
||
427 | */ |
||
428 | protected function getEntryInstanceKey($entityInstance, ResourceType $resourceType, $containerName) |
||
458 | } |
||
459 | |||
460 | /** |
||
461 | * @param $entryObject |
||
462 | * @param $type |
||
463 | * @param $relativeUri |
||
464 | * @param ResourceType $resourceType |
||
465 | * @param ODataMediaLink|null $mediaLink |
||
466 | * @param ODataMediaLink[] $mediaLinks |
||
467 | * @return void |
||
468 | * @throws InvalidOperationException |
||
469 | */ |
||
470 | protected function writeMediaData( |
||
471 | $entryObject, |
||
472 | $type, |
||
473 | $relativeUri, |
||
474 | ResourceType $resourceType, |
||
475 | ODataMediaLink &$mediaLink = null, |
||
476 | array &$mediaLinks = [] |
||
477 | ) { |
||
478 | $context = $this->getService()->getOperationContext(); |
||
479 | $streamProviderWrapper = $this->getService()->getStreamProviderWrapper(); |
||
480 | if (null == $streamProviderWrapper) { |
||
481 | throw new InvalidOperationException('Retrieved stream provider must not be null'); |
||
482 | } |
||
483 | |||
484 | /** @var ODataMediaLink|null $mediaLink */ |
||
485 | $mediaLink = null; |
||
486 | if ($resourceType->isMediaLinkEntry()) { |
||
487 | $eTag = $streamProviderWrapper->getStreamETag2($entryObject, null, $context); |
||
488 | $mediaLink = new ODataMediaLink($type, '/$value', $relativeUri . '/$value', '*/*', $eTag, 'edit-media'); |
||
489 | } |
||
490 | /** @var ODataMediaLink[] $mediaLinks */ |
||
491 | $mediaLinks = []; |
||
492 | if ($resourceType->hasNamedStream()) { |
||
493 | $namedStreams = $resourceType->getAllNamedStreams(); |
||
494 | foreach ($namedStreams as $streamTitle => $resourceStreamInfo) { |
||
495 | $readUri = $streamProviderWrapper->getReadStreamUri2( |
||
496 | $entryObject, |
||
497 | $resourceStreamInfo, |
||
498 | $context, |
||
499 | $relativeUri |
||
500 | ); |
||
501 | $mediaContentType = $streamProviderWrapper->getStreamContentType2( |
||
502 | $entryObject, |
||
503 | $resourceStreamInfo, |
||
504 | $context |
||
505 | ); |
||
506 | $eTag = $streamProviderWrapper->getStreamETag2( |
||
507 | $entryObject, |
||
508 | $resourceStreamInfo, |
||
509 | $context |
||
510 | ); |
||
511 | |||
512 | $nuLink = new ODataMediaLink($streamTitle, $readUri, $readUri, $mediaContentType, $eTag); |
||
513 | $mediaLinks[] = $nuLink; |
||
514 | } |
||
515 | } |
||
516 | } |
||
517 | |||
518 | /** |
||
519 | * @param QueryResult $entryObject |
||
520 | * @param ResourceProperty $prop |
||
521 | * @param $nuLink |
||
522 | * @param $propKind |
||
523 | * @param $propName |
||
524 | * @throws InvalidOperationException |
||
525 | * @throws ODataException |
||
526 | * @throws \ReflectionException |
||
527 | */ |
||
528 | private function expandNavigationProperty( |
||
529 | QueryResult $entryObject, |
||
530 | ResourceProperty $prop, |
||
531 | $nuLink, |
||
532 | $propKind, |
||
533 | $propName |
||
534 | ) { |
||
535 | $nextName = $prop->getResourceType()->getName(); |
||
536 | $nuLink->isExpanded = true; |
||
537 | $value = $entryObject->results->$propName; |
||
538 | $isCollection = ResourcePropertyKind::RESOURCESET_REFERENCE == $propKind; |
||
539 | $nuLink->isCollection = $isCollection; |
||
540 | |||
541 | if (is_array($value)) { |
||
542 | if (1 == count($value) && !$isCollection) { |
||
543 | $value = $value[0]; |
||
544 | } else { |
||
545 | $value = collect($value); |
||
546 | } |
||
547 | } |
||
548 | |||
549 | $result = new QueryResult(); |
||
550 | $result->results = $value; |
||
551 | $nullResult = null === $value; |
||
552 | $isSingleton = $value instanceof Model; |
||
553 | $resultCount = $nullResult ? 0 : ($isSingleton ? 1 : $value->count()); |
||
554 | |||
555 | if (0 < $resultCount) { |
||
556 | $newStackLine = ['type' => $nextName, 'prop' => $propName, 'count' => $resultCount]; |
||
557 | array_push($this->lightStack, $newStackLine); |
||
558 | if (!$isCollection) { |
||
559 | $nuLink->type = 'application/atom+xml;type=entry'; |
||
560 | $expandedResult = $this->writeTopLevelElement($result); |
||
561 | } else { |
||
562 | $nuLink->type = 'application/atom+xml;type=feed'; |
||
563 | $expandedResult = $this->writeTopLevelElements($result); |
||
564 | } |
||
565 | $nuLink->expandedResult = $expandedResult; |
||
566 | } else { |
||
567 | $type = $this->getService()->getProvidersWrapper()->resolveResourceType($nextName); |
||
568 | if (!$isCollection) { |
||
569 | $result = new ODataEntry(); |
||
570 | $result->resourceSetName = $type->getName(); |
||
571 | } else { |
||
572 | $result = new ODataFeed(); |
||
573 | $result->selfLink = new ODataLink(); |
||
574 | $result->selfLink->name = ODataConstants::ATOM_SELF_RELATION_ATTRIBUTE_VALUE; |
||
575 | } |
||
576 | $nuLink->expandedResult = $result; |
||
577 | } |
||
578 | if (isset($nuLink->expandedResult->selfLink)) { |
||
579 | $nuLink->expandedResult->selfLink->title = $propName; |
||
580 | $nuLink->expandedResult->selfLink->url = $nuLink->url; |
||
581 | $nuLink->expandedResult->title = new ODataTitle($propName); |
||
582 | $nuLink->expandedResult->id = rtrim($this->absoluteServiceUri, '/') . '/' . $nuLink->url; |
||
583 | } |
||
584 | if (!isset($nuLink->expandedResult)) { |
||
585 | throw new InvalidOperationException(''); |
||
586 | } |
||
587 | } |
||
588 | |||
589 | public static function isMatchPrimitive($resourceKind) |
||
590 | { |
||
591 | if (16 > $resourceKind) { |
||
592 | return false; |
||
593 | } |
||
594 | if (28 < $resourceKind) { |
||
595 | return false; |
||
596 | } |
||
597 | return 0 == ($resourceKind % 4); |
||
598 | } |
||
599 | |||
600 | /** |
||
601 | * @param ResourceEntityType $resourceType |
||
602 | * @param $payloadClass |
||
603 | * @return ResourceEntityType|ResourceType |
||
604 | * @throws InvalidOperationException |
||
605 | * @throws \ReflectionException |
||
606 | */ |
||
607 | protected function getConcreteTypeFromAbstractType(ResourceEntityType $resourceType, $payloadClass) |
||
608 | { |
||
609 | if ($resourceType->isAbstract()) { |
||
610 | $derived = $this->getMetadata()->getDerivedTypes($resourceType); |
||
611 | if (0 == count($derived)) { |
||
612 | throw new InvalidOperationException('Supplied abstract type must have at least one derived type'); |
||
613 | } |
||
614 | $derived = array_filter( |
||
615 | $derived, |
||
616 | function (ResourceType $element) { |
||
617 | return !$element->isAbstract(); |
||
618 | } |
||
619 | ); |
||
620 | foreach ($derived as $rawType) { |
||
621 | $name = $rawType->getInstanceType()->getName(); |
||
622 | if ($payloadClass == $name) { |
||
623 | $resourceType = $rawType; |
||
624 | break; |
||
625 | } |
||
626 | } |
||
627 | } |
||
628 | // despite all set up, checking, etc, if we haven't picked a concrete resource type, |
||
629 | // wheels have fallen off, so blow up |
||
630 | if ($resourceType->isAbstract()) { |
||
631 | throw new InvalidOperationException('Concrete resource type not selected for payload ' . $payloadClass); |
||
632 | } |
||
633 | return $resourceType; |
||
634 | } |
||
635 | |||
636 | /** |
||
637 | * @param QueryResult $entryObject |
||
638 | * @param array $relProp |
||
639 | * @param $relativeUri |
||
640 | * @return array |
||
641 | * @throws InvalidOperationException |
||
642 | * @throws ODataException |
||
643 | * @throws \ReflectionException |
||
644 | */ |
||
645 | protected function buildLinksFromRels(QueryResult $entryObject, array $relProp, $relativeUri) |
||
682 | } |
||
683 | |||
684 | /** |
||
685 | * @param $res |
||
686 | * @param ODataFeed $odata |
||
687 | * @throws InvalidOperationException |
||
688 | * @throws ODataException |
||
689 | * @throws \ReflectionException |
||
690 | */ |
||
691 | protected function buildEntriesFromElements($res, ODataFeed $odata) |
||
701 | } |
||
702 | } |
||
703 | } |
||
704 |