mirror of https://github.com/pixelfed/pixelfed.git
55 lines
1.1 KiB
PHP
55 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\{
|
|
Follower,
|
|
Hashtag,
|
|
Profile,
|
|
Status,
|
|
UserFilter
|
|
};
|
|
use Auth, DB, Cache;
|
|
use Illuminate\Http\Request;
|
|
|
|
class DiscoverController extends Controller
|
|
{
|
|
public function __construct()
|
|
{
|
|
$this->middleware('auth');
|
|
}
|
|
|
|
public function home(Request $request)
|
|
{
|
|
return view('discover.home');
|
|
}
|
|
|
|
public function showTags(Request $request, $hashtag)
|
|
{
|
|
$this->validate($request, [
|
|
'page' => 'nullable|integer|min:1|max:10',
|
|
]);
|
|
|
|
$tag = Hashtag::with('posts')
|
|
->withCount('posts')
|
|
->whereSlug($hashtag)
|
|
->firstOrFail();
|
|
|
|
$posts = $tag->posts()
|
|
->whereNull('url')
|
|
->whereNull('uri')
|
|
->whereHas('media')
|
|
->withCount(['likes', 'comments'])
|
|
->whereIsNsfw(false)
|
|
->whereVisibility('public')
|
|
->orderBy('id', 'desc')
|
|
->simplePaginate(12);
|
|
|
|
if($posts->count() == 0) {
|
|
abort(404);
|
|
}
|
|
|
|
return view('discover.tags.show', compact('tag', 'posts'));
|
|
}
|
|
}
|