2018-04-16 01:56:17 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
2018-05-31 22:05:39 +00:00
|
|
|
use Auth;
|
|
|
|
use App\{Follower, Status, User};
|
2018-04-16 01:56:17 +00:00
|
|
|
|
|
|
|
class TimelineController extends Controller
|
|
|
|
{
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$this->middleware('auth');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function personal()
|
|
|
|
{
|
2018-05-31 22:05:39 +00:00
|
|
|
// TODO: Use redis for timelines
|
|
|
|
$following = Follower::whereProfileId(Auth::user()->profile->id)->pluck('following_id');
|
2018-06-04 03:38:29 +00:00
|
|
|
$following->push(Auth::user()->profile->id);
|
2018-08-10 05:01:01 +00:00
|
|
|
$timeline = Status::whereIn('profile_id', $following)
|
2018-06-04 01:40:19 +00:00
|
|
|
->orderBy('id','desc')
|
2018-08-16 02:03:32 +00:00
|
|
|
->withCount(['comments', 'likes'])
|
2018-08-10 05:01:01 +00:00
|
|
|
->simplePaginate(20);
|
|
|
|
$type = 'personal';
|
|
|
|
return view('timeline.template', compact('timeline', 'type'));
|
2018-04-16 01:56:17 +00:00
|
|
|
}
|
2018-05-31 22:05:39 +00:00
|
|
|
|
|
|
|
public function local()
|
|
|
|
{
|
|
|
|
// TODO: Use redis for timelines
|
2018-08-10 05:01:01 +00:00
|
|
|
// $timeline = Timeline::build()->local();
|
2018-06-04 01:40:19 +00:00
|
|
|
$timeline = Status::whereHas('media')
|
|
|
|
->whereNull('in_reply_to_id')
|
2018-08-16 02:03:32 +00:00
|
|
|
->withCount(['comments', 'likes'])
|
2018-06-04 01:40:19 +00:00
|
|
|
->orderBy('id','desc')
|
2018-08-10 05:01:01 +00:00
|
|
|
->simplePaginate(20);
|
|
|
|
$type = 'local';
|
|
|
|
return view('timeline.template', compact('timeline', 'type'));
|
2018-05-31 22:05:39 +00:00
|
|
|
}
|
|
|
|
|
2018-04-16 01:56:17 +00:00
|
|
|
}
|