2021-06-26 11:23:15 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Http\Controllers;
|
2015-08-31 15:11:44 -04:00
|
|
|
|
2021-05-22 09:05:28 -04:00
|
|
|
use BookStack\Entities\Queries\Popular;
|
2020-11-21 20:20:38 -05:00
|
|
|
use BookStack\Entities\Tools\SiblingFetcher;
|
2022-08-16 06:27:22 -04:00
|
|
|
use BookStack\Search\SearchOptions;
|
|
|
|
use BookStack\Search\SearchResultsFormatter;
|
|
|
|
use BookStack\Search\SearchRunner;
|
2015-08-31 15:11:44 -04:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
class SearchController extends Controller
|
|
|
|
{
|
2020-11-21 19:17:45 -05:00
|
|
|
protected $searchRunner;
|
2015-08-31 15:11:44 -04:00
|
|
|
|
2021-11-13 08:28:17 -05:00
|
|
|
public function __construct(SearchRunner $searchRunner)
|
|
|
|
{
|
2020-11-21 19:17:45 -05:00
|
|
|
$this->searchRunner = $searchRunner;
|
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.
|
|
|
|
*/
|
|
|
|
public function searchEntitiesAjax(Request $request)
|
|
|
|
{
|
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 {
|
2022-07-13 10:23:03 -04:00
|
|
|
$entities = (new Popular())->run(20, 0, $entityTypes);
|
2016-06-12 07:14:14 -04:00
|
|
|
}
|
|
|
|
|
2022-07-13 10:23:03 -04:00
|
|
|
return view('search.parts.entity-ajax-list', ['entities' => $entities, 'permission' => $permission]);
|
2016-06-12 07:14:14 -04:00
|
|
|
}
|
2019-02-24 10:57:35 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Search siblings items in the system.
|
|
|
|
*/
|
|
|
|
public function searchSiblings(Request $request)
|
|
|
|
{
|
|
|
|
$type = $request->get('entity_type', null);
|
|
|
|
$id = $request->get('entity_id', null);
|
|
|
|
|
2021-06-26 11:23:15 -04:00
|
|
|
$entities = (new SiblingFetcher())->fetch($type, $id);
|
|
|
|
|
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
|
|
|
}
|