2017-11-19 16:59:37 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Worker/ProfileUpdate.php
|
2018-09-30 20:26:30 +00:00
|
|
|
* @brief Send updated profile data to Diaspora and ActivityPub
|
2017-11-19 16:59:37 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
|
|
|
use Friendica\Protocol\Diaspora;
|
2018-09-30 20:26:30 +00:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2017-11-19 16:59:37 +00:00
|
|
|
|
|
|
|
class ProfileUpdate {
|
|
|
|
public static function execute($uid = 0) {
|
|
|
|
if (empty($uid)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-09-30 20:26:30 +00:00
|
|
|
ActivityPub::transmitProfileUpdate($uid);
|
2017-11-23 19:01:58 +00:00
|
|
|
Diaspora::sendProfile($uid);
|
2017-11-19 16:59:37 +00:00
|
|
|
}
|
|
|
|
}
|