createQuery(); //$query->getQuerySettings()->setRespectStoragePage(false); $query->matching( $query->in('uid', $uids) ); //return $this->orderByField($query->execute(), $uids); return $query->execute(); } /** * @param EventDemand $demand * @return QueryResultInterface * @throws InvalidQueryException */ public function findByDemand(EventDemand $demand) { $query = $this->createDemandQuery($demand); if ($demand->getRecordUids() !== [] && $demand->getSortBy() === 'default') { return $this->sortByDemand($query, $demand); } return $query->execute(); } /** * @param EventDemand $demand * @return QueryInterface * @throws InvalidQueryException */ protected function createDemandQuery(EventDemand $demand): QueryInterface { $query = $this->createQuery(); // sorting $sortBy = $demand->getSortBy(); $sortingsToIgnore = ['singleSelection', 'default']; if ($sortBy && in_array($sortBy, $sortingsToIgnore) === false) { $order = strtolower($demand->getSortOrder()) === 'desc' ? QueryInterface::ORDER_DESCENDING : QueryInterface::ORDER_ASCENDING; $query->setOrderings([$sortBy => $order]); } $constraints = []; $categories = $demand->getCategories(); if ($categories) { $categoryConstraints = $this->createCategoryConstraint($query, $categories, $demand->getIncludeSubCategories()); if ($demand->getCategoryCombination() === 'or') { $constraints['categories'] = $query->logicalOr($categoryConstraints); } else { $constraints['categories'] = $query->logicalAnd($categoryConstraints); } } if ($demand->getRecordUids() !== []) { $constraints['recordUids'] = $query->in('uid', $demand->getRecordUids()); } if ($demand->getRegion() !== '') { $constraints['region'] = $query->equals('region', $demand->getRegion()); } if ($demand->getHighlight()) { $constraints['highlight'] = $query->equals('highlight', $demand->getHighlight()); } if ($demand->getLimit() !== '') { $query->setLimit((int) $demand->getLimit()); } if (!empty($constraints)) { $query->matching($query->logicalAnd($constraints)); } return $query; } /** * @param QueryInterface $query * @param string $categories * @param bool $includeSubCategories * @return array * @throws InvalidQueryException */ protected function createCategoryConstraint(QueryInterface $query, $categories, bool $includeSubCategories = false): array { $constraints = []; if ($includeSubCategories) { $categoryService = GeneralUtility::makeInstance(CategoryService::class); $allCategories = $categoryService->getChildrenCategories($categories); if (!\is_array($allCategories)) { $allCategories = GeneralUtility::intExplode(',', $allCategories, true); } } else { $allCategories = GeneralUtility::intExplode(',', $categories, true); } foreach ($allCategories as $category) { $constraints[] = $query->contains('categories', $category); } return $constraints; } private function sortByDemand(QueryInterface $query, EventDemand $demand): array { $result = $query->execute()->toArray(); $expectedSorting = $demand->getRecordUids(); usort($result, function (Event $eventA, Event $eventB) use ($expectedSorting) { $positionOfA = array_search($eventA->getUid(), $expectedSorting); $positionOfB = array_search($eventB->getUid(), $expectedSorting); return $positionOfA <=> $positionOfB; }); return $result; } public function findSearchWord($search) { $query = $this->createQuery(); $query->matching( $query->like('title', '%' . $search . '%') ); $query->setOrderings(['title' => QueryInterface::ORDER_ASCENDING]); $query->setLimit(20); return $query->execute(); } }