mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 14:31:26 +00:00
Update DiscoverController, use UserFilterService on trendingApi
This commit is contained in:
parent
51bde8ff33
commit
135474ae11
2 changed files with 145 additions and 125 deletions
|
@ -24,6 +24,7 @@ use League\Fractal\Pagination\IlluminatePaginatorAdapter;
|
|||
use App\Services\StatusHashtagService;
|
||||
use App\Services\SnowflakeService;
|
||||
use App\Services\StatusService;
|
||||
use App\Services\UserFilterService;
|
||||
|
||||
class DiscoverController extends Controller
|
||||
{
|
||||
|
@ -149,16 +150,35 @@ class DiscoverController extends Controller
|
|||
->pluck('id');
|
||||
});
|
||||
|
||||
$filtered = Auth::check() ? UserFilterService::filters(Auth::user()->profile_id) : [];
|
||||
|
||||
$res = $ids->map(function($s) {
|
||||
return StatusService::get($s);
|
||||
});
|
||||
})->filter(function($s) use($filtered) {
|
||||
return $s && !in_array($s['account']['id'], $filtered);
|
||||
})->values();
|
||||
|
||||
return response()->json($res);
|
||||
}
|
||||
|
||||
public function trendingHashtags(Request $request)
|
||||
{
|
||||
return [];
|
||||
$res = StatusHashtag::select('hashtag_id', \DB::raw('count(*) as total'))
|
||||
->groupBy('hashtag_id')
|
||||
->orderBy('total','desc')
|
||||
->where('created_at', '>', now()->subDays(90))
|
||||
->take(9)
|
||||
->get()
|
||||
->map(function($h) {
|
||||
$hashtag = $h->hashtag;
|
||||
return [
|
||||
'id' => $hashtag->id,
|
||||
'total' => $h->total,
|
||||
'name' => '#'.$hashtag->name,
|
||||
'url' => $hashtag->url('?src=dsh1')
|
||||
];
|
||||
});
|
||||
return $res;
|
||||
}
|
||||
|
||||
public function trendingPlaces(Request $request)
|
||||
|
|
|
@ -54,7 +54,7 @@ class UserFilterService {
|
|||
|
||||
public static function filters(int $profile_id) : array
|
||||
{
|
||||
return array_merge(self::mutes($profile_id), self::blocks($profile_id));
|
||||
return array_unique(array_merge(self::mutes($profile_id), self::blocks($profile_id)));
|
||||
}
|
||||
|
||||
public static function mute(int $profile_id, int $muted_id)
|
||||
|
|
Loading…
Reference in a new issue