Procházet zdrojové kódy

Update StatusReplyPipeline, fix comment counts

Daniel Supernault před 2 roky
rodič
revize
049ce7370c

+ 0 - 8
app/Jobs/CommentPipeline/CommentPipeline.php

@@ -60,14 +60,6 @@ class CommentPipeline implements ShouldQueue
         $actor = $comment->profile;
         $actor = $comment->profile;
 
 
         if(config('database.default') === 'mysql') {
         if(config('database.default') === 'mysql') {
-            $count = DB::select(DB::raw("select id, in_reply_to_id from statuses, (select @pv := :kid) initialisation where deleted_at IS NULL and reblog_of_id IS NULL and id > @pv and find_in_set(in_reply_to_id, @pv) > 0 and @pv := concat(@pv, ',', id)"), [ 'kid' => $status->id]);
-            $status->reply_count = count($count);
-            $status->save();
-
-            $count = DB::select(DB::raw("select id, in_reply_to_id from statuses, (select @pv := :kid) initialisation where deleted_at IS NULL and reblog_of_id IS NULL and id > @pv and find_in_set(in_reply_to_id, @pv) > 0 and @pv := concat(@pv, ',', id)"), [ 'kid' => $comment->id]);
-            $comment->reply_count = count($count);
-            $comment->save();
-        } else {
             $status->reply_count = $status->reply_count + 1;
             $status->reply_count = $status->reply_count + 1;
             $status->save();
             $status->save();
         }
         }

+ 0 - 8
app/Jobs/StatusPipeline/StatusReplyPipeline.php

@@ -70,14 +70,6 @@ class StatusReplyPipeline implements ShouldQueue
         }
         }
 
 
         if(config('database.default') === 'mysql') {
         if(config('database.default') === 'mysql') {
-            $count = DB::select( DB::raw("select id, in_reply_to_id from statuses, (select @pv := :kid) initialisation where deleted_at IS NULL and reblog_of_id IS NULL and id > @pv and find_in_set(in_reply_to_id, @pv) > 0 and @pv := concat(@pv, ',', id)"), [ 'kid' => $reply->id]);
-            $reply->reply_count = count($count);
-            $reply->save();
-
-            $count = DB::select( DB::raw("select id, in_reply_to_id from statuses, (select @pv := :kid) initialisation where deleted_at IS NULL and reblog_of_id IS NULL and id > @pv and find_in_set(in_reply_to_id, @pv) > 0 and @pv := concat(@pv, ',', id)"), [ 'kid' => $status->id]);
-            $status->reply_count = count($count);
-            $status->save();
-        } else {
             $reply->reply_count = $reply->reply_count + 1;
             $reply->reply_count = $reply->reply_count + 1;
             $reply->save();
             $reply->save();
         }
         }