forked from mirror/pixelfed
48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Auth, Cache, Redis;
|
|
use App\{Notification, Profile, User};
|
|
|
|
class AccountController extends Controller
|
|
{
|
|
public function __construct()
|
|
{
|
|
$this->middleware('auth');
|
|
}
|
|
|
|
public function notifications(Request $request)
|
|
{
|
|
$profile = Auth::user()->profile;
|
|
$notifications = $this->fetchNotifications($profile->id);
|
|
return view('account.activity', compact('profile', 'notifications'));
|
|
}
|
|
|
|
public function fetchNotifications($id)
|
|
{
|
|
$key = config('cache.prefix') . ":user.{$id}.notifications";
|
|
$redis = Redis::connection();
|
|
$notifications = $redis->lrange($key, 0, 30);
|
|
if(empty($notifications)) {
|
|
$notifications = Notification::whereProfileId($id)
|
|
->orderBy('id','desc')->take(30)->get();
|
|
} else {
|
|
$notifications = $this->hydrateNotifications($notifications);
|
|
}
|
|
|
|
return $notifications;
|
|
}
|
|
|
|
public function hydrateNotifications($keys)
|
|
{
|
|
$prefix = 'notification.';
|
|
$notifications = collect([]);
|
|
foreach($keys as $key) {
|
|
$notifications->push(Cache::get("{$prefix}{$key}"));
|
|
}
|
|
return $notifications;
|
|
}
|
|
}
|