* * @author Julius Härtl * * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * */ declare(strict_types=1); namespace OCA\Deck\Search; use OCA\Deck\Db\Board; use OCA\Deck\Db\Card; use OCA\Deck\Db\CardMapper; use OCA\Deck\Db\StackMapper; use OCA\Deck\Service\BoardService; use OCP\IURLGenerator; use OCP\IUser; use OCP\Search\IProvider; use OCP\Search\ISearchQuery; use OCP\Search\SearchResult; class DeckProvider implements IProvider { /** * @var BoardService */ private $boardService; /** * @var CardMapper */ private $cardMapper; /** * @var StackMapper */ private $stackMapper; /** * @var IURLGenerator */ private $urlGenerator; public function __construct( BoardService $boardService, StackMapper $stackMapper, CardMapper $cardMapper, IURLGenerator $urlGenerator ) { $this->boardService = $boardService; $this->stackMapper = $stackMapper; $this->cardMapper = $cardMapper; $this->urlGenerator = $urlGenerator; } public function getId(): string { return 'deck'; } public function getName(): string { return 'Deck'; } public function search(IUser $user, ISearchQuery $query): SearchResult { $boards = $this->boardService->getUserBoards(); $matchedBoards = array_filter($this->boardService->getUserBoards(), static function (Board $board) use ($query) { return mb_stripos($board->getTitle(), $query->getTerm()) > -1; }); $matchedCards = $this->cardMapper->search(array_map(static function (Board $board) { return $board->getId(); }, $boards), $query->getTerm(), $query->getLimit(), $query->getCursor()); $self = $this; $results = array_merge( array_map(function (Board $board) { return new BoardSearchResultEntry($board, $this->urlGenerator); }, $matchedBoards), array_map(function (Card $card) use ($self) { $board = $self->boardService->find($self->cardMapper->findBoardId($card->getId())); $stack = $self->stackMapper->find($card->getStackId()); return new CardSearchResultEntry($board, $stack, $card, $this->urlGenerator); }, $matchedCards) ); return SearchResult::complete( 'Deck', $results ); } public function getOrder(string $route, array $routeParameters): int { if ($route === 'deck.page.index') { return -5; } return 10; } }