libarea/app/Controllers/SearchController.php
Evg 326e4adf14 DEV: Перенесем поиск
Использование модуля поиска стало нецелесообразно, т.к. он был значительно упрощен.
2022-06-17 15:35:51 +03:00

99 lines
2.9 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace App\Controllers;
use Hleb\Constructor\Handlers\Request;
use App\Models\SearchModel;
use Wamania\Snowball\StemmerFactory;
use UserData, Meta;
class SearchController extends Controller
{
protected $limit = 10;
public function index()
{
return view(
'/default/content/search/home',
[
'meta' => Meta::get(__('search.title'), __('search.desc', ['name' => config('meta.name')])),
]
);
}
public function go()
{
$pageNumber = self::number(Request::getGetInt('page'));
$q = Request::getGet('q');
$type = Request::getGet('cat');
if (!in_array($type, ['post', 'website'])) {
$type = 'post';
}
$sw = microtime(true);
if ($q) {
$lang = config('general.lang');
if (!in_array($lang, ['ru', 'en', 'ro', 'fr', 'de'])) {
$lang = 'en';
}
$stemmer = StemmerFactory::create($lang);
$stem = $stemmer->stem($q);
$results = SearchModel::getSearch($pageNumber, $this->limit, $stem, $type);
$count = SearchModel::getSearchCount($stem, $type);
$user_id = UserData::getUserId();
SearchModel::setSearchLogs(
[
'request' => $q,
'action_type' => $type,
'add_ip' => Request::getRemoteAddress(),
'user_id' => $user_id > 0 ? $user_id : 1,
'count_results' => $count ?? 0,
]
);
}
$facet = $type == 'post' ? 'topic' : 'category';
return $this->render(
'/search/search',
'search',
[
'meta' => Meta::get(__('search.title')),
'data' => [
'results' => $results ?? false,
'type' => $type,
'sheet' => 'admin',
'q' => $q,
'tags' => SearchModel::getSearchTags($q, $facet, 4),
'sw' => (microtime(true) - $sw ?? 0) * 1000,
'count' => $count,
'pagesCount' => ceil($count / $this->limit),
'pNum' => $pageNumber,
]
]
);
}
public function api()
{
$query = Request::getPost('query');
$search = preg_replace('/[^a-zA-ZА-Яа-я0-9 ]/ui', '', $query);
$topics = SearchModel::getSearchTags($search, 'topic', 3);
$posts = SearchModel::getSearch(1, 5, $search, 'post');
$result = array_merge($topics, $posts);
return json_encode($result, JSON_PRETTY_PRINT);
}
public static function number($num)
{
return $num <= 1 ? 1 : $num;
}
}