forked from mirror/pixelfed
59 lines
1.4 KiB
PHP
59 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use App\{Hashtag, Follower, Profile, Status, StatusHashtag};
|
|
use Auth;
|
|
|
|
class DiscoverController extends Controller
|
|
{
|
|
public function __construct()
|
|
{
|
|
$this->middleware('auth');
|
|
}
|
|
|
|
public function home()
|
|
{
|
|
$pid = Auth::user()->profile->id;
|
|
|
|
$following = Follower::whereProfileId($pid)
|
|
->pluck('following_id');
|
|
|
|
$people = Profile::inRandomOrder()
|
|
->where('id', '!=', $pid)
|
|
->whereNotIn('id', $following)
|
|
->take(3)
|
|
->get();
|
|
|
|
$posts = Status::whereHas('media')
|
|
->where('profile_id', '!=', $pid)
|
|
->whereNotIn('profile_id', $following)
|
|
->orderBy('created_at', 'desc')
|
|
->simplePaginate(21);
|
|
|
|
return view('discover.home', compact('people', 'posts'));
|
|
}
|
|
|
|
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()
|
|
->whereIsNsfw(false)
|
|
->whereVisibility('public')
|
|
->has('media')
|
|
->orderBy('id','desc')
|
|
->simplePaginate(12);
|
|
|
|
return view('discover.tags.show', compact('tag', 'posts'));
|
|
}
|
|
}
|