pixelfed/app/Http/Controllers/SiteController.php

74 wiersze
2.0 KiB
PHP
Czysty Zwykły widok Historia

2018-06-01 03:12:06 +00:00
<?php
namespace App\Http\Controllers;
2018-08-28 03:07:36 +00:00
use App;
use App\Follower;
use App\Profile;
use App\Status;
use App\User;
2018-08-10 03:18:56 +00:00
use App\Util\Lexer\PrettyNumber;
2018-08-28 03:07:36 +00:00
use Auth;
use Cache;
use Illuminate\Http\Request;
2018-06-01 03:12:06 +00:00
class SiteController extends Controller
{
2018-07-12 16:37:31 +00:00
public function home()
{
2018-08-28 03:07:36 +00:00
if (Auth::check()) {
return $this->homeTimeline();
2018-07-12 16:37:31 +00:00
} else {
2018-08-28 03:07:36 +00:00
return $this->homeGuest();
2018-07-12 16:37:31 +00:00
}
}
public function homeGuest()
{
2018-08-20 01:22:54 +00:00
return view('site.index');
2018-07-12 16:37:31 +00:00
}
public function homeTimeline()
{
2018-08-28 03:07:36 +00:00
// 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)
2018-08-10 03:18:56 +00:00
->whereHas('media')
2018-08-28 03:07:36 +00:00
->orderBy('id', 'desc')
2018-07-12 16:37:31 +00:00
->withCount(['comments', 'likes', 'shares'])
2018-08-10 03:18:56 +00:00
->simplePaginate(20);
2018-08-28 03:07:36 +00:00
$type = 'personal';
return view('timeline.template', compact('timeline', 'type'));
2018-07-12 16:37:31 +00:00
}
2018-06-05 07:49:05 +00:00
public function changeLocale(Request $request, $locale)
{
2018-08-28 03:07:36 +00:00
if (!App::isLocale($locale)) {
return redirect()->back();
2018-06-05 07:49:05 +00:00
}
App::setLocale($locale);
2018-08-28 03:07:36 +00:00
2018-06-05 07:49:05 +00:00
return redirect()->back();
}
2018-08-10 03:18:56 +00:00
public function about()
{
2018-08-28 03:07:36 +00:00
$res = Cache::remember('site:page:about', 15, function () {
$statuses = Status::whereHas('media')
2018-08-10 03:18:56 +00:00
->whereNull('in_reply_to_id')
->whereNull('reblog_of_id')
->count();
2018-08-28 03:07:36 +00:00
$statusCount = PrettyNumber::convert($statuses);
$userCount = PrettyNumber::convert(User::count());
$remoteCount = PrettyNumber::convert(Profile::whereNotNull('remote_url')->count());
$adminContact = User::whereIsAdmin(true)->first();
return view('site.about')->with(compact('statusCount', 'userCount', 'remoteCount', 'adminContact'))->render();
2018-08-10 03:18:56 +00:00
});
2018-08-28 03:07:36 +00:00
2018-08-10 03:18:56 +00:00
return $res;
}
2018-06-01 03:12:06 +00:00
}