X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FWorker%2FAPDelivery.php;h=0c2c0ca9c487c59aa775418c0f102344adc58dd7;hb=bf8fb215a9cc554b5ec5b774168a52fb56fa43e6;hp=039cdfbb3b6acec830bd6270a378b5825115eb88;hpb=8dc1d19381d2974e2c99efff6a654aa8c24239ae;p=friendica.git diff --git a/src/Worker/APDelivery.php b/src/Worker/APDelivery.php index 039cdfbb3b..0c2c0ca9c4 100644 --- a/src/Worker/APDelivery.php +++ b/src/Worker/APDelivery.php @@ -1,40 +1,105 @@ . + * */ + namespace Friendica\Worker; -use Friendica\BaseObject; -use Friendica\Protocol\ActivityPub; +use Friendica\Core\Logger; +use Friendica\Core\Worker; +use Friendica\Model\Contact; use Friendica\Model\Item; +use Friendica\Model\Post; +use Friendica\Protocol\ActivityPub; use Friendica\Util\HTTPSignature; -class APDelivery extends BaseObject +class APDelivery { /** - * @brief Delivers ActivityPub messages + * Delivers ActivityPub messages * - * @param string $cmd - * @param integer $item_id - * @param string $inbox - * @param integer $uid + * @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 + * @throws \Friendica\Network\HTTPException\InternalServerErrorException + * @throws \ImagickException */ - public static function execute($cmd, $item_id, $inbox, $uid) + public static function execute(string $cmd, int $item_id, string $inbox, int $uid, array $receivers = []) { - logger('Invoked: ' . $cmd . ': ' . $item_id . ' to ' . $inbox, LOGGER_DEBUG); + if (ActivityPub\Transmitter::archivedInbox($inbox)) { + Logger::info('Inbox is archived', ['cmd' => $cmd, 'inbox' => $inbox, 'id' => $item_id, 'uid' => $uid]); + if (in_array($cmd, [Delivery::POST])) { + $item = Item::selectFirst(['uri-id'], ['id' => $item_id]); + Post\DeliveryData::incrementQueueFailed($item['uri-id'] ?? 0); + } + return; + } + + Logger::info('Invoked', ['cmd' => $cmd, 'inbox' => $inbox, 'id' => $item_id, 'uid' => $uid]); + + $success = true; if ($cmd == Delivery::MAIL) { + $data = ActivityPub\Transmitter::createActivityFromMail($item_id); + if (!empty($data)) { + $success = HTTPSignature::transmit($data, $inbox, $uid); + } } elseif ($cmd == Delivery::SUGGESTION) { + $success = ActivityPub\Transmitter::sendContactSuggestion($uid, $inbox, $item_id); } elseif ($cmd == Delivery::RELOCATION) { + // @todo Implementation pending + } elseif ($cmd == Delivery::POKE) { + // Implementation not planned } elseif ($cmd == Delivery::REMOVAL) { - ActivityPub\Transmitter::sendProfileDeletion($uid, $inbox); + $success = ActivityPub\Transmitter::sendProfileDeletion($uid, $inbox); } elseif ($cmd == Delivery::PROFILEUPDATE) { - ActivityPub\Transmitter::sendProfileUpdate($uid, $inbox); + $success = ActivityPub\Transmitter::sendProfileUpdate($uid, $inbox); } else { $data = ActivityPub\Transmitter::createCachedActivityFromItem($item_id); if (!empty($data)) { - HTTPSignature::transmit($data, $inbox, $uid); + $success = HTTPSignature::transmit($data, $inbox, $uid); } } + + // This should never fail and is temporariy (until the move to the "post" structure) + $item = Item::selectFirst(['uri-id'], ['id' => $item_id]); + $uriid = $item['uri-id'] ?? 0; + + foreach ($receivers as $receiver) { + $contact = Contact::getById($receiver); + if (empty($contact)) { + continue; + } + + if ($success) { + Contact::unmarkForArchival($contact); + } else { + Contact::markForArchival($contact); + } + } + + if (!$success && !Worker::defer() && in_array($cmd, [Delivery::POST])) { + Post\DeliveryData::incrementQueueFailed($uriid); + } elseif ($success && in_array($cmd, [Delivery::POST])) { + Post\DeliveryData::incrementQueueDone($uriid, Post\DeliveryData::ACTIVITYPUB); + } } }