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;
|
2022-05-14 13:09:59 +02:00
|
|
|
use Friendica\DI;
|
2020-12-12 17:45:23 +01:00
|
|
|
use Friendica\Model\Contact;
|
2021-01-09 20:18:22 +01:00
|
|
|
use Friendica\Model\GServer;
|
2020-05-02 21:34:02 +02:00
|
|
|
use Friendica\Model\Post;
|
2018-09-17 23:13:08 +02:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2018-09-20 20:16:14 +02:00
|
|
|
use Friendica\Util\HTTPSignature;
|
2018-09-17 23:13:08 +02:00
|
|
|
|
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-14 07:38:01 +02:00
|
|
|
$result = self::deliver($inbox);
|
2022-05-02 07:15:27 +02:00
|
|
|
$success = $result['success'];
|
|
|
|
$uri_ids = $result['uri_ids'];
|
2022-05-12 08:17:55 +02:00
|
|
|
} else {
|
2022-05-14 07:38:01 +02:00
|
|
|
$result = self::deliverToInbox($cmd, $item_id, $inbox, $uid, $receivers, $uri_id);
|
|
|
|
$success = $result['success'];
|
2022-05-12 08:17:55 +02:00
|
|
|
$uri_ids = [$uri_id];
|
2022-05-02 07:15:27 +02:00
|
|
|
}
|
|
|
|
|
2022-05-13 04:24:22 +02:00
|
|
|
if (!$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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-14 07:38:01 +02:00
|
|
|
private static function deliver(string $inbox):array
|
2022-05-02 07:15:27 +02:00
|
|
|
{
|
|
|
|
$uri_ids = [];
|
2022-05-12 08:17:55 +02:00
|
|
|
$posts = Post\Delivery::selectForInbox($inbox);
|
2022-05-14 07:38:01 +02:00
|
|
|
$timeout = false;
|
2022-05-02 07:15:27 +02:00
|
|
|
|
|
|
|
foreach ($posts as $post) {
|
2022-05-14 07:38:01 +02:00
|
|
|
if (!$timeout) {
|
|
|
|
$result = self::deliverToInbox($post['command'], 0, $inbox, $post['uid'], $post['receivers'], $post['uri-id']);
|
|
|
|
|
|
|
|
if ($result['timeout']) {
|
|
|
|
// In a timeout situation we assume that every delivery to that inbox will time out.
|
|
|
|
// So we set the flag and try all deliveries at a later time.
|
2022-05-14 13:18:48 +02:00
|
|
|
Logger::info('Inbox delivery has a time out', ['inbox' => $inbox]);
|
2022-05-14 07:38:01 +02:00
|
|
|
$timeout = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($timeout || !$result['success']) {
|
2022-05-12 08:17:55 +02:00
|
|
|
$uri_ids[] = $post['uri-id'];
|
2022-05-02 07:15:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-12 23:10:59 +02:00
|
|
|
Logger::debug('Inbox delivery done', ['inbox' => $inbox, 'posts' => count($posts), 'failed' => count($uri_ids)]);
|
2022-05-12 14:43:49 +02:00
|
|
|
return ['success' => empty($uri_ids), 'uri_ids' => $uri_ids];
|
2022-05-02 07:15:27 +02:00
|
|
|
}
|
|
|
|
|
2022-05-14 07:38:01 +02:00
|
|
|
private static function deliverToInbox(string $cmd, int $item_id, string $inbox, int $uid, array $receivers, int $uri_id): array
|
2022-05-02 07:15:27 +02:00
|
|
|
{
|
|
|
|
if (empty($item_id) && !empty($uri_id) && !empty($uid)) {
|
2022-05-12 23:10:59 +02:00
|
|
|
$item = Post::selectFirst(['id', 'parent', 'origin'], ['uri-id' => $uri_id, 'uid' => [$uid, 0]], ['order' => ['uid' => true]]);
|
2022-05-13 07:52:05 +02:00
|
|
|
if (empty($item['id'])) {
|
2022-05-14 13:18:48 +02:00
|
|
|
Logger::notice('Item not found, removing delivery', ['uri-id' => $uri_id, 'uid' => $uid, 'cmd' => $cmd, 'inbox' => $inbox]);
|
2022-05-12 23:10:59 +02:00
|
|
|
Post\Delivery::remove($uri_id, $inbox);
|
|
|
|
return true;
|
2022-05-13 07:52:05 +02:00
|
|
|
} else {
|
|
|
|
$item_id = $item['id'];
|
2022-05-02 07:15:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-23 05:54:18 +02:00
|
|
|
$success = true;
|
2022-05-14 07:38:01 +02:00
|
|
|
$timeout = false;
|
2018-10-23 05:54:18 +02:00
|
|
|
|
2018-09-17 23:13:08 +02:00
|
|
|
if ($cmd == Delivery::MAIL) {
|
2020-12-15 05:33:14 +01:00
|
|
|
$data = ActivityPub\Transmitter::createActivityFromMail($item_id);
|
2019-05-14 19:50:45 +02:00
|
|
|
if (!empty($data)) {
|
|
|
|
$success = HTTPSignature::transmit($data, $inbox, $uid);
|
|
|
|
}
|
2018-09-17 23:13:08 +02:00
|
|
|
} elseif ($cmd == Delivery::SUGGESTION) {
|
2020-12-15 05:33:14 +01:00
|
|
|
$success = ActivityPub\Transmitter::sendContactSuggestion($uid, $inbox, $item_id);
|
2018-09-17 23:13:08 +02:00
|
|
|
} elseif ($cmd == Delivery::RELOCATION) {
|
2019-06-06 19:58:49 +02:00
|
|
|
// @todo Implementation pending
|
2019-06-06 06:26:02 +02:00
|
|
|
} elseif ($cmd == Delivery::POKE) {
|
2019-06-06 19:58:49 +02:00
|
|
|
// Implementation not planned
|
2018-10-01 21:22:13 +02:00
|
|
|
} elseif ($cmd == Delivery::REMOVAL) {
|
2018-10-23 05:54:18 +02:00
|
|
|
$success = ActivityPub\Transmitter::sendProfileDeletion($uid, $inbox);
|
2018-10-01 07:44:56 +02:00
|
|
|
} elseif ($cmd == Delivery::PROFILEUPDATE) {
|
2018-10-23 05:54:18 +02:00
|
|
|
$success = ActivityPub\Transmitter::sendProfileUpdate($uid, $inbox);
|
2018-09-17 23:13:08 +02:00
|
|
|
} else {
|
2020-12-15 05:33:14 +01:00
|
|
|
$data = ActivityPub\Transmitter::createCachedActivityFromItem($item_id);
|
2018-09-26 15:00:48 +02:00
|
|
|
if (!empty($data)) {
|
2022-05-14 08:06:38 +02:00
|
|
|
$timestamp = microtime(true);
|
2022-05-14 13:18:48 +02:00
|
|
|
$response = HTTPSignature::post($data, $inbox, $uid);
|
|
|
|
$runtime = microtime(true) - $timestamp;
|
|
|
|
$success = $response->isSuccess();
|
|
|
|
$timeout = $response->isTimeout();
|
2022-05-14 07:38:01 +02:00
|
|
|
if (!$success) {
|
2022-05-14 13:18:48 +02:00
|
|
|
if ($response->getReturnCode() == 500) {
|
|
|
|
$xrd_timeout = DI::config()->get('system', 'xrd_timeout');
|
|
|
|
if (!$timeout && $xrd_timeout && ($runtime > $xrd_timeout)) {
|
|
|
|
$timeout = true;
|
|
|
|
}
|
|
|
|
$curl_timeout = DI::config()->get('system', 'curl_timeout');
|
|
|
|
if (!$timeout && $curl_timeout && ($runtime > $curl_timeout)) {
|
|
|
|
$timeout = true;
|
|
|
|
}
|
2022-05-14 13:09:59 +02:00
|
|
|
}
|
|
|
|
|
2022-05-14 13:18:48 +02:00
|
|
|
Logger::info('Delivery failed', ['retcode' => $response->getReturnCode(), 'timeout' => $timeout, 'runtime' => round($runtime, 3), 'uri-id' => $uri_id, 'uid' => $uid, 'item_id' => $item_id, 'cmd' => $cmd, 'inbox' => $inbox]);
|
2022-05-14 07:38:01 +02:00
|
|
|
}
|
2022-05-12 08:54:58 +02:00
|
|
|
if ($uri_id) {
|
|
|
|
if ($success) {
|
|
|
|
Post\Delivery::remove($uri_id, $inbox);
|
|
|
|
} else {
|
|
|
|
Post\Delivery::incrementFailed($uri_id, $inbox);
|
|
|
|
}
|
2022-05-02 07:15:27 +02:00
|
|
|
}
|
2018-12-07 06:52:14 +01:00
|
|
|
}
|
2018-09-17 23:13:08 +02:00
|
|
|
}
|
2018-10-23 05:54:18 +02:00
|
|
|
|
2022-05-02 07:15:27 +02:00
|
|
|
self::setSuccess($receivers, $success);
|
|
|
|
|
2022-05-14 13:18:48 +02:00
|
|
|
Logger::debug('Delivered', ['uri-id' => $uri_id, 'uid' => $uid, 'item_id' => $item_id, 'cmd' => $cmd, 'inbox' => $inbox, 'success' => $success]);
|
2022-05-02 07:15:27 +02:00
|
|
|
|
2022-05-12 08:17:55 +02:00
|
|
|
if ($success && in_array($cmd, [Delivery::POST])) {
|
|
|
|
Post\DeliveryData::incrementQueueDone($uri_id, Post\DeliveryData::ACTIVITYPUB);
|
|
|
|
}
|
|
|
|
|
2022-05-14 07:38:01 +02:00
|
|
|
return ['success' => $success, 'timeout' => $timeout];
|
2022-05-02 07:15:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private static function setSuccess(array $receivers, bool $success)
|
|
|
|
{
|
2021-01-09 20:18:22 +01:00
|
|
|
$gsid = null;
|
2020-05-02 21:34:02 +02:00
|
|
|
|
2020-12-12 17:45:23 +01:00
|
|
|
foreach ($receivers as $receiver) {
|
|
|
|
$contact = Contact::getById($receiver);
|
|
|
|
if (empty($contact)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2021-01-09 20:18:22 +01:00
|
|
|
$gsid = $gsid ?: $contact['gsid'];
|
|
|
|
|
2020-12-12 17:45:23 +01:00
|
|
|
if ($success) {
|
|
|
|
Contact::unmarkForArchival($contact);
|
|
|
|
} else {
|
|
|
|
Contact::markForArchival($contact);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-09 20:18:22 +01:00
|
|
|
if (!empty($gsid)) {
|
|
|
|
GServer::setProtocol($gsid, Post\DeliveryData::ACTIVITYPUB);
|
|
|
|
}
|
2018-09-17 23:13:08 +02:00
|
|
|
}
|
|
|
|
}
|