Preparation for being able to fetch AP posts by proving the URL

This commit is contained in:
Michael 2019-07-17 19:36:32 +00:00
parent 0c56e75b89
commit a80a6bec74
1 changed files with 27 additions and 4 deletions

View File

@ -522,13 +522,17 @@ class Processor
* @param $child * @param $child
* @throws \Friendica\Network\HTTPException\InternalServerErrorException * @throws \Friendica\Network\HTTPException\InternalServerErrorException
*/ */
private static function fetchMissingActivity($url, $child) public static function fetchMissingActivity($url, $child = [])
{ {
if (Config::get('system', 'ostatus_full_threads')) { if (Config::get('system', 'ostatus_full_threads')) {
return; return;
} }
$uid = ActivityPub\Receiver::getFirstUserFromReceivers($child['receiver']); if (!empty($child['receiver'])) {
$uid = ActivityPub\Receiver::getFirstUserFromReceivers($child['receiver']);
} else {
$uid = 0;
}
$object = ActivityPub::fetchContent($url, $uid); $object = ActivityPub::fetchContent($url, $uid);
if (empty($object)) { if (empty($object)) {
@ -541,15 +545,34 @@ class Processor
return; return;
} }
if (!empty($child['author'])) {
$actor = $child['author'];
} elseif (!empty($object['actor'])) {
$actor = $object['actor'];
} elseif (!empty($object['attributedTo'])) {
$actor = $object['attributedTo'];
} else {
// Shouldn't happen
$actor = '';
}
if (!empty($object['published'])) {
$published = $object['published'];
} elseif (!empty($child['published'])) {
$published = $child['published'];
} else {
$published = DateTimeFormat::utcNow();
}
$activity = []; $activity = [];
$activity['@context'] = $object['@context']; $activity['@context'] = $object['@context'];
unset($object['@context']); unset($object['@context']);
$activity['id'] = $object['id']; $activity['id'] = $object['id'];
$activity['to'] = defaults($object, 'to', []); $activity['to'] = defaults($object, 'to', []);
$activity['cc'] = defaults($object, 'cc', []); $activity['cc'] = defaults($object, 'cc', []);
$activity['actor'] = $child['author']; $activity['actor'] = $actor;
$activity['object'] = $object; $activity['object'] = $object;
$activity['published'] = defaults($object, 'published', $child['published']); $activity['published'] = $published;
$activity['type'] = 'Create'; $activity['type'] = 'Create';
$ldactivity = JsonLD::compact($activity); $ldactivity = JsonLD::compact($activity);