mirror of
https://github.com/friendica/friendica
synced 2025-04-26 13:50:11 +00:00
Merge pull request #7284 from annando/fix-fatal
Don't send activities to "null" endpoints
This commit is contained in:
commit
f0849b0a93
2 changed files with 31 additions and 5 deletions
|
@ -1474,6 +1474,10 @@ class Transmitter
|
|||
public static function sendActivity($activity, $target, $uid, $id = '')
|
||||
{
|
||||
$profile = APContact::getByURL($target);
|
||||
if (empty($profile['inbox'])) {
|
||||
Logger::warning('No inbox found for target', ['target' => $target, 'profile' => $profile]);
|
||||
return;
|
||||
}
|
||||
|
||||
$owner = User::getOwnerDataById($uid);
|
||||
|
||||
|
@ -1510,6 +1514,10 @@ class Transmitter
|
|||
public static function sendFollowObject($object, $target, $uid = 0)
|
||||
{
|
||||
$profile = APContact::getByURL($target);
|
||||
if (empty($profile['inbox'])) {
|
||||
Logger::warning('No inbox found for target', ['target' => $target, 'profile' => $profile]);
|
||||
return;
|
||||
}
|
||||
|
||||
if (empty($uid)) {
|
||||
// Fetch the list of administrators
|
||||
|
@ -1556,6 +1564,10 @@ class Transmitter
|
|||
public static function sendContactAccept($target, $id, $uid)
|
||||
{
|
||||
$profile = APContact::getByURL($target);
|
||||
if (empty($profile['inbox'])) {
|
||||
Logger::warning('No inbox found for target', ['target' => $target, 'profile' => $profile]);
|
||||
return;
|
||||
}
|
||||
|
||||
$owner = User::getOwnerDataById($uid);
|
||||
$data = ['@context' => ActivityPub::CONTEXT,
|
||||
|
@ -1589,6 +1601,10 @@ class Transmitter
|
|||
public static function sendContactReject($target, $id, $uid)
|
||||
{
|
||||
$profile = APContact::getByURL($target);
|
||||
if (empty($profile['inbox'])) {
|
||||
Logger::warning('No inbox found for target', ['target' => $target, 'profile' => $profile]);
|
||||
return;
|
||||
}
|
||||
|
||||
$owner = User::getOwnerDataById($uid);
|
||||
$data = ['@context' => ActivityPub::CONTEXT,
|
||||
|
@ -1622,6 +1638,10 @@ class Transmitter
|
|||
public static function sendContactUndo($target, $cid, $uid)
|
||||
{
|
||||
$profile = APContact::getByURL($target);
|
||||
if (empty($profile['inbox'])) {
|
||||
Logger::warning('No inbox found for target', ['target' => $target, 'profile' => $profile]);
|
||||
return;
|
||||
}
|
||||
|
||||
$object_id = self::activityIDFromContact($cid);
|
||||
if (empty($object_id)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue