2017-11-19 11:59:37 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Worker/ProfileUpdate.php
|
2018-09-30 16:26:30 -04:00
|
|
|
* @brief Send updated profile data to Diaspora and ActivityPub
|
2017-11-19 11:59:37 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-10-01 01:44:56 -04:00
|
|
|
use Friendica\BaseObject;
|
2017-11-19 11:59:37 -05:00
|
|
|
use Friendica\Protocol\Diaspora;
|
2018-09-30 16:26:30 -04:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2018-10-01 01:44:56 -04:00
|
|
|
use Friendica\Core\Worker;
|
2017-11-19 11:59:37 -05:00
|
|
|
|
|
|
|
class ProfileUpdate {
|
|
|
|
public static function execute($uid = 0) {
|
|
|
|
if (empty($uid)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-01 01:44:56 -04:00
|
|
|
$a = BaseObject::getApp();
|
|
|
|
|
2018-10-03 05:15:38 -04:00
|
|
|
$inboxes = ActivityPub\Transmitter::fetchTargetInboxesforUser($uid);
|
2018-10-01 01:44:56 -04: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 14:01:58 -05:00
|
|
|
Diaspora::sendProfile($uid);
|
2017-11-19 11:59:37 -05:00
|
|
|
}
|
|
|
|
}
|