diff options
author | Mario <mario@mariovavti.com> | 2024-10-10 10:03:51 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-10-10 10:03:51 +0000 |
commit | 5f685bcf634519bf1f592bb13748f9e15d40df3a (patch) | |
tree | ccdacb803eee047c0bbd82421ce7067e361b67d6 /Zotlabs | |
parent | cb44f7e36082e319cd204c8c7b83d0375ba6c24c (diff) | |
download | volse-hubzilla-5f685bcf634519bf1f592bb13748f9e15d40df3a.tar.gz volse-hubzilla-5f685bcf634519bf1f592bb13748f9e15d40df3a.tar.bz2 volse-hubzilla-5f685bcf634519bf1f592bb13748f9e15d40df3a.zip |
also dismiss add/remove collection activities in fetch_conversation()
(cherry picked from commit 44232677c85249b5ae7e83aa0e040586acf2c7cc)
Co-authored-by: Mario <mario@mariovavti.com>
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/Libzot.php | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index a3431f420..05134f433 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -1157,7 +1157,6 @@ class Libzot { logger('unsupported collection operation', LOGGER_DEBUG); return; - } if (is_array($AS->obj)) { @@ -2019,7 +2018,13 @@ class Libzot { foreach ($items as $activity) { $AS = new ActivityStreams($activity); - if ($AS->is_valid() && $AS->type === 'Announce' && is_array($AS->obj) + + if (!$AS->is_valid()) { + logger('Fetched activity rejected: ' . print_r($activity, true)); + continue; + } + + if ($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 @@ -2027,9 +2032,14 @@ class Libzot { $AS = new ActivityStreams($AS->obj); } - if (!$AS->is_valid()) { - logger('Fetched activity rejected: ' . print_r($activity, true)); - continue; + if (in_array($AS->type, ['Add', 'Remove']) + && is_array($AS->obj) + && array_key_exists('object', $AS->obj) + && array_key_exists('actor', $AS->obj) + && !empty($AS->tgt)) { + + logger('unsupported collection operation', LOGGER_DEBUG); + return; } // logger($AS->debug()); |