2016-12-04 11:51:39 -05:00
|
|
|
<?php namespace BookStack\Http\Controllers;
|
2015-08-31 15:11:44 -04:00
|
|
|
|
2018-09-25 11:58:03 -04:00
|
|
|
use BookStack\Actions\ViewService;
|
2019-04-07 13:28:11 -04:00
|
|
|
use BookStack\Entities\EntityContextManager;
|
2018-10-13 06:27:55 -04:00
|
|
|
use BookStack\Entities\Repos\EntityRepo;
|
2018-09-25 07:30:50 -04:00
|
|
|
use BookStack\Entities\SearchService;
|
2019-02-24 10:57:35 -05:00
|
|
|
use BookStack\Exceptions\NotFoundException;
|
2019-04-07 13:28:11 -04:00
|
|
|
use Illuminate\Contracts\View\Factory;
|
2015-08-31 15:11:44 -04:00
|
|
|
use Illuminate\Http\Request;
|
2019-04-07 13:28:11 -04:00
|
|
|
use Illuminate\View\View;
|
2015-08-31 15:11:44 -04:00
|
|
|
|
|
|
|
class SearchController extends Controller
|
|
|
|
{
|
2017-01-01 11:57:47 -05:00
|
|
|
protected $entityRepo;
|
2016-06-12 07:14:14 -04:00
|
|
|
protected $viewService;
|
2017-03-19 08:48:44 -04:00
|
|
|
protected $searchService;
|
2019-04-07 13:28:11 -04:00
|
|
|
protected $entityContextManager;
|
2015-08-31 15:11:44 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SearchController constructor.
|
2019-04-07 13:28:11 -04:00
|
|
|
* @param EntityRepo $entityRepo
|
2016-06-12 07:14:14 -04:00
|
|
|
* @param ViewService $viewService
|
2017-03-19 08:48:44 -04:00
|
|
|
* @param SearchService $searchService
|
2019-04-07 13:28:11 -04:00
|
|
|
* @param EntityContextManager $entityContextManager
|
2015-08-31 15:11:44 -04:00
|
|
|
*/
|
2019-04-07 13:28:11 -04:00
|
|
|
public function __construct(
|
|
|
|
EntityRepo $entityRepo,
|
|
|
|
ViewService $viewService,
|
|
|
|
SearchService $searchService,
|
|
|
|
EntityContextManager $entityContextManager
|
|
|
|
) {
|
2017-01-01 11:57:47 -05:00
|
|
|
$this->entityRepo = $entityRepo;
|
2016-06-12 07:14:14 -04:00
|
|
|
$this->viewService = $viewService;
|
2017-03-19 08:48:44 -04:00
|
|
|
$this->searchService = $searchService;
|
2019-04-07 13:28:11 -04:00
|
|
|
$this->entityContextManager = $entityContextManager;
|
2015-08-31 15:11:44 -04:00
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Searches all entities.
|
|
|
|
* @param Request $request
|
2019-04-07 13:28:11 -04:00
|
|
|
* @return View
|
2015-08-31 15:11:44 -04:00
|
|
|
* @internal param string $searchTerm
|
|
|
|
*/
|
2017-04-09 15:59:57 -04:00
|
|
|
public function search(Request $request)
|
2015-08-31 15:11:44 -04:00
|
|
|
{
|
|
|
|
$searchTerm = $request->get('term');
|
2016-12-04 11:51:39 -05:00
|
|
|
$this->setPageTitle(trans('entities.search_for_term', ['term' => $searchTerm]));
|
2017-03-19 08:48:44 -04:00
|
|
|
|
2017-11-19 10:56:06 -05:00
|
|
|
$page = intval($request->get('page', '0')) ?: 1;
|
2019-08-04 09:26:39 -04:00
|
|
|
$nextPageLink = url('/search?term=' . urlencode($searchTerm) . '&page=' . ($page+1));
|
2017-04-15 10:04:30 -04:00
|
|
|
|
|
|
|
$results = $this->searchService->searchEntities($searchTerm, 'all', $page, 20);
|
2017-03-19 08:48:44 -04:00
|
|
|
|
2019-04-07 07:00:09 -04:00
|
|
|
return view('search.all', [
|
2017-04-15 10:04:30 -04:00
|
|
|
'entities' => $results['results'],
|
|
|
|
'totalResults' => $results['total'],
|
|
|
|
'searchTerm' => $searchTerm,
|
2018-03-24 14:46:31 -04:00
|
|
|
'hasNextPage' => $results['has_more'],
|
2017-04-15 10:04:30 -04:00
|
|
|
'nextPageLink' => $nextPageLink
|
2016-02-21 07:53:58 -05:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2015-08-31 15:11:44 -04:00
|
|
|
|
2015-09-01 10:35:11 -04:00
|
|
|
/**
|
|
|
|
* Searches all entities within a book.
|
|
|
|
* @param Request $request
|
|
|
|
* @param integer $bookId
|
2019-04-07 13:28:11 -04:00
|
|
|
* @return View
|
2015-09-01 10:35:11 -04:00
|
|
|
* @internal param string $searchTerm
|
|
|
|
*/
|
|
|
|
public function searchBook(Request $request, $bookId)
|
|
|
|
{
|
2017-04-15 14:16:07 -04:00
|
|
|
$term = $request->get('term', '');
|
|
|
|
$results = $this->searchService->searchBook($bookId, $term);
|
2019-04-07 07:00:09 -04:00
|
|
|
return view('partials.entity-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.
|
|
|
|
* @param Request $request
|
|
|
|
* @param integer $chapterId
|
2019-04-07 13:28:11 -04:00
|
|
|
* @return View
|
2017-04-15 14:16:07 -04:00
|
|
|
* @internal param string $searchTerm
|
|
|
|
*/
|
|
|
|
public function searchChapter(Request $request, $chapterId)
|
|
|
|
{
|
|
|
|
$term = $request->get('term', '');
|
|
|
|
$results = $this->searchService->searchChapter($chapterId, $term);
|
2019-04-07 07:00:09 -04:00
|
|
|
return view('partials.entity-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.
|
|
|
|
* @param Request $request
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function searchEntitiesAjax(Request $request)
|
|
|
|
{
|
2019-03-30 12:54:15 -04:00
|
|
|
$entityTypes = $request->filled('types') ? explode(',', $request->get('types')) : ['page', 'chapter', 'book'];
|
2017-11-19 10:56:06 -05: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) {
|
2019-03-30 12:54:15 -04:00
|
|
|
$searchTerm .= ' {type:'. implode('|', $entityTypes) .'}';
|
2018-04-14 13:00:16 -04:00
|
|
|
$entities = $this->searchService->searchEntities($searchTerm, 'all', 1, 20, $permission)['results'];
|
2016-06-12 07:14:14 -04:00
|
|
|
} else {
|
2019-03-30 12:54:15 -04:00
|
|
|
$entities = $this->viewService->getPopular(20, 0, $entityTypes, $permission);
|
2016-06-12 07:14:14 -04:00
|
|
|
}
|
|
|
|
|
2019-03-30 12:54:15 -04:00
|
|
|
return view('search.entity-ajax-list', ['entities' => $entities]);
|
2016-06-12 07:14:14 -04:00
|
|
|
}
|
2019-02-24 10:57:35 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Search siblings items in the system.
|
|
|
|
* @param Request $request
|
2019-04-07 13:28:11 -04:00
|
|
|
* @return Factory|View|mixed
|
2019-02-24 10:57:35 -05:00
|
|
|
*/
|
|
|
|
public function searchSiblings(Request $request)
|
|
|
|
{
|
|
|
|
$type = $request->get('entity_type', null);
|
|
|
|
$id = $request->get('entity_id', null);
|
|
|
|
|
|
|
|
$entity = $this->entityRepo->getById($type, $id);
|
|
|
|
if (!$entity) {
|
|
|
|
return $this->jsonError(trans('errors.entity_not_found'), 404);
|
|
|
|
}
|
|
|
|
|
|
|
|
$entities = [];
|
|
|
|
|
|
|
|
// Page in chapter
|
|
|
|
if ($entity->isA('page') && $entity->chapter) {
|
|
|
|
$entities = $this->entityRepo->getChapterChildren($entity->chapter);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Page in book or chapter
|
|
|
|
if (($entity->isA('page') && !$entity->chapter) || $entity->isA('chapter')) {
|
|
|
|
$entities = $this->entityRepo->getBookDirectChildren($entity->book);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Book
|
2019-04-07 13:28:11 -04:00
|
|
|
// Gets just the books in a shelf if shelf is in context
|
2019-02-24 10:57:35 -05:00
|
|
|
if ($entity->isA('book')) {
|
2019-04-07 13:28:11 -04:00
|
|
|
$contextShelf = $this->entityContextManager->getContextualShelfForBook($entity);
|
|
|
|
if ($contextShelf) {
|
|
|
|
$entities = $this->entityRepo->getBookshelfChildren($contextShelf);
|
|
|
|
} else {
|
|
|
|
$entities = $this->entityRepo->getAll('book');
|
|
|
|
}
|
2019-02-24 10:57:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Shelve
|
2019-04-07 13:28:11 -04:00
|
|
|
if ($entity->isA('bookshelf')) {
|
|
|
|
$entities = $this->entityRepo->getAll('bookshelf');
|
|
|
|
}
|
2019-02-24 10:57:35 -05:00
|
|
|
|
|
|
|
return view('partials.entity-list-basic', ['entities' => $entities, 'style' => 'compact']);
|
|
|
|
}
|
2015-08-31 15:11:44 -04:00
|
|
|
}
|