diff options
author | Mario <mario@mariovavti.com> | 2021-01-26 09:21:16 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-01-26 09:21:16 +0000 |
commit | 777af6e7ad6c6307567010cee262a0f1d8831083 (patch) | |
tree | 0c2dada74bea3bd0ac70d71a449bbb32f3706bc2 | |
parent | 4cf05891d7790716f273aaceb59db248d27b80cb (diff) | |
download | volse-hubzilla-777af6e7ad6c6307567010cee262a0f1d8831083.tar.gz volse-hubzilla-777af6e7ad6c6307567010cee262a0f1d8831083.tar.bz2 volse-hubzilla-777af6e7ad6c6307567010cee262a0f1d8831083.zip |
Libzot::fetch_conversation() fixes
-rw-r--r-- | Zotlabs/Lib/Libzot.php | 64 | ||||
-rw-r--r-- | Zotlabs/Lib/Zotfinger.php | 1 |
2 files changed, 28 insertions, 37 deletions
diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index 13a75bb6c..fd30f05f5 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -1250,8 +1250,6 @@ class Libzot { } } - - /// @FIXME - spoofable if ($AS->data['hubloc']) { $arr['item_verified'] = true; @@ -1274,7 +1272,6 @@ class Libzot { IConfig::Set($arr, 'activitystreams', 'signed_data', $AS->data['signed_data'], false); } - logger('Activity received: ' . print_r($arr, true), LOGGER_DATA, LOG_DEBUG); logger('Activity recipients: ' . print_r($deliveries, true), LOGGER_DATA, LOG_DEBUG); @@ -1867,43 +1864,61 @@ class Libzot { // Use Zotfinger to create a signed request + logger('fetching conversation: ' . $mid, LOGGER_DEBUG); + $a = Zotfinger::exec($mid, $channel); logger('received conversation: ' . print_r($a, true), LOGGER_DATA); + if (!$a) { + return false; + } + if ($a['data']['type'] !== 'OrderedCollection') { - return; + return false; } - if (!intval($a['data']['totalItems'])) { - return; + $obj = new ASCollection($a['data'], $channel); + $items = $obj->get(); + + if (!$items) { + return false; } $ret = []; + $signer = q("select hubloc_hash, hubloc_url from hubloc where hubloc_id_url = '%s' and hubloc_network = 'zot6' limit 1", dbesc($a['signature']['signer']) ); - foreach ($a['data']['orderedItems'] as $activity) { + foreach ($items as $activity) { $AS = new ActivityStreams($activity); + if ($AS->is_valid() && $AS->type === 'Announce' && is_array($AS->obj) + && array_key_exists('object', $AS->obj) && array_key_exists('actor', $AS->obj)) { + // This is a relayed/forwarded Activity (as opposed to a shared/boosted object) + // Reparse the encapsulated Activity and use that instead + logger('relayed activity', LOGGER_DEBUG); + $AS = new ActivityStreams($AS->obj); + } + if (!$AS->is_valid()) { logger('FOF Activity rejected: ' . print_r($activity, true)); continue; } $arr = Activity::decode_note($AS); - logger($AS->debug()); + // logger($AS->debug()); - $r = q("select hubloc_hash from hubloc where hubloc_id_url = '%s' and hubloc_network = 'zot6' limit 1", + $r = q("select hubloc_hash from hubloc where hubloc_id_url = '%s' limit 1", dbesc($AS->actor['id']) ); if (!$r) { $y = import_author_xchan(['url' => $AS->actor['id']]); if ($y) { - $r = q("select hubloc_hash from hubloc where hubloc_id_url = '%s' and hubloc_network = 'zot6' limit 1", + $r = q("select hubloc_hash from hubloc where hubloc_id_url = '%s' limit 1", dbesc($AS->actor['id']) ); } @@ -1926,39 +1941,17 @@ class Libzot { $arr['author_xchan'] = $r[0]['hubloc_hash']; } - $s = q("select hubloc_hash from hubloc where hubloc_id_url = '%s' and hubloc_network = 'zot6' limit 1", - dbesc($a['signature']['signer']) - ); - - if ($s) { - $arr['owner_xchan'] = $s[0]['hubloc_hash']; + if ($signer) { + $arr['owner_xchan'] = $signer[0]['hubloc_hash']; } else { $arr['owner_xchan'] = $a['signature']['signer']; } - - /// @FIXME - spoofable - if ($AS->data['hubloc']) { + if ($AS->data['hubloc'] || $arr['author_xchan'] === $arr['owner_xchan']) { $arr['item_verified'] = true; } - // set comment policy depending on source hub. Unknown or osada is ActivityPub. - // Anything else we'll say is zot - which could have a range of project names - - if ($signer) { - $s = q("select site_project from site where site_url = '%s' limit 1", - dbesc($signer[0]['hubloc_url']) - ); - if ((!$s) || (in_array($s[0]['site_project'], ['', 'osada']))) { - $arr['comment_policy'] = 'authenticated'; - } - else { - $arr['comment_policy'] = 'contacts'; - } - } - - if ($AS->data['signed_data']) { IConfig::Set($arr, 'activitystreams', 'signed_data', $AS->data['signed_data'], false); } @@ -1975,7 +1968,6 @@ class Libzot { return $ret; } - /** * @brief Remove community tag. * diff --git a/Zotlabs/Lib/Zotfinger.php b/Zotlabs/Lib/Zotfinger.php index e853d6ebc..faaf28f35 100644 --- a/Zotlabs/Lib/Zotfinger.php +++ b/Zotlabs/Lib/Zotfinger.php @@ -34,7 +34,6 @@ class Zotfinger { $result = []; - $redirects = 0; $x = z_post_url($resource,$data,$redirects, [ 'headers' => $h ] ); |