diff options
author | Mario <mario@mariovavti.com> | 2024-12-10 10:27:48 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-12-10 10:27:48 +0000 |
commit | 93f72a53f518f4c6fd9ebd29536e0d44da366baf (patch) | |
tree | 2957fefbc03dd5839254a733bbeb92cd7fbb0895 /include | |
parent | 93c4bd46921409ea208b8c5de931adc1ea3bd4f4 (diff) | |
download | volse-hubzilla-93f72a53f518f4c6fd9ebd29536e0d44da366baf.tar.gz volse-hubzilla-93f72a53f518f4c6fd9ebd29536e0d44da366baf.tar.bz2 volse-hubzilla-93f72a53f518f4c6fd9ebd29536e0d44da366baf.zip |
introduce item_forwardable() and check it before we call the notifier to possibly safe some processes - test will follow, also add some other possibly blocking flags to the add item
Diffstat (limited to 'include')
-rw-r--r-- | include/items.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php index 037846e02..84e1e9aee 100644 --- a/include/items.php +++ b/include/items.php @@ -258,6 +258,25 @@ function item_normal() { return $sql; } +function item_forwardable($item) { + if (intval($item['item_unpublished']) || + intval($item['item_delayed']) || + intval($item['item_blocked']) || + intval($item['item_hidden']) || + intval($item['item_restrict']) || // this might change in the future + // internal follow/unfollow thread + in_array($item['verb'], ['Follow', 'Ignore', ACTIVITY_FOLLOW, ACTIVITY_UNFOLLOW]) || + str_contains($item['postopts'], 'nodeliver') || + // actor not fetchable + (isset($item['author']['xchan_network']) && in_array($item['author']['xchan_network'], ['rss', 'anon', 'token'])) + + ) { + return false; + } + + return true; +} + function item_normal_search() { return " and item.item_hidden = 0 and item.item_type in (0,3,6,7) and item.item_deleted = 0 and item.item_unpublished = 0 and item.item_delayed = 0 and item.item_pending_remove = 0 |