Merge pull request #8936 from annando/ap-probing
Selective probing for AP
This commit is contained in:
commit
aed879a086
|
@ -22,6 +22,7 @@
|
||||||
namespace Friendica\Model;
|
namespace Friendica\Model;
|
||||||
|
|
||||||
use Friendica\Core\Logger;
|
use Friendica\Core\Logger;
|
||||||
|
use Friendica\Core\Protocol;
|
||||||
use Friendica\Database\DBA;
|
use Friendica\Database\DBA;
|
||||||
use Friendica\DI;
|
use Friendica\DI;
|
||||||
use Friendica\Protocol\ActivityPub;
|
use Friendica\Protocol\ActivityPub;
|
||||||
|
@ -100,7 +101,13 @@ class ContactRelation
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (in_array($contact['network'], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::OSTATUS])) {
|
||||||
|
// The contact is (most likely) speaking AP, so updating is allowed
|
||||||
$apcontact = APContact::getByURL($url);
|
$apcontact = APContact::getByURL($url);
|
||||||
|
} else {
|
||||||
|
// The contact isn't obviously speaking AP, so we don't allow updating
|
||||||
|
$apcontact = APContact::getByURL($url, false);
|
||||||
|
}
|
||||||
|
|
||||||
if (!empty($apcontact['followers']) && is_string($apcontact['followers'])) {
|
if (!empty($apcontact['followers']) && is_string($apcontact['followers'])) {
|
||||||
$followers = ActivityPub::fetchItems($apcontact['followers']);
|
$followers = ActivityPub::fetchItems($apcontact['followers']);
|
||||||
|
|
Loading…
Reference in a new issue