status = $status; $this->comment = $comment; } /** * Execute the job. * * @return void */ public function handle() { $status = $this->status; $comment = $this->comment; $target = $status->profile; $actor = $comment->profile; if(config('database.default') === 'mysql') { $exp = DB::raw("select id, in_reply_to_id from statuses, (select @pv := :kid) initialisation where id > @pv and find_in_set(in_reply_to_id, @pv) > 0 and @pv := concat(@pv, ',', id)"); $expQuery = $exp->getValue(DB::connection()->getQueryGrammar()); $count = DB::select($expQuery, [ 'kid' => $status->id ]); $status->reply_count = count($count); $status->save(); } else { $status->reply_count = $status->reply_count + 1; $status->save(); } StatusService::del($comment->id); StatusService::del($status->id); Cache::forget('status:replies:all:' . $comment->id); Cache::forget('status:replies:all:' . $status->id); if ($actor->id === $target->id || $status->comments_disabled == true) { return true; } $filtered = UserFilter::whereUserId($target->id) ->whereFilterableType('App\Profile') ->whereIn('filter_type', ['mute', 'block']) ->whereFilterableId($actor->id) ->exists(); if($filtered == true) { return; } DB::transaction(function() use($target, $actor, $comment) { $notification = new Notification(); $notification->profile_id = $target->id; $notification->actor_id = $actor->id; $notification->action = 'comment'; $notification->message = $comment->replyToText(); $notification->rendered = $comment->replyToHtml(); $notification->item_id = $comment->id; $notification->item_type = "App\Status"; $notification->save(); NotificationService::setNotification($notification); NotificationService::set($notification->profile_id, $notification->id); StatusService::del($comment->id); }); if($exists = Cache::get('status:replies:all:' . $status->id)) { if($exists && $exists->count() == 3) { } else { Cache::forget('status:replies:all:' . $status->id); } } else { Cache::forget('status:replies:all:' . $status->id); } } }