2016-12-04 16:51:39 +00:00
|
|
|
<?php namespace BookStack\Http\Controllers;
|
2015-08-31 20:11:44 +01:00
|
|
|
|
2018-09-25 16:58:03 +01:00
|
|
|
use BookStack\Actions\ViewService;
|
2020-11-22 00:17:45 +00:00
|
|
|
use BookStack\Entities\Models\Book;
|
|
|
|
use BookStack\Entities\Models\Bookshelf;
|
|
|
|
use BookStack\Entities\Models\Entity;
|
|
|
|
use BookStack\Entities\Tools\SearchRunner;
|
2020-11-21 23:20:54 +00:00
|
|
|
use BookStack\Entities\Tools\ShelfContext;
|
2020-11-22 00:17:45 +00:00
|
|
|
use BookStack\Entities\Tools\SearchOptions;
|
2015-08-31 20:11:44 +01:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
class SearchController extends Controller
|
|
|
|
{
|
2016-06-12 12:14:14 +01:00
|
|
|
protected $viewService;
|
2020-11-22 00:17:45 +00:00
|
|
|
protected $searchRunner;
|
2019-04-07 18:28:11 +01:00
|
|
|
protected $entityContextManager;
|
2015-08-31 20:11:44 +01:00
|
|
|
|
2019-04-07 18:28:11 +01:00
|
|
|
public function __construct(
|
|
|
|
ViewService $viewService,
|
2020-11-22 00:17:45 +00:00
|
|
|
SearchRunner $searchRunner,
|
2020-11-21 23:20:54 +00:00
|
|
|
ShelfContext $entityContextManager
|
2019-04-07 18:28:11 +01:00
|
|
|
) {
|
2016-06-12 12:14:14 +01:00
|
|
|
$this->viewService = $viewService;
|
2020-11-22 00:17:45 +00:00
|
|
|
$this->searchRunner = $searchRunner;
|
2019-04-07 18:28:11 +01:00
|
|
|
$this->entityContextManager = $entityContextManager;
|
2015-08-31 20:11:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Searches all entities.
|
|
|
|
*/
|
2017-04-09 20:59:57 +01:00
|
|
|
public function search(Request $request)
|
2015-08-31 20:11:44 +01:00
|
|
|
{
|
2020-06-27 13:29:00 +01:00
|
|
|
$searchOpts = SearchOptions::fromRequest($request);
|
|
|
|
$fullSearchString = $searchOpts->toString();
|
|
|
|
$this->setPageTitle(trans('entities.search_for_term', ['term' => $fullSearchString]));
|
2017-03-19 12:48:44 +00:00
|
|
|
|
2017-11-19 15:56:06 +00:00
|
|
|
$page = intval($request->get('page', '0')) ?: 1;
|
2020-06-27 13:29:00 +01:00
|
|
|
$nextPageLink = url('/search?term=' . urlencode($fullSearchString) . '&page=' . ($page+1));
|
2017-04-15 15:04:30 +01:00
|
|
|
|
2020-11-22 00:17:45 +00:00
|
|
|
$results = $this->searchRunner->searchEntities($searchOpts, 'all', $page, 20);
|
2017-03-19 12:48:44 +00:00
|
|
|
|
2019-04-07 12:00:09 +01:00
|
|
|
return view('search.all', [
|
2017-04-15 15:04:30 +01:00
|
|
|
'entities' => $results['results'],
|
|
|
|
'totalResults' => $results['total'],
|
2020-06-27 13:29:00 +01:00
|
|
|
'searchTerm' => $fullSearchString,
|
2018-03-24 18:46:31 +00:00
|
|
|
'hasNextPage' => $results['has_more'],
|
2020-06-27 13:29:00 +01:00
|
|
|
'nextPageLink' => $nextPageLink,
|
|
|
|
'options' => $searchOpts,
|
2016-02-21 12:53:58 +00:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2015-09-01 15:35:11 +01:00
|
|
|
/**
|
|
|
|
* Searches all entities within a book.
|
|
|
|
*/
|
2019-10-05 12:55:01 +01:00
|
|
|
public function searchBook(Request $request, int $bookId)
|
2015-09-01 15:35:11 +01:00
|
|
|
{
|
2017-04-15 19:16:07 +01:00
|
|
|
$term = $request->get('term', '');
|
2020-11-22 00:17:45 +00:00
|
|
|
$results = $this->searchRunner->searchBook($bookId, $term);
|
2019-04-07 12:00:09 +01:00
|
|
|
return view('partials.entity-list', ['entities' => $results]);
|
2015-09-01 15:35:11 +01:00
|
|
|
}
|
2015-08-31 20:11:44 +01:00
|
|
|
|
2017-04-15 19:16:07 +01:00
|
|
|
/**
|
|
|
|
* Searches all entities within a chapter.
|
|
|
|
*/
|
2019-10-05 12:55:01 +01:00
|
|
|
public function searchChapter(Request $request, int $chapterId)
|
2017-04-15 19:16:07 +01:00
|
|
|
{
|
|
|
|
$term = $request->get('term', '');
|
2020-11-22 00:17:45 +00:00
|
|
|
$results = $this->searchRunner->searchChapter($chapterId, $term);
|
2019-04-07 12:00:09 +01:00
|
|
|
return view('partials.entity-list', ['entities' => $results]);
|
2017-04-15 19:16:07 +01:00
|
|
|
}
|
2016-06-12 12:14:14 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Search for a list of entities and return a partial HTML response of matching entities.
|
|
|
|
* Returns the most popular entities if no search is provided.
|
|
|
|
*/
|
|
|
|
public function searchEntitiesAjax(Request $request)
|
|
|
|
{
|
2019-03-30 16:54:15 +00:00
|
|
|
$entityTypes = $request->filled('types') ? explode(',', $request->get('types')) : ['page', 'chapter', 'book'];
|
2017-11-19 15:56:06 +00:00
|
|
|
$searchTerm = $request->get('term', false);
|
2018-04-14 18:00:16 +01:00
|
|
|
$permission = $request->get('permission', 'view');
|
2016-06-12 12:14:14 +01:00
|
|
|
|
|
|
|
// Search for entities otherwise show most popular
|
|
|
|
if ($searchTerm !== false) {
|
2019-03-30 16:54:15 +00:00
|
|
|
$searchTerm .= ' {type:'. implode('|', $entityTypes) .'}';
|
2020-11-22 00:17:45 +00:00
|
|
|
$entities = $this->searchRunner->searchEntities(SearchOptions::fromString($searchTerm), 'all', 1, 20, $permission)['results'];
|
2016-06-12 12:14:14 +01:00
|
|
|
} else {
|
2019-03-30 16:54:15 +00:00
|
|
|
$entities = $this->viewService->getPopular(20, 0, $entityTypes, $permission);
|
2016-06-12 12:14:14 +01:00
|
|
|
}
|
|
|
|
|
2019-03-30 16:54:15 +00:00
|
|
|
return view('search.entity-ajax-list', ['entities' => $entities]);
|
2016-06-12 12:14:14 +01:00
|
|
|
}
|
2019-02-24 15:57:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Search siblings items in the system.
|
|
|
|
*/
|
|
|
|
public function searchSiblings(Request $request)
|
|
|
|
{
|
|
|
|
$type = $request->get('entity_type', null);
|
|
|
|
$id = $request->get('entity_id', null);
|
|
|
|
|
2019-10-05 12:55:01 +01:00
|
|
|
$entity = Entity::getEntityInstance($type)->newQuery()->visible()->find($id);
|
2019-02-24 15:57:35 +00:00
|
|
|
if (!$entity) {
|
|
|
|
return $this->jsonError(trans('errors.entity_not_found'), 404);
|
|
|
|
}
|
|
|
|
|
|
|
|
$entities = [];
|
|
|
|
|
|
|
|
// Page in chapter
|
|
|
|
if ($entity->isA('page') && $entity->chapter) {
|
2020-02-15 19:09:33 +00:00
|
|
|
$entities = $entity->chapter->getVisiblePages();
|
2019-02-24 15:57:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Page in book or chapter
|
|
|
|
if (($entity->isA('page') && !$entity->chapter) || $entity->isA('chapter')) {
|
2019-10-05 12:55:01 +01:00
|
|
|
$entities = $entity->book->getDirectChildren();
|
2019-02-24 15:57:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Book
|
2019-04-07 18:28:11 +01:00
|
|
|
// Gets just the books in a shelf if shelf is in context
|
2019-02-24 15:57:35 +00:00
|
|
|
if ($entity->isA('book')) {
|
2019-04-07 18:28:11 +01:00
|
|
|
$contextShelf = $this->entityContextManager->getContextualShelfForBook($entity);
|
|
|
|
if ($contextShelf) {
|
2019-10-05 12:55:01 +01:00
|
|
|
$entities = $contextShelf->visibleBooks()->get();
|
2019-04-07 18:28:11 +01:00
|
|
|
} else {
|
2019-10-05 12:55:01 +01:00
|
|
|
$entities = Book::visible()->get();
|
2019-04-07 18:28:11 +01:00
|
|
|
}
|
2019-02-24 15:57:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Shelve
|
2019-04-07 18:28:11 +01:00
|
|
|
if ($entity->isA('bookshelf')) {
|
2019-10-05 12:55:01 +01:00
|
|
|
$entities = Bookshelf::visible()->get();
|
2019-04-07 18:28:11 +01:00
|
|
|
}
|
2019-02-24 15:57:35 +00:00
|
|
|
|
|
|
|
return view('partials.entity-list-basic', ['entities' => $entities, 'style' => 'compact']);
|
|
|
|
}
|
2015-08-31 20:11:44 +01:00
|
|
|
}
|