123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <?php
- namespace App\Http\Controllers;
- use Illuminate\Http\Request;
- use Carbon\Carbon;
- use App\Mail\ConfirmEmail;
- use Auth, DB, Cache, Mail, Redis;
- use App\{EmailVerification, Notification, Profile, User};
- class AccountController extends Controller
- {
- public function __construct()
- {
- $this->middleware('auth');
- }
- public function notifications(Request $request)
- {
- $this->validate($request, [
- 'page' => 'nullable|min:1|max:3',
- 'a' => 'nullable|alpha_dash',
- ]);
- $profile = Auth::user()->profile;
- $action = $request->input('a');
- $timeago = Carbon::now()->subMonths(6);
- if($action && in_array($action, ['comment', 'follow', 'mention'])) {
- $notifications = Notification::whereProfileId($profile->id)
- ->whereAction($action)
- ->whereDate('created_at', '>', $timeago)
- ->orderBy('id','desc')
- ->simplePaginate(30);
- } else {
- $notifications = Notification::whereProfileId($profile->id)
- ->whereDate('created_at', '>', $timeago)
- ->orderBy('id','desc')
- ->simplePaginate(30);
- }
- return view('account.activity', compact('profile', 'notifications'));
- }
- public function followingActivity(Request $request)
- {
- $this->validate($request, [
- 'page' => 'nullable|min:1|max:3',
- 'a' => 'nullable|alpha_dash',
- ]);
- $profile = Auth::user()->profile;
- $action = $request->input('a');
- $timeago = Carbon::now()->subMonths(1);
- $following = $profile->following->pluck('id');
- $notifications = Notification::whereIn('actor_id', $following)
- ->where('profile_id', '!=', $profile->id)
- ->whereDate('created_at', '>', $timeago)
- ->orderBy('notifications.id','desc')
- ->simplePaginate(30);
- return view('account.following', compact('profile', 'notifications'));
- }
- public function verifyEmail(Request $request)
- {
- return view('account.verify_email');
- }
- public function sendVerifyEmail(Request $request)
- {
- $timeLimit = Carbon::now()->subDays(1)->toDateTimeString();
- $recentAttempt = EmailVerification::whereUserId(Auth::id())
- ->where('created_at', '>', $timeLimit)->count();
- $exists = EmailVerification::whereUserId(Auth::id())->count();
- if($recentAttempt == 1 && $exists == 1) {
- return redirect()->back()->with('error', 'A verification email has already been sent recently. Please check your email, or try again later.');
- } elseif ($recentAttempt == 0 && $exists !== 0) {
- // Delete old verification and send new one.
- EmailVerification::whereUserId(Auth::id())->delete();
- }
- $user = User::whereNull('email_verified_at')->find(Auth::id());
- $utoken = hash('sha512', $user->id);
- $rtoken = str_random(40);
- $verify = new EmailVerification;
- $verify->user_id = $user->id;
- $verify->email = $user->email;
- $verify->user_token = $utoken;
- $verify->random_token = $rtoken;
- $verify->save();
- Mail::to($user->email)->send(new ConfirmEmail($verify));
- return redirect()->back()->with('status', 'Email verification email sent!');
- }
- public function confirmVerifyEmail(Request $request, $userToken, $randomToken)
- {
- $verify = EmailVerification::where('user_token', $userToken)
- ->where('random_token', $randomToken)
- ->firstOrFail();
- if(Auth::id() === $verify->user_id) {
- $user = User::find(Auth::id());
- $user->email_verified_at = Carbon::now();
- $user->save();
- return redirect('/');
- }
- }
- 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;
- }
- }
|