Update CommentPipeline, improve parent reply_count calculation - mysql only for now

pull/3233/head
Daniel Supernault 2022-02-12 20:58:35 -07:00
rodzic 618870add9
commit ccc94802ec
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 7 dodań i 4 usunięć

Wyświetl plik

@ -59,10 +59,13 @@ class CommentPipeline implements ShouldQueue
$target = $status->profile;
$actor = $comment->profile;
DB::transaction(function() use($status) {
$status->reply_count = DB::table('statuses')->whereInReplyToId($status->id)->count();
$status->save();
});
if(config('database.default') === 'mysql') {
DB::transaction(function() use($status) {
$count = DB::select( 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)"), [ 'kid' => $status->id]);
$status->reply_count = count($count);
$status->save();
});
}
if ($actor->id === $target->id || $status->comments_disabled == true) {
return true;