"View" activities are now ignored

This commit is contained in:
Michael 2022-11-17 20:01:32 +00:00
parent 5204d79dee
commit cdbfa34066
3 changed files with 7 additions and 6 deletions

View file

@ -559,6 +559,11 @@ class Receiver
return true; return true;
} }
if ($type == 'as:View') {
Logger::info('View activities are ignored.', ['signer' => $signer, 'http_signer' => $http_signer]);
return true;
}
if (!JsonLD::fetchElement($activity, 'as:object', '@id')) { if (!JsonLD::fetchElement($activity, 'as:object', '@id')) {
Logger::info('Empty object', ['activity' => $activity]); Logger::info('Empty object', ['activity' => $activity]);
return true; return true;

View file

@ -657,7 +657,7 @@ class Transmitter
$is_forum_thread = false; $is_forum_thread = false;
} }
if (self::isAnnounce($item) || DI::config()->get('debug', 'total_ap_delivery') || self::isAPPost($last_id)) { if (self::isAnnounce($item) || self::isAPPost($last_id)) {
// Will be activated in a later step // Will be activated in a later step
$networks = Protocol::FEDERATED; $networks = Protocol::FEDERATED;
} else { } else {
@ -902,7 +902,7 @@ class Transmitter
} }
} }
if (DI::config()->get('debug', 'total_ap_delivery') || $all_ap) { if ($all_ap) {
// Will be activated in a later step // Will be activated in a later step
$networks = Protocol::FEDERATED; $networks = Protocol::FEDERATED;
} else { } else {

View file

@ -720,10 +720,6 @@ return [
// Store untrusted content in the inbox entries // Store untrusted content in the inbox entries
'ap_inbox_store_untrusted' => false, 'ap_inbox_store_untrusted' => false,
// total_ap_delivery (Boolean)
// Deliver via AP to every possible receiver and we suppress the delivery to these contacts with other protocols
'total_ap_delivery' => false,
// ap_log_unknown (Boolean) // ap_log_unknown (Boolean)
// Logs every unknown ActivityPub activity // Logs every unknown ActivityPub activity
'ap_log_unknown' => false, 'ap_log_unknown' => false,