1
0
Fork 0

Update DiscoverController

This commit is contained in:
Daniel Supernault 2019-03-02 01:38:44 -07:00
parent 44f5ce7220
commit d50e9c4df9
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 9 additions and 3 deletions

View File

@ -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);