Update SearchApiV2Service, improve postgres support

This commit is contained in:
Daniel Supernault 2023-05-05 02:10:07 -06:00
parent d34f078887
commit 666e5732a5
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 6 additions and 5 deletions

View File

@ -96,9 +96,10 @@ class SearchApiV2Service
$webfingerQuery = '@' . $webfingerQuery;
}
$banned = InstanceService::getBannedDomains();
$operator = config('database.default') === 'pgsql' ? 'ilike' : 'like';
$results = Profile::select('username', 'id', 'followers_count', 'domain')
->where('username', 'like', $query)
->orWhere('webfinger', 'like', $webfingerQuery)
->where('username', $operator, $query)
->orWhere('webfinger', $operator, $webfingerQuery)
->orderByDesc('profiles.followers_count')
->offset($offset)
->limit($limit)
@ -161,11 +162,11 @@ class SearchApiV2Service
protected function statusesById()
{
$mastodonMode = self::$mastodonMode;
$accountId = $this->query->input('account_id');
$limit = $this->query->input('limit', 20);
$query = '%' . $this->query->input('q') . '%';
$results = Status::where('caption', 'like', $query)
->whereProfileId($accountId)
$operator = config('database.default') === 'pgsql' ? 'ilike' : 'like';
$results = Status::where('caption', $operator, $query)
->whereProfileId(request()->user()->profile_id)
->limit($limit)
->get()
->map(function($status) use($mastodonMode) {