boardService = $boardService; $this->cardMapper = $cardMapper; $this->cardService = $cardService; $this->commentsManager = $commentsManager; $this->filterStringParser = $filterStringParser; $this->userManager = $userManager; $this->l10n = $l10n; $this->urlGenerator = $urlGenerator; } public function searchCards(string $term, ?int $limit = null, ?int $cursor = null): array { $boards = $this->boardService->getUserBoards(); $boardIds = array_map(static function (Board $board) { return $board->getId(); }, $boards); $matchedCards = $this->cardMapper->search($boardIds, $this->filterStringParser->parse($term), $limit, $cursor); return $this->cardService->enrichCards($matchedCards); } public function searchBoards(string $term, ?int $limit, ?int $cursor): array { $boards = $this->boardService->getUserBoards(null, true, $cursor, mb_strtolower($term)); // sort the boards, recently modified first usort($boards, function ($boardA, $boardB) { $ta = $boardA->getLastModified(); $tb = $boardB->getLastModified(); return $ta === $tb ? 0 : ($ta > $tb ? -1 : 1); }); // limit the number of results return array_slice($boards, 0, $limit); } public function searchComments(string $term, ?int $limit = null, ?int $cursor = null): array { $boards = $this->boardService->getUserBoards(); $boardIds = array_map(static function (Board $board) { return $board->getId(); }, $boards); $matchedComments = $this->cardMapper->searchComments($boardIds, $this->filterStringParser->parse($term), $limit, $cursor); $self = $this; return array_map(function ($cardRow) use ($self) { $comment = $this->commentsManager->get($cardRow['comment_id']); unset($cardRow['comment_id']); $card = Card::fromRow($cardRow); // TODO: Only perform one enrich call here $self->cardService->enrichCards([$card]); $displayName = $this->userManager->getDisplayName($comment->getActorId()) ?? ''; return new CommentSearchResultEntry($comment->getId(), $comment->getMessage(), $displayName, $card, $this->urlGenerator, $this->l10n); }, $matchedComments); } }