2018-09-17 23:13:08 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2022-01-02 08:27:47 +01:00
|
|
|
* @copyright Copyright (C) 2010-2022, 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/>.
|
|
|
|
*
|
2018-09-17 23:13:08 +02:00
|
|
|
*/
|
2020-02-09 16:18:46 +01:00
|
|
|
|
2018-09-17 23:13:08 +02:00
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-10-29 22:20:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
|
|
|
use Friendica\Core\Worker;
|
2020-05-02 21:34:02 +02:00
|
|
|
use Friendica\Model\Post;
|
2018-09-17 23:13:08 +02:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2019-12-15 23:28:01 +01:00
|
|
|
class APDelivery
|
2018-09-17 23:13:08 +02:00
|
|
|
{
|
2020-12-14 15:10:43 +01:00
|
|
|
/**
|
|
|
|
* Delivers ActivityPub messages
|
|
|
|
*
|
2020-12-15 05:33:14 +01:00
|
|
|
* @param string $cmd One of the Worker\Delivery constant values
|
|
|
|
* @param integer $item_id 0 if no item is involved (like Delivery::REMOVAL and Delivery::PROFILEUPDATE)
|
|
|
|
* @param string $inbox The URL of the recipient profile
|
|
|
|
* @param integer $uid The ID of the user who triggered this delivery
|
|
|
|
* @param array $receivers The contact IDs related to the inbox URL for contact archival housekeeping
|
2021-02-14 15:24:48 +01:00
|
|
|
* @param int $uri_id URI-ID of item to be transmitted
|
2020-12-14 15:10:43 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
|
|
|
*/
|
2021-02-14 15:24:48 +01:00
|
|
|
public static function execute(string $cmd, int $item_id, string $inbox, int $uid, array $receivers = [], int $uri_id = 0)
|
2018-09-17 23:13:08 +02:00
|
|
|
{
|
2020-11-23 20:25:22 +01:00
|
|
|
if (ActivityPub\Transmitter::archivedInbox($inbox)) {
|
2022-05-13 04:11:02 +02:00
|
|
|
Logger::info('Inbox is archived', ['cmd' => $cmd, 'inbox' => $inbox, 'id' => $item_id, 'uri-id' => $uri_id, 'uid' => $uid]);
|
2022-05-13 04:24:22 +02:00
|
|
|
if (empty($uri_id) && !empty($item_id)) {
|
|
|
|
$item = Post::selectFirst(['uri-id'], ['id' => $item_id]);
|
|
|
|
$uri_id = $item['uri-id'] ?? 0;
|
|
|
|
}
|
|
|
|
if (empty($uri_id)) {
|
|
|
|
$posts = Post\Delivery::selectForInbox($inbox);
|
|
|
|
$uri_ids = array_column($posts, 'uri-id');
|
|
|
|
} else {
|
|
|
|
$uri_ids = [$uri_id];
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($uri_ids as $uri_id) {
|
|
|
|
Post\Delivery::remove($uri_id, $inbox);
|
|
|
|
Post\DeliveryData::incrementQueueFailed($uri_id);
|
2020-11-23 20:25:22 +01:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-05-14 13:18:48 +02:00
|
|
|
Logger::debug('Invoked', ['cmd' => $cmd, 'inbox' => $inbox, 'id' => $item_id, 'uri-id' => $uri_id, 'uid' => $uid]);
|
2018-09-17 23:13:08 +02:00
|
|
|
|
2022-05-02 07:15:27 +02:00
|
|
|
if (empty($uri_id)) {
|
2022-05-19 21:24:21 +02:00
|
|
|
$result = ActivityPub\Delivery::deliver($inbox);
|
2022-05-02 07:15:27 +02:00
|
|
|
$success = $result['success'];
|
2022-05-24 14:32:04 +02:00
|
|
|
$drop = false;
|
2022-05-02 07:15:27 +02:00
|
|
|
$uri_ids = $result['uri_ids'];
|
2022-05-12 08:17:55 +02:00
|
|
|
} else {
|
2022-05-19 21:24:21 +02:00
|
|
|
$result = ActivityPub\Delivery::deliverToInbox($cmd, $item_id, $inbox, $uid, $receivers, $uri_id);
|
2022-05-14 07:38:01 +02:00
|
|
|
$success = $result['success'];
|
2022-05-24 14:32:04 +02:00
|
|
|
$drop = $result['drop'];
|
2022-05-12 08:17:55 +02:00
|
|
|
$uri_ids = [$uri_id];
|
2022-05-02 07:15:27 +02:00
|
|
|
}
|
|
|
|
|
2022-05-24 14:32:04 +02:00
|
|
|
if (!$drop && !$success && !Worker::defer() && !empty($uri_ids)) {
|
2022-05-12 08:17:55 +02:00
|
|
|
foreach ($uri_ids as $uri_id) {
|
2022-05-02 07:15:27 +02:00
|
|
|
Post\Delivery::remove($uri_id, $inbox);
|
|
|
|
Post\DeliveryData::incrementQueueFailed($uri_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-09-17 23:13:08 +02:00
|
|
|
}
|