Files
firefly-iii/app/Http/Controllers/SearchController.php

109 lines
3.6 KiB
PHP
Raw Normal View History

2016-05-20 08:57:45 +02:00
<?php
/**
* SearchController.php
2017-10-21 08:40:00 +02:00
* Copyright (c) 2017 thegrumpydictator@gmail.com
*
2017-10-21 08:40:00 +02:00
* This file is part of Firefly III.
*
2017-10-21 08:40:00 +02:00
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2017-12-17 14:41:58 +01:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
2016-05-20 08:57:45 +02:00
namespace FireflyIII\Http\Controllers;
2015-02-27 11:09:23 +01:00
use FireflyIII\Support\Search\SearchInterface;
2018-07-08 12:28:42 +02:00
use Illuminate\Http\JsonResponse;
2016-11-06 14:52:31 +01:00
use Illuminate\Http\Request;
2018-08-04 17:30:06 +02:00
use Log;
use Throwable;
2015-02-27 11:09:23 +01:00
/**
2017-11-15 12:25:49 +01:00
* Class SearchController.
2015-02-27 11:09:23 +01:00
*/
2015-03-10 17:26:31 +01:00
class SearchController extends Controller
{
/**
* SearchController constructor.
*/
2016-01-08 18:29:47 +01:00
public function __construct()
{
2016-01-08 20:40:48 +01:00
parent::__construct();
2019-09-04 07:51:31 +02:00
app('view')->share('showCategory', true);
$this->middleware(
2019-09-04 07:51:31 +02:00
static function ($request, $next) {
2017-12-16 19:46:36 +01:00
app('view')->share('mainTitleIcon', 'fa-search');
2018-07-15 09:38:49 +02:00
app('view')->share('title', (string)trans('firefly.search'));
return $next($request);
}
);
2016-01-08 18:29:47 +01:00
}
2015-02-27 11:09:23 +01:00
/**
2018-07-22 08:10:16 +02:00
* Do the search.
*
2016-11-18 20:06:08 +01:00
* @param Request $request
2015-05-03 12:58:55 +02:00
* @param SearchInterface $searcher
*
2018-07-08 12:08:53 +02:00
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
2015-02-27 11:09:23 +01:00
*/
2016-11-06 14:52:31 +01:00
public function index(Request $request, SearchInterface $searcher)
2015-02-27 11:09:23 +01:00
{
2019-08-02 05:32:30 +02:00
$fullQuery = (string)$request->get('search');
2019-09-08 20:21:44 +02:00
$page = 0 === (int)$request->get('page') ? 1 : (int)$request->get('page');
2017-07-15 17:19:12 +02:00
// parse search terms:
$searcher->parseQuery($fullQuery);
2019-08-02 05:32:30 +02:00
$query = $searcher->getWordsAsString();
2019-03-02 14:12:09 +01:00
$modifiers = $searcher->getModifiers();
2019-08-02 05:32:30 +02:00
$subTitle = (string)trans('breadcrumbs.search_result', ['query' => $query]);
2017-07-15 17:19:12 +02:00
2019-09-08 20:21:44 +02:00
return view('search.index', compact('query', 'modifiers', 'page','fullQuery', 'subTitle'));
2015-02-27 11:09:23 +01:00
}
2017-12-17 14:30:53 +01:00
/**
2018-07-22 08:10:16 +02:00
* JSON request that does the work.
*
2017-12-17 14:30:53 +01:00
* @param Request $request
* @param SearchInterface $searcher
*
* @return \Illuminate\Http\JsonResponse
*/
2018-07-08 12:28:42 +02:00
public function search(Request $request, SearchInterface $searcher): JsonResponse
2017-07-15 17:19:12 +02:00
{
2019-09-08 20:21:44 +02:00
$fullQuery = (string)$request->get('query');
$page = 0 === (int)$request->get('page') ? 1 : (int)$request->get('page');
2017-10-26 19:56:03 +02:00
2019-02-27 19:08:09 +01:00
$searcher->parseQuery($fullQuery);
2019-09-08 20:21:44 +02:00
$searcher->setPage($page);
2019-02-27 19:08:09 +01:00
$searcher->setLimit((int)config('firefly.search_result_limit'));
2019-09-08 20:21:44 +02:00
$groups = $searcher->searchTransactions();
$hasPages = $groups->hasPages();
$searchTime = round($searcher->searchTime(), 3); // in seconds
2019-09-08 20:21:44 +02:00
$parameters = ['search' => $fullQuery];
$url = route('search.index') . '?' . http_build_query($parameters);
$groups->setPath($url);
2018-08-04 17:30:06 +02:00
try {
2019-09-08 20:21:44 +02:00
$html = view('search.search', compact('groups', 'hasPages', 'searchTime'))->render();
2018-08-30 20:58:07 +02:00
// @codeCoverageIgnoreStart
2018-08-04 17:30:06 +02:00
} catch (Throwable $e) {
Log::error(sprintf('Cannot render search.search: %s', $e->getMessage()));
$html = 'Could not render view.';
}
2019-02-13 17:38:41 +01:00
2018-08-30 20:58:07 +02:00
// @codeCoverageIgnoreEnd
2017-07-15 17:19:12 +02:00
2019-08-02 05:32:30 +02:00
return response()->json(['count' => $groups->count(), 'html' => $html]);
2017-07-15 17:19:12 +02:00
}
2015-02-27 11:09:23 +01:00
}