Update Inbox, improve story attribute collection

pull/4804/head
Daniel Supernault 2023-12-08 03:24:09 -07:00
rodzic d1c297d1ad
commit 06bee36c52
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 23740873EE6F76A1
1 zmienionych plików z 22 dodań i 2 usunięć

Wyświetl plik

@ -713,8 +713,10 @@ class Inbox
if(!$status) {
return;
}
if($status->scope && $status->scope != 'direct') {
FeedRemoveRemotePipeline::dispatch($status->id, $status->profile_id)->onQueue('feed');
if($status->scope && in_array($status->scope, ['public', 'unlisted', 'private'])) {
if($status->type && !in_array($status->type, ['story:reaction', 'story:reply', 'reply'])) {
FeedRemoveRemotePipeline::dispatch($status->id, $status->profile_id)->onQueue('feed');
}
}
RemoteStatusDelete::dispatch($status)->onQueue('high');
return;
@ -985,9 +987,18 @@ class Inbox
return;
}
$url = $id;
if(str_ends_with($url, '/activity')) {
$url = substr($url, 0, -9);
}
$status = new Status;
$status->profile_id = $actorProfile->id;
$status->type = 'story:reaction';
$status->url = $url;
$status->uri = $url;
$status->object_url = $url;
$status->caption = $text;
$status->rendered = $text;
$status->scope = 'direct';
@ -1094,11 +1105,20 @@ class Inbox
return;
}
$url = $id;
if(str_ends_with($url, '/activity')) {
$url = substr($url, 0, -9);
}
$status = new Status;
$status->profile_id = $actorProfile->id;
$status->type = 'story:reply';
$status->caption = $text;
$status->rendered = $text;
$status->url = $url;
$status->uri = $url;
$status->object_url = $url;
$status->scope = 'direct';
$status->visibility = 'direct';
$status->in_reply_to_profile_id = $story->profile_id;