mirror of
https://github.com/friendica/friendica
synced 2024-11-11 06:22:54 +00:00
Fix enduring follow requests to Pleroma
This commit is contained in:
parent
7a9aba7674
commit
3c1380fdcc
1 changed files with 9 additions and 4 deletions
|
@ -656,14 +656,19 @@ class Receiver
|
||||||
*/
|
*/
|
||||||
public static function switchContact($cid, $uid, $url)
|
public static function switchContact($cid, $uid, $url)
|
||||||
{
|
{
|
||||||
Contact::updateFromProbe($cid, '', true);
|
if (DBA::exists('contact', ['id' => $cid, 'network' => Protocol::ACTIVITYPUB])) {
|
||||||
|
Logger::info('Contact is already ActivityPub', ['id' => $cid, 'uid' => $uid, 'url' => $url]);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
Logger::log('Switch contact ' . $cid . ' (' . $url . ') for user ' . $uid . ' to ActivityPub');
|
if (Contact::updateFromProbe($cid, '', true)) {
|
||||||
|
Logger::info('Update was successful', ['id' => $cid, 'uid' => $uid, 'url' => $url]);
|
||||||
|
}
|
||||||
|
|
||||||
// Send a new follow request to be sure that the connection still exists
|
// Send a new follow request to be sure that the connection still exists
|
||||||
if (($uid != 0) && DBA::exists('contact', ['id' => $cid, 'rel' => [Contact::SHARING, Contact::FRIEND]])) {
|
if (($uid != 0) && DBA::exists('contact', ['id' => $cid, 'rel' => [Contact::SHARING, Contact::FRIEND], 'network' => Protocol::ACTIVITYPUB])) {
|
||||||
|
Logger::info('Contact had been switched to ActivityPub. Sending a new follow request.', ['uid' => $uid, 'url' => $url]);
|
||||||
ActivityPub\Transmitter::sendActivity('Follow', $url, $uid);
|
ActivityPub\Transmitter::sendActivity('Follow', $url, $uid);
|
||||||
Logger::log('Send a new follow request to ' . $url . ' for user ' . $uid, Logger::DEBUG);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue