Refactor discover accounts endpoint, cache popular accounts and remove following check as most invocations are from new accounts

pull/3632/head
Daniel Supernault 2022-08-20 06:07:52 -06:00
rodzic 101676758e
commit 016b11f301
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 13 dodań i 11 usunięć

Wyświetl plik

@ -3028,24 +3028,26 @@ class ApiV1Controller extends Controller
abort_if(!$request->user(), 403);
$pid = $request->user()->profile_id;
$ids = DB::table('profiles')
$ids = Cache::remember('api:v1.1:discover:accounts:popular', 86400, function() {
return DB::table('profiles')
->where('is_private', false)
->whereNull('status')
->orderByDesc('profiles.followers_count')
->limit(20)
->get();
});
$ids = $ids->map(function($profile) {
return AccountService::getMastodon($profile->id);
})
->filter(function($profile) use($pid) {
return $profile &&
isset($profile['id']) &&
!FollowerService::follows($pid, $profile['id']) &&
$profile['id'] != $pid;
})
->take(6)
->values();
return AccountService::getMastodon($profile->id, true);
})
->filter(function($profile) use($pid) {
return $profile && isset($profile['id']);
})
->filter(function($profile) use($pid) {
return $profile['id'] != $pid;
})
->take(6)
->values();
return $this->json($ids);
}