2018-06-01 03:12:06 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
2018-07-12 16:37:31 +00:00
|
|
|
use App, Auth;
|
2018-06-01 03:12:06 +00:00
|
|
|
use Illuminate\Http\Request;
|
2018-07-12 16:37:31 +00:00
|
|
|
use App\{Follower, Status, User};
|
2018-06-01 03:12:06 +00:00
|
|
|
|
|
|
|
class SiteController extends Controller
|
|
|
|
{
|
2018-07-12 16:37:31 +00:00
|
|
|
|
|
|
|
public function home()
|
|
|
|
{
|
|
|
|
if(Auth::check()) {
|
|
|
|
return $this->homeTimeline();
|
|
|
|
} else {
|
|
|
|
return $this->homeGuest();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function homeGuest()
|
|
|
|
{
|
|
|
|
return view('site.index');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function homeTimeline()
|
|
|
|
{
|
|
|
|
// 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')
|
|
|
|
->withCount(['comments', 'likes', 'shares'])
|
|
|
|
->simplePaginate(10);
|
|
|
|
return view('timeline.template', compact('timeline'));
|
|
|
|
}
|
|
|
|
|
2018-06-05 07:49:05 +00:00
|
|
|
public function changeLocale(Request $request, $locale)
|
|
|
|
{
|
|
|
|
if(!App::isLocale($locale)) {
|
|
|
|
return redirect()->back();
|
|
|
|
}
|
|
|
|
App::setLocale($locale);
|
|
|
|
return redirect()->back();
|
|
|
|
}
|
2018-06-01 03:12:06 +00:00
|
|
|
}
|