2017-11-19 11:59:37 -05:00
|
|
|
<?php
|
|
|
|
/**
|
2022-01-02 02:27:47 -05:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 10:18:46 -05:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2017-11-19 11:59:37 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-10-29 17:20:46 -04:00
|
|
|
use Friendica\Core\Logger;
|
|
|
|
use Friendica\Core\Worker;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2017-11-19 11:59:37 -05:00
|
|
|
use Friendica\Protocol\Diaspora;
|
2018-09-30 16:26:30 -04:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2017-11-19 11:59:37 -05:00
|
|
|
|
2020-02-09 10:18:46 -05:00
|
|
|
/**
|
|
|
|
* Send updated profile data to Diaspora and ActivityPub
|
|
|
|
*/
|
2017-11-19 11:59:37 -05:00
|
|
|
class ProfileUpdate {
|
|
|
|
public static function execute($uid = 0) {
|
|
|
|
if (empty($uid)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-12-15 16:34:11 -05:00
|
|
|
$a = DI::app();
|
2018-10-01 01:44:56 -04:00
|
|
|
|
2018-10-03 05:15:38 -04:00
|
|
|
$inboxes = ActivityPub\Transmitter::fetchTargetInboxesforUser($uid);
|
2018-10-01 01:44:56 -04:00
|
|
|
|
2020-12-14 23:33:14 -05:00
|
|
|
foreach ($inboxes as $inbox => $receivers) {
|
2021-10-20 14:53:52 -04:00
|
|
|
Logger::info('Profile update for user ' . $uid . ' to ' . $inbox .' via ActivityPub');
|
2021-07-24 18:08:33 -04:00
|
|
|
Worker::add(['priority' => $a->getQueueValue('priority'), 'created' => $a->getQueueValue('created'), 'dont_fork' => true],
|
2020-12-14 23:33:14 -05:00
|
|
|
'APDelivery', Delivery::PROFILEUPDATE, 0, $inbox, $uid, $receivers);
|
2018-10-01 01:44:56 -04:00
|
|
|
}
|
|
|
|
|
2017-11-23 14:01:58 -05:00
|
|
|
Diaspora::sendProfile($uid);
|
2017-11-19 11:59:37 -05:00
|
|
|
}
|
|
|
|
}
|