2018-09-17 23:13:08 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2020-02-09 16:18:46 +01:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @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-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)) {
|
2020-12-15 05:33:14 +01:00
|
|
|
Logger::info('Inbox is archived', ['cmd' => $cmd, 'inbox' => $inbox, 'id' => $item_id, 'uid' => $uid]);
|
2020-11-23 20:25:22 +01:00
|
|
|
if (in_array($cmd, [Delivery::POST])) {
|
2021-01-16 05:14:58 +01:00
|
|
|
$item = Post::selectFirst(['uri-id'], ['id' => $item_id]);
|
2020-11-23 20:25:22 +01:00
|
|
|
Post\DeliveryData::incrementQueueFailed($item['uri-id'] ?? 0);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-02-14 15:24:48 +01:00
|
|
|
if (empty($uri_id) && !empty($item_id)) {
|
|
|
|
$item = Post::selectFirst(['uri-id'], ['id' => $item_id]);
|
|
|
|
if (!empty($item['uri-id'])) {
|
|
|
|
$uri_id = $item['uri-id'];
|
|
|
|
}
|
|
|
|
} elseif (!empty($uri_id) && !empty($item_id)) {
|
|
|
|
$item = Post::selectFirst(['id'], ['uri-id' => $uri_id, 'uid' => $uid]);
|
|
|
|
if (!empty($item['uri-id'])) {
|
|
|
|
$item_id = $item['id'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Logger::info('Invoked', ['cmd' => $cmd, 'inbox' => $inbox, 'id' => $item_id, 'uri-id' => $uri_id, 'uid' => $uid]);
|
2018-09-17 23:13:08 +02:00
|
|
|
|
2018-10-23 05:54:18 +02:00
|
|
|
$success = true;
|
|
|
|
|
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)) {
|
2018-10-23 05:54:18 +02:00
|
|
|
$success = HTTPSignature::transmit($data, $inbox, $uid);
|
2018-12-07 06:52:14 +01:00
|
|
|
}
|
2018-09-17 23:13:08 +02:00
|
|
|
}
|
2018-10-23 05:54:18 +02:00
|
|
|
|
2020-05-11 20:28:41 +02:00
|
|
|
// This should never fail and is temporariy (until the move to the "post" structure)
|
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);
|
|
|
|
}
|
|
|
|
|
2019-08-20 09:39:13 +02:00
|
|
|
if (!$success && !Worker::defer() && in_array($cmd, [Delivery::POST])) {
|
2021-02-14 15:24:48 +01:00
|
|
|
Post\DeliveryData::incrementQueueFailed($uri_id);
|
2019-09-02 05:25:05 +02:00
|
|
|
} elseif ($success && in_array($cmd, [Delivery::POST])) {
|
2021-02-14 15:24:48 +01:00
|
|
|
Post\DeliveryData::incrementQueueDone($uri_id, Post\DeliveryData::ACTIVITYPUB);
|
2018-10-23 05:54:18 +02:00
|
|
|
}
|
2018-09-17 23:13:08 +02:00
|
|
|
}
|
|
|
|
}
|