12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace App\Http\Controllers;
- use Illuminate\Http\Request;
- use Auth;
- use App\{Follower, Status, User};
- class TimelineController extends Controller
- {
- public function __construct()
- {
- $this->middleware('auth');
- }
- public function personal()
- {
- // TODO: Use redis for timelines
- $following = Follower::whereProfileId(Auth::user()->profile->id)->pluck('following_id');
- $following->push(Auth::user()->profile->id);
- $timeline = Status::whereIn('profile_id', $following)
- ->orderBy('id','desc')
- ->simplePaginate(20);
- $type = 'personal';
- return view('timeline.template', compact('timeline', 'type'));
- }
- public function local()
- {
- // TODO: Use redis for timelines
- // $timeline = Timeline::build()->local();
- $timeline = Status::whereHas('media')
- ->whereNull('in_reply_to_id')
- ->orderBy('id','desc')
- ->simplePaginate(20);
- $type = 'local';
- return view('timeline.template', compact('timeline', 'type'));
- }
- }
|