2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
2023-05-17 12:56:55 -04:00
|
|
|
namespace BookStack\Search;
|
2015-08-31 15:11:44 -04:00
|
|
|
|
2024-02-07 16:58:27 -05:00
|
|
|
use BookStack\Entities\Queries\PageQueries;
|
2024-02-08 11:39:59 -05:00
|
|
|
use BookStack\Entities\Queries\QueryPopular;
|
2020-11-21 20:20:38 -05:00
|
|
|
use BookStack\Entities\Tools\SiblingFetcher;
|
2023-05-18 15:53:39 -04:00
|
|
|
use BookStack\Http\Controller;
|
2015-08-31 15:11:44 -04:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
class SearchController extends Controller
|
|
|
|
{
|
2023-06-10 10:08:07 -04:00
|
|
|
public function __construct(
|
2024-02-07 16:58:27 -05:00
|
|
|
protected SearchRunner $searchRunner,
|
|
|
|
protected PageQueries $pageQueries,
|
2023-06-10 10:08:07 -04:00
|
|
|
) {
|
2015-08-31 15:11:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Searches all entities.
|
|
|
|
*/
|
2021-11-12 17:57:50 -05:00
|
|
|
public function search(Request $request, SearchResultsFormatter $formatter)
|
2015-08-31 15:11:44 -04:00
|
|
|
{
|
2020-06-27 08:29:00 -04:00
|
|
|
$searchOpts = SearchOptions::fromRequest($request);
|
|
|
|
$fullSearchString = $searchOpts->toString();
|
|
|
|
$this->setPageTitle(trans('entities.search_for_term', ['term' => $fullSearchString]));
|
2017-03-19 08:48:44 -04:00
|
|
|
|
2017-11-19 10:56:06 -05:00
|
|
|
$page = intval($request->get('page', '0')) ?: 1;
|
2021-06-26 11:23:15 -04:00
|
|
|
$nextPageLink = url('/search?term=' . urlencode($fullSearchString) . '&page=' . ($page + 1));
|
2017-04-15 10:04:30 -04:00
|
|
|
|
2020-11-21 19:17:45 -05:00
|
|
|
$results = $this->searchRunner->searchEntities($searchOpts, 'all', $page, 20);
|
2021-11-12 17:57:50 -05:00
|
|
|
$formatter->format($results['results']->all(), $searchOpts);
|
2017-03-19 08:48:44 -04:00
|
|
|
|
2019-04-07 07:00:09 -04:00
|
|
|
return view('search.all', [
|
2021-06-26 11:23:15 -04:00
|
|
|
'entities' => $results['results'],
|
2017-04-15 10:04:30 -04:00
|
|
|
'totalResults' => $results['total'],
|
2021-06-26 11:23:15 -04:00
|
|
|
'searchTerm' => $fullSearchString,
|
|
|
|
'hasNextPage' => $results['has_more'],
|
2020-06-27 08:29:00 -04:00
|
|
|
'nextPageLink' => $nextPageLink,
|
2021-06-26 11:23:15 -04:00
|
|
|
'options' => $searchOpts,
|
2016-02-21 07:53:58 -05:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2015-09-01 10:35:11 -04:00
|
|
|
/**
|
|
|
|
* Searches all entities within a book.
|
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function searchBook(Request $request, int $bookId)
|
2015-09-01 10:35:11 -04:00
|
|
|
{
|
2017-04-15 14:16:07 -04:00
|
|
|
$term = $request->get('term', '');
|
2020-11-21 19:17:45 -05:00
|
|
|
$results = $this->searchRunner->searchBook($bookId, $term);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2021-08-22 08:15:58 -04:00
|
|
|
return view('entities.list', ['entities' => $results]);
|
2015-09-01 10:35:11 -04:00
|
|
|
}
|
2015-08-31 15:11:44 -04:00
|
|
|
|
2017-04-15 14:16:07 -04:00
|
|
|
/**
|
|
|
|
* Searches all entities within a chapter.
|
|
|
|
*/
|
2019-10-05 07:55:01 -04:00
|
|
|
public function searchChapter(Request $request, int $chapterId)
|
2017-04-15 14:16:07 -04:00
|
|
|
{
|
|
|
|
$term = $request->get('term', '');
|
2020-11-21 19:17:45 -05:00
|
|
|
$results = $this->searchRunner->searchChapter($chapterId, $term);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2021-08-22 08:15:58 -04:00
|
|
|
return view('entities.list', ['entities' => $results]);
|
2017-04-15 14:16:07 -04:00
|
|
|
}
|
2016-06-12 07:14:14 -04: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.
|
|
|
|
*/
|
2024-02-08 11:39:59 -05:00
|
|
|
public function searchForSelector(Request $request, QueryPopular $queryPopular)
|
2016-06-12 07:14:14 -04:00
|
|
|
{
|
2019-03-30 12:54:15 -04:00
|
|
|
$entityTypes = $request->filled('types') ? explode(',', $request->get('types')) : ['page', 'chapter', 'book'];
|
2021-06-26 11:23:15 -04:00
|
|
|
$searchTerm = $request->get('term', false);
|
2018-04-14 13:00:16 -04:00
|
|
|
$permission = $request->get('permission', 'view');
|
2016-06-12 07:14:14 -04:00
|
|
|
|
|
|
|
// Search for entities otherwise show most popular
|
|
|
|
if ($searchTerm !== false) {
|
2021-06-26 11:23:15 -04:00
|
|
|
$searchTerm .= ' {type:' . implode('|', $entityTypes) . '}';
|
2022-07-13 10:23:03 -04:00
|
|
|
$entities = $this->searchRunner->searchEntities(SearchOptions::fromString($searchTerm), 'all', 1, 20)['results'];
|
2016-06-12 07:14:14 -04:00
|
|
|
} else {
|
2024-02-08 11:39:59 -05:00
|
|
|
$entities = $queryPopular->run(20, 0, $entityTypes);
|
2016-06-12 07:14:14 -04:00
|
|
|
}
|
|
|
|
|
2022-11-21 05:29:12 -05:00
|
|
|
return view('search.parts.entity-selector-list', ['entities' => $entities, 'permission' => $permission]);
|
|
|
|
}
|
|
|
|
|
2023-12-11 10:55:43 -05:00
|
|
|
/**
|
|
|
|
* Search for a list of templates to choose from.
|
|
|
|
*/
|
|
|
|
public function templatesForSelector(Request $request)
|
|
|
|
{
|
|
|
|
$searchTerm = $request->get('term', false);
|
|
|
|
|
|
|
|
if ($searchTerm !== false) {
|
|
|
|
$searchOptions = SearchOptions::fromString($searchTerm);
|
|
|
|
$searchOptions->setFilter('is_template');
|
|
|
|
$entities = $this->searchRunner->searchEntities($searchOptions, 'page', 1, 20)['results'];
|
|
|
|
} else {
|
2024-02-07 16:58:27 -05:00
|
|
|
$entities = $this->pageQueries->visibleTemplates()
|
2023-12-11 10:55:43 -05:00
|
|
|
->where('draft', '=', false)
|
|
|
|
->orderBy('updated_at', 'desc')
|
|
|
|
->take(20)
|
2024-02-07 16:58:27 -05:00
|
|
|
->get();
|
2023-12-11 10:55:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return view('search.parts.entity-selector-list', [
|
|
|
|
'entities' => $entities,
|
|
|
|
'permission' => 'view'
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2022-11-21 05:29:12 -05:00
|
|
|
/**
|
|
|
|
* Search for a list of entities and return a partial HTML response of matching entities
|
|
|
|
* to be used as a result preview suggestion list for global system searches.
|
|
|
|
*/
|
|
|
|
public function searchSuggestions(Request $request)
|
|
|
|
{
|
|
|
|
$searchTerm = $request->get('term', '');
|
|
|
|
$entities = $this->searchRunner->searchEntities(SearchOptions::fromString($searchTerm), 'all', 1, 5)['results'];
|
|
|
|
|
|
|
|
foreach ($entities as $entity) {
|
|
|
|
$entity->setAttribute('preview_content', '');
|
|
|
|
}
|
|
|
|
|
|
|
|
return view('search.parts.entity-suggestion-list', [
|
|
|
|
'entities' => $entities->slice(0, 5)
|
|
|
|
]);
|
2016-06-12 07:14:14 -04:00
|
|
|
}
|
2019-02-24 10:57:35 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Search siblings items in the system.
|
|
|
|
*/
|
2024-02-07 11:37:36 -05:00
|
|
|
public function searchSiblings(Request $request, SiblingFetcher $siblingFetcher)
|
2019-02-24 10:57:35 -05:00
|
|
|
{
|
|
|
|
$type = $request->get('entity_type', null);
|
|
|
|
$id = $request->get('entity_id', null);
|
|
|
|
|
2024-02-07 11:37:36 -05:00
|
|
|
$entities = $siblingFetcher->fetch($type, $id);
|
2021-06-26 11:23:15 -04:00
|
|
|
|
2021-08-22 08:15:58 -04:00
|
|
|
return view('entities.list-basic', ['entities' => $entities, 'style' => 'compact']);
|
2019-02-24 10:57:35 -05:00
|
|
|
}
|
2015-08-31 15:11:44 -04:00
|
|
|
}
|