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;
|
2020-05-02 21:34:02 +02:00
|
|
|
use Friendica\Model\Item;
|
|
|
|
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
|
|
|
|
*
|
|
|
|
* @param string $cmd
|
|
|
|
* @param integer $target_id
|
|
|
|
* @param string|array $inboxes
|
|
|
|
* @param integer $uid
|
|
|
|
* @param array $receivers
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
|
|
|
*/
|
|
|
|
public static function execute(string $cmd, int $target_id, $inboxes, int $uid, array $receivers = [])
|
|
|
|
{
|
|
|
|
if (is_string($inboxes)) {
|
|
|
|
$inboxes = [$inboxes];
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($inboxes as $inbox) {
|
|
|
|
self::perform($cmd, $target_id, $inbox, $uid, $receivers);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-05 23:00:40 +02:00
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Delivers ActivityPub messages
|
2018-10-05 23:00:40 +02:00
|
|
|
*
|
2018-12-07 06:37:17 +01:00
|
|
|
* @param string $cmd
|
|
|
|
* @param integer $target_id
|
|
|
|
* @param string $inbox
|
2018-10-05 23:00:40 +02:00
|
|
|
* @param integer $uid
|
2020-12-12 17:45:23 +01:00
|
|
|
* @param array $receivers
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2018-10-05 23:00:40 +02:00
|
|
|
*/
|
2020-12-14 15:10:43 +01:00
|
|
|
private static function perform(string $cmd, int $target_id, string $inbox, int $uid, array $receivers = [])
|
2018-09-17 23:13:08 +02:00
|
|
|
{
|
2020-11-23 20:25:22 +01:00
|
|
|
if (ActivityPub\Transmitter::archivedInbox($inbox)) {
|
|
|
|
Logger::info('Inbox is archived', ['cmd' => $cmd, 'inbox' => $inbox, 'id' => $target_id, 'uid' => $uid]);
|
|
|
|
if (in_array($cmd, [Delivery::POST])) {
|
|
|
|
$item = Item::selectFirst(['uri-id'], ['id' => $target_id]);
|
|
|
|
Post\DeliveryData::incrementQueueFailed($item['uri-id'] ?? 0);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Logger::info('Invoked', ['cmd' => $cmd, 'inbox' => $inbox, 'id' => $target_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) {
|
2019-05-14 19:50:45 +02:00
|
|
|
$data = ActivityPub\Transmitter::createActivityFromMail($target_id);
|
|
|
|
if (!empty($data)) {
|
|
|
|
$success = HTTPSignature::transmit($data, $inbox, $uid);
|
|
|
|
}
|
2018-09-17 23:13:08 +02:00
|
|
|
} elseif ($cmd == Delivery::SUGGESTION) {
|
2018-12-07 06:37:17 +01:00
|
|
|
$success = ActivityPub\Transmitter::sendContactSuggestion($uid, $inbox, $target_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 {
|
2018-12-07 06:37:17 +01:00
|
|
|
$data = ActivityPub\Transmitter::createCachedActivityFromItem($target_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)
|
2020-05-02 21:34:02 +02:00
|
|
|
$item = Item::selectFirst(['uri-id'], ['id' => $target_id]);
|
2020-05-11 20:28:41 +02:00
|
|
|
$uriid = $item['uri-id'] ?? 0;
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($success) {
|
|
|
|
Contact::unmarkForArchival($contact);
|
|
|
|
} else {
|
|
|
|
Contact::markForArchival($contact);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-20 09:39:13 +02:00
|
|
|
if (!$success && !Worker::defer() && in_array($cmd, [Delivery::POST])) {
|
2020-05-11 20:28:41 +02:00
|
|
|
Post\DeliveryData::incrementQueueFailed($uriid);
|
2019-09-02 05:25:05 +02:00
|
|
|
} elseif ($success && in_array($cmd, [Delivery::POST])) {
|
2020-05-11 20:28:41 +02:00
|
|
|
Post\DeliveryData::incrementQueueDone($uriid, Post\DeliveryData::ACTIVITYPUB);
|
2018-10-23 05:54:18 +02:00
|
|
|
}
|
2018-09-17 23:13:08 +02:00
|
|
|
}
|
|
|
|
}
|