AP: Only reshare stuff that is AP content

This commit is contained in:
Michael 2019-01-20 21:52:43 +00:00
parent ad7b85e0ec
commit e5d694f7fa
1 changed files with 13 additions and 1 deletions

View File

@ -548,7 +548,18 @@ class Transmitter
*/
private static function getTypeOfItem($item)
{
if (!empty(Diaspora::isReshare($item['body'], false))) {
$reshared = false;
// Only check for a reshare, if it is a real reshare and no quoted reshare
if (strpos($item['body'], "[share") === 0) {
$announce = api_share_as_retweet($item);
if (!empty($announce['plink'])) {
$data = ActivityPub::fetchContent($announce['plink'], $item['uid']);
$reshared = !empty($data);
}
}
if ($reshared) {
$type = 'Announce';
} elseif ($item['verb'] == ACTIVITY_POST) {
if ($item['created'] == $item['edited']) {
@ -1018,6 +1029,7 @@ class Transmitter
return self::createNote($item);
}
/// @todo Better fetch the real object url.
return $announce['plink'];
}