2017-11-19 17:59:37 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2023-01-01 15:36:24 +01:00
|
|
|
* @copyright Copyright (C) 2010-2023, the Friendica project
|
2020-02-09 16:18:46 +01: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 17:59:37 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-10-29 22:20:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
|
|
|
use Friendica\Core\Worker;
|
2019-12-15 22:34:11 +01:00
|
|
|
use Friendica\DI;
|
2022-12-30 22:20:28 +01:00
|
|
|
use Friendica\Protocol\Delivery;
|
2017-11-19 17:59:37 +01:00
|
|
|
use Friendica\Protocol\Diaspora;
|
2018-09-30 22:26:30 +02:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2017-11-19 17:59:37 +01:00
|
|
|
|
2020-02-09 16:18:46 +01:00
|
|
|
/**
|
|
|
|
* Send updated profile data to Diaspora and ActivityPub
|
|
|
|
*/
|
2017-11-19 17:59:37 +01:00
|
|
|
class ProfileUpdate {
|
2022-06-23 13:56:18 +02:00
|
|
|
/**
|
|
|
|
* Sends updated profile data to Diaspora and ActivityPub
|
|
|
|
*
|
|
|
|
* @param int $uid User id (optional, default: 0)
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public static function execute(int $uid = 0)
|
|
|
|
{
|
2017-11-19 17:59:37 +01:00
|
|
|
if (empty($uid)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-12-15 22:34:11 +01:00
|
|
|
$a = DI::app();
|
2018-10-01 07:44:56 +02:00
|
|
|
|
2018-10-03 11:15:38 +02:00
|
|
|
$inboxes = ActivityPub\Transmitter::fetchTargetInboxesforUser($uid);
|
2018-10-01 07:44:56 +02:00
|
|
|
|
2020-12-15 05:33:14 +01:00
|
|
|
foreach ($inboxes as $inbox => $receivers) {
|
2021-10-20 20:53:52 +02:00
|
|
|
Logger::info('Profile update for user ' . $uid . ' to ' . $inbox .' via ActivityPub');
|
2021-07-25 00:08:33 +02:00
|
|
|
Worker::add(['priority' => $a->getQueueValue('priority'), 'created' => $a->getQueueValue('created'), 'dont_fork' => true],
|
2022-06-23 13:56:18 +02:00
|
|
|
'APDelivery',
|
|
|
|
Delivery::PROFILEUPDATE,
|
|
|
|
0,
|
|
|
|
$inbox,
|
|
|
|
$uid,
|
|
|
|
$receivers
|
|
|
|
);
|
2018-10-01 07:44:56 +02:00
|
|
|
}
|
|
|
|
|
2017-11-23 20:01:58 +01:00
|
|
|
Diaspora::sendProfile($uid);
|
2017-11-19 17:59:37 +01:00
|
|
|
}
|
|
|
|
}
|