Merge pull request #13237 from annando/group-circle

Added group detection for via exclusive mentions
This commit is contained in:
Tobias Diekershoff 2023-06-27 06:19:21 +02:00 committed by GitHub
commit 23992c31c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

View File

@ -442,6 +442,7 @@ class Processor
$item['isGroup'] = true;
$item['group-link'] = $item['owner-link'] = $audience;
$item['owner-id'] = Contact::getIdForURL($audience);
break;
}
}
} else {
@ -902,6 +903,19 @@ class Processor
$item['raw-body'] = $item['body'] = $content;
}
if (!empty($item['author-id']) && ($item['author-id'] == $item['owner-id'])) {
foreach (Tag::getFromBody($item['body'], Tag::TAG_CHARACTER[Tag::EXCLUSIVE_MENTION]) as $tag) {
$actor = APContact::getByURL($tag[2], false);
if (($actor['type'] ?? 'Person') == 'Group') {
Logger::debug('Group post detected via exclusive mention.', ['mention' => $actor['url'], 'actor' => $activity['actor'], 'author' => $activity['author']]);
$item['isGroup'] = true;
$item['group-link'] = $item['owner-link'] = $actor['url'];
$item['owner-id'] = Contact::getIdForURL($actor['url']);
break;
}
}
}
self::storeFromBody($item);
self::storeTags($item['uri-id'], $activity['tags']);