| Total Complexity | 104 |
| Total Lines | 880 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
Complex classes like CollectionContainerTrait 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 CollectionContainerTrait, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 31 | trait CollectionContainerTrait |
||
| 32 | { |
||
| 33 | /** |
||
| 34 | * @var FactoryInterface $modelFactory |
||
| 35 | */ |
||
| 36 | private $modelFactory; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @var CollectionLoader $collectionLoader |
||
| 40 | */ |
||
| 41 | private $collectionLoader; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @var string $objType |
||
| 45 | */ |
||
| 46 | private $objType; |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @var string $collectionIdent |
||
| 50 | */ |
||
| 51 | private $collectionIdent; |
||
| 52 | |||
| 53 | /** |
||
| 54 | * Collection configuration. |
||
| 55 | * |
||
| 56 | * @var array|null |
||
| 57 | */ |
||
| 58 | private $collectionConfig; |
||
| 59 | |||
| 60 | /** |
||
| 61 | * Default collection configuration. |
||
| 62 | * |
||
| 63 | * @var array|null |
||
| 64 | */ |
||
| 65 | private $defaultCollectionConfig; |
||
| 66 | |||
| 67 | /** |
||
| 68 | * Object labels. |
||
| 69 | * |
||
| 70 | * @var array|null |
||
| 71 | */ |
||
| 72 | private $objLabels; |
||
| 73 | |||
| 74 | /** |
||
| 75 | * @var integer $numTotal |
||
| 76 | */ |
||
| 77 | private $numTotal; |
||
| 78 | |||
| 79 | /** |
||
| 80 | * The collection's prepared filters. |
||
| 81 | * |
||
| 82 | * @var FilterInterface[] |
||
| 83 | */ |
||
| 84 | protected $filters; |
||
| 85 | |||
| 86 | /** |
||
| 87 | * The collection's prepared orders. |
||
| 88 | * |
||
| 89 | * @var OrderInterface[] |
||
| 90 | */ |
||
| 91 | protected $orders; |
||
| 92 | |||
| 93 | /** |
||
| 94 | * The collection's prepared pagiantion. |
||
| 95 | * |
||
| 96 | * @var PaginationInterface |
||
| 97 | */ |
||
| 98 | protected $pagination; |
||
| 99 | |||
| 100 | /** |
||
| 101 | * @var Collection $collection |
||
| 102 | */ |
||
| 103 | private $collection; |
||
| 104 | |||
| 105 | /** |
||
| 106 | * @var FactoryInterface $propertyDisplayFactory |
||
| 107 | */ |
||
| 108 | private $propertyDisplayFactory; |
||
| 109 | |||
| 110 | /** |
||
| 111 | * @var mixed $currentObjId |
||
| 112 | */ |
||
| 113 | protected $currentObjId; |
||
| 114 | |||
| 115 | /** |
||
| 116 | * @var mixed $currentObj |
||
| 117 | */ |
||
| 118 | protected $currentObj; |
||
| 119 | |||
| 120 | /** |
||
| 121 | * @var ModelInterface $proto |
||
| 122 | */ |
||
| 123 | private $proto; |
||
| 124 | |||
| 125 | /** |
||
| 126 | * In memory copy of the PropertyDisplay object |
||
| 127 | * @var PropertyInputInterface $display |
||
|
|
|||
| 128 | */ |
||
| 129 | protected $display; |
||
| 130 | |||
| 131 | /** |
||
| 132 | * @var ViewInterface $view |
||
| 133 | */ |
||
| 134 | private $view; |
||
| 135 | |||
| 136 | /** |
||
| 137 | * @param ViewInterface|array $view The view instance. |
||
| 138 | * @return CollectionContainerInterface Chainable |
||
| 139 | */ |
||
| 140 | public function setView(ViewInterface $view) |
||
| 141 | { |
||
| 142 | $this->view = $view; |
||
| 143 | |||
| 144 | return $this; |
||
| 145 | } |
||
| 146 | |||
| 147 | /** |
||
| 148 | * @throws Exception If the view instance is not previously set / injected. |
||
| 149 | * @return ViewInterface The object's view. |
||
| 150 | */ |
||
| 151 | public function view() |
||
| 152 | { |
||
| 153 | if ($this->view === null) { |
||
| 154 | throw new Exception( |
||
| 155 | 'View instance is not set for table widget' |
||
| 156 | ); |
||
| 157 | } |
||
| 158 | |||
| 159 | return $this->view; |
||
| 160 | } |
||
| 161 | |||
| 162 | /** |
||
| 163 | * @param FactoryInterface $factory The model factory, to create model objects. |
||
| 164 | * @return CollectionContainerInterface Chainable |
||
| 165 | */ |
||
| 166 | public function setModelFactory(FactoryInterface $factory) |
||
| 167 | { |
||
| 168 | $this->modelFactory = $factory; |
||
| 169 | |||
| 170 | return $this; |
||
| 171 | } |
||
| 172 | |||
| 173 | /** |
||
| 174 | * Model Factory getter. |
||
| 175 | * |
||
| 176 | * @throws Exception If the model factory was not previously set. |
||
| 177 | * @return FactoryInterface |
||
| 178 | */ |
||
| 179 | protected function modelFactory() |
||
| 180 | { |
||
| 181 | if ($this->modelFactory === null) { |
||
| 182 | throw new Exception(sprintf( |
||
| 183 | 'Model Factory is not defined for "%s"', |
||
| 184 | get_class($this) |
||
| 185 | )); |
||
| 186 | } |
||
| 187 | |||
| 188 | return $this->modelFactory; |
||
| 189 | } |
||
| 190 | |||
| 191 | /** |
||
| 192 | * @param FactoryInterface $factory The property display factory. |
||
| 193 | * @return CollectionContainerInterface Chainable |
||
| 194 | */ |
||
| 195 | private function setPropertyDisplayFactory(FactoryInterface $factory) |
||
| 196 | { |
||
| 197 | $this->propertyDisplayFactory = $factory; |
||
| 198 | |||
| 199 | return $this; |
||
| 200 | } |
||
| 201 | |||
| 202 | /** |
||
| 203 | * @throws Exception If the property display factory was not previously injected / set. |
||
| 204 | * @return FactoryInterface |
||
| 205 | */ |
||
| 206 | private function propertyDisplayFactory() |
||
| 207 | { |
||
| 208 | if ($this->propertyDisplayFactory === null) { |
||
| 209 | throw new Exception(sprintf( |
||
| 210 | 'Property display factory is not defined for "%s"', |
||
| 211 | get_class($this) |
||
| 212 | )); |
||
| 213 | } |
||
| 214 | |||
| 215 | return $this->propertyDisplayFactory; |
||
| 216 | } |
||
| 217 | |||
| 218 | /** |
||
| 219 | * @param CollectionLoader $loader The collection loader. |
||
| 220 | * @return CollectionContainerInterface Chainable |
||
| 221 | */ |
||
| 222 | public function setCollectionLoader(CollectionLoader $loader) |
||
| 223 | { |
||
| 224 | $this->collectionLoader = $loader; |
||
| 225 | |||
| 226 | return $this; |
||
| 227 | } |
||
| 228 | |||
| 229 | /** |
||
| 230 | * Safe Collection Loader getter. |
||
| 231 | * Create the loader if it was not set / injected. |
||
| 232 | * |
||
| 233 | * @return CollectionLoader |
||
| 234 | */ |
||
| 235 | protected function collectionLoader() |
||
| 236 | { |
||
| 237 | if ($this->collectionLoader === null) { |
||
| 238 | $this->collectionLoader = $this->createCollectionLoader(); |
||
| 239 | } |
||
| 240 | |||
| 241 | return $this->collectionLoader; |
||
| 242 | } |
||
| 243 | |||
| 244 | /** |
||
| 245 | * Create a collection loader. |
||
| 246 | * |
||
| 247 | * @return CollectionLoader |
||
| 248 | */ |
||
| 249 | protected function createCollectionLoader() |
||
| 250 | { |
||
| 251 | return new CollectionLoader([ |
||
| 252 | 'logger' => $this->logger, |
||
| 253 | 'factory' => $this->modelFactory() |
||
| 254 | ]); |
||
| 255 | } |
||
| 256 | |||
| 257 | /** |
||
| 258 | * @param string $objType The collection's object type. |
||
| 259 | * @throws InvalidArgumentException If provided argument is not of type 'string'. |
||
| 260 | * @return CollectionContainerInterface Chainable |
||
| 261 | */ |
||
| 262 | public function setObjType($objType) |
||
| 263 | { |
||
| 264 | if (!is_string($objType)) { |
||
| 265 | throw new InvalidArgumentException( |
||
| 266 | 'Obj type must be a string' |
||
| 267 | ); |
||
| 268 | } |
||
| 269 | $this->objType = str_replace([ '.', '_' ], '/', $objType); |
||
| 270 | |||
| 271 | return $this; |
||
| 272 | } |
||
| 273 | |||
| 274 | /** |
||
| 275 | * @return string |
||
| 276 | */ |
||
| 277 | public function objType() |
||
| 278 | { |
||
| 279 | return $this->objType; |
||
| 280 | } |
||
| 281 | |||
| 282 | /** |
||
| 283 | * Set the key for the collection structure to use. |
||
| 284 | * |
||
| 285 | * @param string $collectionIdent The collection identifier. |
||
| 286 | * @throws InvalidArgumentException If the identifier argument is not a string. |
||
| 287 | * @return CollectionContainerInterface Chainable |
||
| 288 | */ |
||
| 289 | public function setCollectionIdent($collectionIdent) |
||
| 290 | { |
||
| 291 | if (!is_string($collectionIdent)) { |
||
| 292 | throw new InvalidArgumentException( |
||
| 293 | 'Collection identifier must be a string' |
||
| 294 | ); |
||
| 295 | } |
||
| 296 | $this->collectionIdent = $collectionIdent; |
||
| 297 | |||
| 298 | return $this; |
||
| 299 | } |
||
| 300 | |||
| 301 | /** |
||
| 302 | * Retrieve a key for the collection structure to use. |
||
| 303 | * |
||
| 304 | * If the collection key is undefined, resolve a fallback. |
||
| 305 | * |
||
| 306 | * @return string |
||
| 307 | */ |
||
| 308 | public function collectionIdentFallback() |
||
| 309 | { |
||
| 310 | $metadata = $this->proto()->metadata(); |
||
| 311 | |||
| 312 | if (isset($metadata['admin']['default_list'])) { |
||
| 313 | return $metadata['admin']['default_list']; |
||
| 314 | } |
||
| 315 | |||
| 316 | return $this->collectionIdent; |
||
| 317 | } |
||
| 318 | |||
| 319 | /** |
||
| 320 | * Retrieve the key for the collection structure to use. |
||
| 321 | * |
||
| 322 | * @return string|null |
||
| 323 | */ |
||
| 324 | public function collectionIdent() |
||
| 325 | { |
||
| 326 | return $this->collectionIdent; |
||
| 327 | } |
||
| 328 | |||
| 329 | /** |
||
| 330 | * Return the current collection metadata. |
||
| 331 | * |
||
| 332 | * @return array |
||
| 333 | */ |
||
| 334 | public function collectionMetadata() |
||
| 335 | { |
||
| 336 | $proto = $this->proto(); |
||
| 337 | $collectionIdent = $this->collectionIdent(); |
||
| 338 | |||
| 339 | if (!$collectionIdent) { |
||
| 340 | $collectionIdent = $this->collectionIdentFallback(); |
||
| 341 | } |
||
| 342 | |||
| 343 | if ($collectionIdent && $proto->view()) { |
||
| 344 | $collectionIdent = $proto->render($collectionIdent); |
||
| 345 | } |
||
| 346 | |||
| 347 | if (!$collectionIdent) { |
||
| 348 | return []; |
||
| 349 | } |
||
| 350 | |||
| 351 | $objMeta = $proto->metadata(); |
||
| 352 | |||
| 353 | if (isset($objMeta['admin']['lists'][$collectionIdent])) { |
||
| 354 | return $objMeta['admin']['lists'][$collectionIdent]; |
||
| 355 | } else { |
||
| 356 | return []; |
||
| 357 | } |
||
| 358 | } |
||
| 359 | |||
| 360 | /** |
||
| 361 | * Retrieve the collection configset. |
||
| 362 | * |
||
| 363 | * @return array|null |
||
| 364 | */ |
||
| 365 | public function collectionConfig() |
||
| 366 | { |
||
| 367 | if ($this->collectionConfig === null) { |
||
| 368 | $this->collectionConfig = $this->createCollectionConfig(); |
||
| 369 | } |
||
| 370 | |||
| 371 | return $this->collectionConfig; |
||
| 372 | } |
||
| 373 | |||
| 374 | /** |
||
| 375 | * Replace the collection's configset with the given parameters. |
||
| 376 | * |
||
| 377 | * @param mixed $config New collection config values. |
||
| 378 | * @return CollectionContainerInterface Chainable |
||
| 379 | */ |
||
| 380 | public function setCollectionConfig($config) |
||
| 381 | { |
||
| 382 | if (empty($config) || !is_array($config)) { |
||
| 383 | $config = []; |
||
| 384 | } |
||
| 385 | |||
| 386 | $this->collectionConfig = array_replace_recursive( |
||
| 387 | $this->defaultCollectionConfig(), |
||
| 388 | $this->parseCollectionConfig($config) |
||
| 389 | ); |
||
| 390 | |||
| 391 | return $this; |
||
| 392 | } |
||
| 393 | |||
| 394 | /** |
||
| 395 | * Merge given parameters into the collection's configset. |
||
| 396 | * |
||
| 397 | * @param array $config New collection config values. |
||
| 398 | * @return self |
||
| 399 | */ |
||
| 400 | public function mergeCollectionConfig(array $config) |
||
| 401 | { |
||
| 402 | if ($this->collectionConfig === null) { |
||
| 403 | $this->setCollectionConfig($config); |
||
| 404 | |||
| 405 | return $this; |
||
| 406 | } |
||
| 407 | |||
| 408 | $this->collectionConfig = array_replace_recursive( |
||
| 409 | $this->defaultCollectionConfig(), |
||
| 410 | $this->collectionConfig, |
||
| 411 | $this->parseCollectionConfig($config) |
||
| 412 | ); |
||
| 413 | |||
| 414 | return $this; |
||
| 415 | } |
||
| 416 | |||
| 417 | /** |
||
| 418 | * Stub: Parse given parameters into the collection's config set. |
||
| 419 | * |
||
| 420 | * @param array $config New collection config values. |
||
| 421 | * @return array |
||
| 422 | */ |
||
| 423 | protected function parseCollectionConfig(array $config) |
||
| 424 | { |
||
| 425 | return array_filter($config, function ($val) { |
||
| 426 | return !empty($val) || is_numeric($val); |
||
| 427 | }); |
||
| 428 | } |
||
| 429 | |||
| 430 | /** |
||
| 431 | * Retrieve the default collection configuration. |
||
| 432 | * |
||
| 433 | * The default configset is determined by the collection ident and object type, if assigned. |
||
| 434 | * |
||
| 435 | * @return array|null |
||
| 436 | */ |
||
| 437 | protected function defaultCollectionConfig() |
||
| 438 | { |
||
| 439 | if ($this->defaultCollectionConfig === null) { |
||
| 440 | $this->defaultCollectionConfig = $this->collectionMetadata(); |
||
| 441 | } |
||
| 442 | |||
| 443 | return $this->defaultCollectionConfig; |
||
| 444 | } |
||
| 445 | |||
| 446 | /** |
||
| 447 | * Stub: reimplement in classes using this trait. |
||
| 448 | * |
||
| 449 | * @return mixed |
||
| 450 | */ |
||
| 451 | protected function createCollectionConfig() |
||
| 452 | { |
||
| 453 | return $this->collectionMetadata(); |
||
| 454 | } |
||
| 455 | |||
| 456 | /** |
||
| 457 | * @return boolean |
||
| 458 | */ |
||
| 459 | public function hasPagination() |
||
| 460 | { |
||
| 461 | return ($this->pagination() instanceof Pagination); |
||
| 462 | } |
||
| 463 | |||
| 464 | /** |
||
| 465 | * @return PaginationInterface |
||
| 466 | */ |
||
| 467 | public function pagination() |
||
| 468 | { |
||
| 469 | if ($this->pagination === null || !$this->pagination instanceof PaginationInterface) { |
||
| 470 | $this->pagination = $this->createPagination(); |
||
| 471 | $collectionConfig = $this->collectionConfig(); |
||
| 472 | if (isset($collectionConfig['pagination'])) { |
||
| 473 | $this->pagination->setData($collectionConfig['pagination']); |
||
| 474 | } |
||
| 475 | } |
||
| 476 | |||
| 477 | return $this->pagination; |
||
| 478 | } |
||
| 479 | |||
| 480 | /** |
||
| 481 | * @return PaginationInterface |
||
| 482 | */ |
||
| 483 | protected function createPagination() |
||
| 484 | { |
||
| 485 | $pagination = new Pagination(); |
||
| 486 | return $pagination; |
||
| 487 | } |
||
| 488 | |||
| 489 | /** |
||
| 490 | * @return integer |
||
| 491 | */ |
||
| 492 | public function page() |
||
| 495 | } |
||
| 496 | |||
| 497 | /** |
||
| 498 | * @return integer |
||
| 499 | */ |
||
| 500 | public function numPerPage() |
||
| 501 | { |
||
| 502 | return $this->pagination()->numPerPage(); |
||
| 503 | } |
||
| 504 | |||
| 505 | /** |
||
| 506 | * @return integer |
||
| 507 | */ |
||
| 508 | public function numPages() |
||
| 509 | { |
||
| 510 | if ($this->numPerPage() === 0) { |
||
| 511 | return 0; |
||
| 512 | } |
||
| 513 | |||
| 514 | return ceil($this->numTotal() / $this->numPerPage()); |
||
| 515 | } |
||
| 516 | |||
| 517 | /** |
||
| 518 | * @return boolean |
||
| 519 | */ |
||
| 520 | public function hasFilters() |
||
| 521 | { |
||
| 522 | return count($this->filters()) > 0; |
||
| 523 | } |
||
| 524 | |||
| 525 | /** |
||
| 526 | * @return FilterInterface[] |
||
| 527 | */ |
||
| 528 | public function filters() |
||
| 529 | { |
||
| 530 | if ($this->filters === null) { |
||
| 531 | $this->filters = []; |
||
| 532 | $collectionConfig = $this->collectionConfig(); |
||
| 533 | if (isset($collectionConfig['filters'])) { |
||
| 534 | foreach ($collectionConfig['filters'] as $key => $data) { |
||
| 535 | if ($data instanceof FilterInterface) { |
||
| 536 | $filter = $data; |
||
| 537 | } elseif (is_array($data)) { |
||
| 538 | $filter = $this->createFilter(); |
||
| 539 | $filter->setData($data); |
||
| 540 | } |
||
| 541 | $this->filters[$key] = $filter; |
||
| 542 | } |
||
| 543 | } |
||
| 544 | } |
||
| 545 | |||
| 546 | return $this->filters; |
||
| 547 | } |
||
| 548 | |||
| 549 | /** |
||
| 550 | * @return FilterInterface |
||
| 551 | */ |
||
| 552 | protected function createFilter() |
||
| 556 | } |
||
| 557 | |||
| 558 | /** |
||
| 559 | * @return boolean |
||
| 560 | */ |
||
| 561 | public function hasOrders() |
||
| 564 | } |
||
| 565 | |||
| 566 | /** |
||
| 567 | * @return OrderInterface[] |
||
| 568 | */ |
||
| 569 | public function orders() |
||
| 570 | { |
||
| 571 | if ($this->orders === null) { |
||
| 572 | $this->orders = []; |
||
| 573 | $collectionConfig = $this->collectionConfig(); |
||
| 574 | if (isset($collectionConfig['orders'])) { |
||
| 575 | foreach ($collectionConfig['orders'] as $key => $data) { |
||
| 576 | if ($data instanceof OrderInterface) { |
||
| 577 | $order = $data; |
||
| 578 | } elseif (is_array($data)) { |
||
| 579 | $order = $this->createOrder(); |
||
| 580 | $order->setData($data); |
||
| 581 | } |
||
| 582 | $this->orders[$key] = $order; |
||
| 583 | } |
||
| 584 | } |
||
| 585 | } |
||
| 586 | |||
| 587 | return $this->orders; |
||
| 588 | } |
||
| 589 | |||
| 590 | /** |
||
| 591 | * @return OrderInterface |
||
| 592 | */ |
||
| 593 | protected function createOrder() |
||
| 594 | { |
||
| 595 | $order = new Order(); |
||
| 596 | return $order; |
||
| 597 | } |
||
| 598 | |||
| 599 | /** |
||
| 600 | * @param mixed $collection The collection. |
||
| 601 | * @return CollectionContainerInterface Chainable |
||
| 602 | */ |
||
| 603 | public function setCollection($collection) |
||
| 607 | } |
||
| 608 | |||
| 609 | /** |
||
| 610 | * @return CollectionLoader |
||
| 611 | */ |
||
| 612 | public function collection() |
||
| 613 | { |
||
| 614 | if ($this->collection === null) { |
||
| 615 | $this->collection = $this->createCollection(); |
||
| 616 | } |
||
| 617 | |||
| 618 | return $this->collection; |
||
| 619 | } |
||
| 620 | |||
| 621 | /** |
||
| 622 | * @todo Integrate $data; merge with $collectionConfig |
||
| 623 | * @param array $data Optional collection data. |
||
| 624 | * @throws Exception If the object type of the colletion has not been set. |
||
| 625 | * @return CollectionLoader |
||
| 626 | */ |
||
| 627 | public function createCollection(array $data = null) |
||
| 628 | { |
||
| 629 | $objType = $this->objType(); |
||
| 630 | if (!$objType) { |
||
| 631 | throw new Exception(sprintf( |
||
| 632 | '%1$s cannot create collection. Object type is not defined.', |
||
| 633 | get_class($this) |
||
| 634 | )); |
||
| 635 | } |
||
| 636 | |||
| 637 | $loader = $this->collectionLoader(); |
||
| 638 | $loader->setModel($this->proto()); |
||
| 639 | |||
| 640 | $collectionConfig = $this->collectionConfig(); |
||
| 641 | if (is_array($collectionConfig) && !empty($collectionConfig)) { |
||
| 642 | unset($collectionConfig['properties']); |
||
| 643 | $loader->setData($collectionConfig); |
||
| 644 | } |
||
| 645 | |||
| 646 | if ($data) { |
||
| 647 | $loader->setData($data); |
||
| 648 | } |
||
| 649 | |||
| 650 | $collection = $loader->load(); |
||
| 651 | |||
| 652 | return $collection; |
||
| 653 | } |
||
| 654 | |||
| 655 | /** |
||
| 656 | * @return array |
||
| 657 | */ |
||
| 658 | public function objects() |
||
| 661 | } |
||
| 662 | |||
| 663 | /** |
||
| 664 | * Sort the objects before they are displayed as rows. |
||
| 665 | * |
||
| 666 | * This method is useful for classes using this trait. |
||
| 667 | * |
||
| 668 | * @return array |
||
| 669 | */ |
||
| 670 | public function sortObjects() |
||
| 673 | } |
||
| 674 | |||
| 675 | /** |
||
| 676 | * Sort the properties before they are displayed as columns. |
||
| 677 | * |
||
| 678 | * This method is useful for classes using this trait. |
||
| 679 | * |
||
| 680 | * @return array |
||
| 681 | */ |
||
| 682 | public function sortProperties() |
||
| 685 | } |
||
| 686 | |||
| 687 | /** |
||
| 688 | * Supplies properties for objects in table template specific to object configuration. |
||
| 689 | * |
||
| 690 | * @return array This metod is a generator. |
||
| 691 | */ |
||
| 692 | public function objectRows() |
||
| 693 | { |
||
| 694 | // Get properties as defined in object's list metadata |
||
| 695 | $properties = $this->sortProperties(); |
||
| 696 | $propOptions = $this->propertiesOptions(); |
||
| 697 | |||
| 698 | // Collection objects |
||
| 699 | $objects = $this->sortObjects(); |
||
| 700 | |||
| 701 | // Go through each object to generate an array of properties listed in object's list metadata |
||
| 702 | foreach ($objects as $object) { |
||
| 703 | if (isset($object['requiredAclPermissions']) && !empty($object['requiredAclPermissions'])) { |
||
| 704 | if ($this->hasPermissions($object['requiredAclPermissions']) === false) { |
||
| 705 | continue; |
||
| 706 | } |
||
| 707 | } |
||
| 708 | |||
| 709 | $objectProperties = []; |
||
| 710 | foreach ($properties as $propertyIdent => $propertyData) { |
||
| 711 | $property = $object->property($propertyIdent); |
||
| 712 | |||
| 713 | if (isset($propOptions[$propertyIdent]) && is_array($propOptions[$propertyIdent])) { |
||
| 714 | $property->setData($propOptions[$propertyIdent]); |
||
| 715 | } |
||
| 716 | |||
| 717 | $this->setupDisplayPropertyValue($object, $property); |
||
| 718 | |||
| 719 | $displayType = $this->display->displayType(); |
||
| 720 | $this->display->setPropertyVal($object->propertyValue($propertyIdent)); |
||
| 721 | |||
| 722 | $propertyValue = $this->view()->renderTemplate($displayType, $this->display); |
||
| 723 | |||
| 724 | $cell = $this->parsePropertyCell($object, $property, $propertyValue); |
||
| 725 | $objectProperties[] = $cell; |
||
| 726 | }; |
||
| 727 | |||
| 728 | $this->currentObj = $object; |
||
| 729 | $this->currentObjId = $object->id(); |
||
| 730 | |||
| 731 | $row = $this->parseObjectRow($object, $objectProperties); |
||
| 732 | |||
| 733 | yield $row; |
||
| 734 | } |
||
| 735 | |||
| 736 | $this->currentObj = null; |
||
| 737 | $this->currentObjId = null; |
||
| 738 | } |
||
| 739 | |||
| 740 | /** |
||
| 741 | * Setup the property's display value before its assigned to the object row. |
||
| 742 | * |
||
| 743 | * This method is useful for classes using this trait. |
||
| 744 | * |
||
| 745 | * @param ModelInterface $object The current row's object. |
||
| 746 | * @param PropertyInterface $property The current property. |
||
| 747 | * @return void |
||
| 748 | */ |
||
| 749 | protected function setupDisplayPropertyValue(ModelInterface $object, PropertyInterface $property) |
||
| 772 | } |
||
| 773 | } |
||
| 774 | |||
| 775 | /** |
||
| 776 | * Filter the property before its assigned to the object row. |
||
| 777 | * |
||
| 778 | * This method is useful for classes using this trait. |
||
| 779 | * |
||
| 780 | * @param ModelInterface $object The current row's object. |
||
| 781 | * @param PropertyInterface $property The current property. |
||
| 782 | * @param string $propertyValue The property $key's display value. |
||
| 783 | * @return array |
||
| 784 | */ |
||
| 785 | protected function parsePropertyCell( |
||
| 786 | ModelInterface $object, |
||
| 787 | PropertyInterface $property, |
||
| 788 | $propertyValue |
||
| 789 | ) { |
||
| 790 | unset($object); |
||
| 791 | |||
| 792 | return [ |
||
| 793 | 'ident' => $property->ident(), |
||
| 794 | 'val' => trim($propertyValue) |
||
| 795 | ]; |
||
| 796 | } |
||
| 797 | |||
| 798 | /** |
||
| 799 | * Filter the object before its assigned to the row. |
||
| 800 | * |
||
| 801 | * This method is useful for classes using this trait. |
||
| 802 | * |
||
| 803 | * @param ModelInterface $object The current row's object. |
||
| 804 | * @param array $objectProperties The $object's display properties. |
||
| 805 | * @return array |
||
| 806 | */ |
||
| 807 | protected function parseObjectRow(ModelInterface $object, array $objectProperties) |
||
| 808 | { |
||
| 809 | return [ |
||
| 810 | 'object' => $object, |
||
| 811 | 'objectId' => $object->id(), |
||
| 812 | 'objectType' => $object->objType(), |
||
| 813 | 'objectProperties' => $objectProperties |
||
| 814 | ]; |
||
| 815 | } |
||
| 816 | |||
| 817 | /** |
||
| 818 | * @return boolean |
||
| 819 | */ |
||
| 820 | public function hasObjects() |
||
| 821 | { |
||
| 822 | return (count($this->objects()) > 0); |
||
| 823 | } |
||
| 824 | |||
| 825 | /** |
||
| 826 | * @return integer |
||
| 827 | */ |
||
| 828 | public function numObjects() |
||
| 831 | } |
||
| 832 | |||
| 833 | /** |
||
| 834 | * @throws Exception If obj type was not set. |
||
| 835 | * @return integer |
||
| 836 | */ |
||
| 837 | public function numTotal() |
||
| 861 | } |
||
| 862 | |||
| 863 | /** |
||
| 864 | * Retrieve the object's labelling. |
||
| 865 | * |
||
| 866 | * @return array |
||
| 867 | */ |
||
| 868 | |||
| 869 | /** |
||
| 870 | * Retrieve the object's labels. |
||
| 871 | * |
||
| 872 | * @return array|null |
||
| 873 | */ |
||
| 874 | public function objLabels() |
||
| 875 | { |
||
| 876 | if ($this->objLabels === null) { |
||
| 877 | $objLabels = []; |
||
| 878 | $proto = $this->proto(); |
||
| 879 | $objMetadata = $proto->metadata(); |
||
| 880 | if (isset($objMetadata['labels']) && !empty($objMetadata['labels'])) { |
||
| 881 | $objLabels = $objMetadata['labels']; |
||
| 882 | array_walk($objLabels, function(&$value) { |
||
| 883 | $value = $this->translator()->translation($value); |
||
| 884 | }); |
||
| 885 | $this->objLabels = $objLabels; |
||
| 886 | } |
||
| 887 | } |
||
| 888 | |||
| 889 | return $this->objLabels; |
||
| 890 | } |
||
| 891 | |||
| 892 | /** |
||
| 893 | * @param boolean $reload If true, reload will be forced. |
||
| 894 | * @throws InvalidArgumentException If the object type is not defined / can not create prototype. |
||
| 895 | * @return object |
||
| 896 | */ |
||
| 897 | public function proto($reload = false) |
||
| 911 | } |
||
| 912 | } |
||
| 913 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths