From f67fada2739f36d0231ce77838712624ae6eebfa Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Tue, 28 Apr 2020 02:42:21 -0600 Subject: [PATCH] Update SearchController, fix self search bug and rank local matches first --- app/Http/Controllers/SearchController.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/Http/Controllers/SearchController.php b/app/Http/Controllers/SearchController.php index 332b679fb..3555bfe94 100644 --- a/app/Http/Controllers/SearchController.php +++ b/app/Http/Controllers/SearchController.php @@ -194,11 +194,14 @@ class SearchController extends Controller else { $this->tokens['profiles'] = Cache::remember($key, $ttl, function() use($tag) { - $users = Profile::select('domain', 'username', 'name', 'id') + if(Str::startsWith($tag, '@')) { + $tag = substr($tag, 1); + } + $users = Profile::select('status', 'domain', 'username', 'name', 'id') ->whereNull('status') - ->where('id', '!=', Auth::user()->profile->id) ->where('username', 'like', '%'.$tag.'%') ->limit(20) + ->orderBy('domain') ->get(); if($users->count() > 0) {