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;
|
|
|
|
|
|
|
|
use Friendica\Protocol\Diaspora;
|
2018-09-30 16:26:30 -04:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2017-11-19 11:59:37 -05:00
|
|
|
|
|
|
|
class ProfileUpdate {
|
|
|
|
public static function execute($uid = 0) {
|
|
|
|
if (empty($uid)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-09-30 16:26:30 -04:00
|
|
|
ActivityPub::transmitProfileUpdate($uid);
|
2017-11-23 14:01:58 -05:00
|
|
|
Diaspora::sendProfile($uid);
|
2017-11-19 11:59:37 -05:00
|
|
|
}
|
|
|
|
}
|