2017-11-19 17:59:37 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Worker/ProfileUpdate.php
|
2018-09-30 22:26:30 +02:00
|
|
|
* @brief Send updated profile data to Diaspora and ActivityPub
|
2017-11-19 17:59:37 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-10-01 07:44:56 +02:00
|
|
|
use Friendica\BaseObject;
|
2017-11-19 17:59:37 +01:00
|
|
|
use Friendica\Protocol\Diaspora;
|
2018-09-30 22:26:30 +02:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2018-10-01 07:44:56 +02:00
|
|
|
use Friendica\Core\Worker;
|
2017-11-19 17:59:37 +01:00
|
|
|
|
|
|
|
class ProfileUpdate {
|
|
|
|
public static function execute($uid = 0) {
|
|
|
|
if (empty($uid)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-01 07:44:56 +02:00
|
|
|
$a = BaseObject::getApp();
|
|
|
|
|
2018-10-03 11:15:38 +02:00
|
|
|
$inboxes = ActivityPub\Transmitter::fetchTargetInboxesforUser($uid);
|
2018-10-01 07:44:56 +02:00
|
|
|
|
|
|
|
foreach ($inboxes as $inbox) {
|
|
|
|
logger('Profile update for user ' . $uid . ' to ' . $inbox .' via ActivityPub', LOGGER_DEBUG);
|
|
|
|
Worker::add(['priority' => $a->queue['priority'], 'created' => $a->queue['created'], 'dont_fork' => true],
|
|
|
|
'APDelivery', Delivery::PROFILEUPDATE, '', $inbox, $uid);
|
|
|
|
}
|
|
|
|
|
2017-11-23 20:01:58 +01:00
|
|
|
Diaspora::sendProfile($uid);
|
2017-11-19 17:59:37 +01:00
|
|
|
}
|
|
|
|
}
|