mirror of https://github.com/pixelfed/pixelfed.git
Update DiscoverController
This commit is contained in:
parent
44f5ce7220
commit
d50e9c4df9
|
@ -29,7 +29,7 @@ class DiscoverController extends Controller
|
|||
public function showTags(Request $request, $hashtag)
|
||||
{
|
||||
$this->validate($request, [
|
||||
'page' => 'nullable|integer|min:1|max:10',
|
||||
'page' => 'nullable|integer|min:1|max:20',
|
||||
]);
|
||||
|
||||
$tag = Hashtag::with('posts')
|
||||
|
@ -37,7 +37,12 @@ class DiscoverController extends Controller
|
|||
->whereSlug($hashtag)
|
||||
->firstOrFail();
|
||||
|
||||
$posts = $tag->posts()
|
||||
$page = $request->input('page') ?? 1;
|
||||
$key = 'discover:tag-'.$tag->id.':page-'.$page;
|
||||
$keyMinutes = $page > 1 ? 5 : 2;
|
||||
|
||||
$posts = Cache::remember($key, now()->addMinutes($keyMinutes), function() use ($tag, $request) {
|
||||
return $tag->posts()
|
||||
->whereNull('url')
|
||||
->whereNull('uri')
|
||||
->whereHas('media')
|
||||
|
@ -45,7 +50,8 @@ class DiscoverController extends Controller
|
|||
->whereIsNsfw(false)
|
||||
->whereVisibility('public')
|
||||
->orderBy('id', 'desc')
|
||||
->simplePaginate(12);
|
||||
->simplePaginate(24);
|
||||
});
|
||||
|
||||
if($posts->count() == 0) {
|
||||
abort(404);
|
||||
|
|
Loading…
Reference in New Issue