2015-08-31 15:11:44 -04:00
|
|
|
<?php
|
|
|
|
|
2015-09-10 14:31:09 -04:00
|
|
|
namespace BookStack\Http\Controllers;
|
2015-08-31 15:11:44 -04:00
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
2015-09-10 14:31:09 -04:00
|
|
|
use BookStack\Http\Requests;
|
|
|
|
use BookStack\Http\Controllers\Controller;
|
|
|
|
use BookStack\Repos\BookRepo;
|
|
|
|
use BookStack\Repos\ChapterRepo;
|
|
|
|
use BookStack\Repos\PageRepo;
|
2015-08-31 15:11:44 -04:00
|
|
|
|
|
|
|
class SearchController extends Controller
|
|
|
|
{
|
|
|
|
protected $pageRepo;
|
|
|
|
protected $bookRepo;
|
|
|
|
protected $chapterRepo;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SearchController constructor.
|
|
|
|
* @param $pageRepo
|
|
|
|
* @param $bookRepo
|
|
|
|
* @param $chapterRepo
|
|
|
|
*/
|
|
|
|
public function __construct(PageRepo $pageRepo, BookRepo $bookRepo, ChapterRepo $chapterRepo)
|
|
|
|
{
|
|
|
|
$this->pageRepo = $pageRepo;
|
|
|
|
$this->bookRepo = $bookRepo;
|
|
|
|
$this->chapterRepo = $chapterRepo;
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Searches all entities.
|
|
|
|
* @param Request $request
|
|
|
|
* @return \Illuminate\View\View
|
|
|
|
* @internal param string $searchTerm
|
|
|
|
*/
|
|
|
|
public function searchAll(Request $request)
|
|
|
|
{
|
2015-09-01 10:35:11 -04:00
|
|
|
if (!$request->has('term')) {
|
2015-08-31 15:11:44 -04:00
|
|
|
return redirect()->back();
|
|
|
|
}
|
|
|
|
$searchTerm = $request->get('term');
|
|
|
|
$pages = $this->pageRepo->getBySearch($searchTerm);
|
|
|
|
$books = $this->bookRepo->getBySearch($searchTerm);
|
|
|
|
$chapters = $this->chapterRepo->getBySearch($searchTerm);
|
2015-12-05 09:41:51 -05:00
|
|
|
$this->setPageTitle('Search For ' . $searchTerm);
|
2015-09-01 10:35:11 -04:00
|
|
|
return view('search/all', ['pages' => $pages, 'books' => $books, 'chapters' => $chapters, 'searchTerm' => $searchTerm]);
|
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
|
|
|
|
* @return \Illuminate\View\View
|
|
|
|
* @internal param string $searchTerm
|
|
|
|
*/
|
|
|
|
public function searchBook(Request $request, $bookId)
|
|
|
|
{
|
|
|
|
if (!$request->has('term')) {
|
|
|
|
return redirect()->back();
|
|
|
|
}
|
|
|
|
$searchTerm = $request->get('term');
|
2016-01-02 09:48:35 -05:00
|
|
|
$searchWhereTerms = [['book_id', '=', $bookId]];
|
|
|
|
$pages = $this->pageRepo->getBySearch($searchTerm, $searchWhereTerms);
|
|
|
|
$chapters = $this->chapterRepo->getBySearch($searchTerm, $searchWhereTerms);
|
2015-09-01 10:35:11 -04:00
|
|
|
return view('search/book', ['pages' => $pages, 'chapters' => $chapters, 'searchTerm' => $searchTerm]);
|
|
|
|
}
|
2015-08-31 15:11:44 -04:00
|
|
|
|
|
|
|
}
|