2018-09-17 21:13:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2020-02-09 15:18:46 +00: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 21:13:08 +00:00
|
|
|
*/
|
2020-02-09 15:18:46 +00:00
|
|
|
|
2018-09-17 21:13:08 +00:00
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-10-29 21:20:46 +00:00
|
|
|
use Friendica\Core\Logger;
|
|
|
|
use Friendica\Core\Worker;
|
2020-12-12 16:45:23 +00:00
|
|
|
use Friendica\Model\Contact;
|
2020-05-02 19:34:02 +00:00
|
|
|
use Friendica\Model\Item;
|
|
|
|
use Friendica\Model\Post;
|
2018-09-17 21:13:08 +00:00
|
|
|
use Friendica\Protocol\ActivityPub;
|
2018-09-20 18:16:14 +00:00
|
|
|
use Friendica\Util\HTTPSignature;
|
2018-09-17 21:13:08 +00:00
|
|
|
|
2019-12-15 22:28:01 +00:00
|
|
|
class APDelivery
|
2018-09-17 21:13:08 +00:00
|
|
|
{
|
2018-10-05 21:00:40 +00:00
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Delivers ActivityPub messages
|
2018-10-05 21:00:40 +00:00
|
|
|
*
|
2018-12-07 05:37:17 +00:00
|
|
|
* @param string $cmd
|
|
|
|
* @param integer $target_id
|
|
|
|
* @param string $inbox
|
2018-10-05 21:00:40 +00:00
|
|
|
* @param integer $uid
|
2020-12-12 16:45:23 +00:00
|
|
|
* @param array $receivers
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2018-10-05 21:00:40 +00:00
|
|
|
*/
|
2020-12-12 16:45:23 +00:00
|
|
|
public static function execute($cmd, $target_id, $inbox, $uid, $receivers = [])
|
2018-09-17 21:13:08 +00:00
|
|
|
{
|
2020-11-23 19:25:22 +00: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 21:13:08 +00:00
|
|
|
|
2018-10-23 03:54:18 +00:00
|
|
|
$success = true;
|
|
|
|
|
2018-09-17 21:13:08 +00:00
|
|
|
if ($cmd == Delivery::MAIL) {
|
2019-05-14 17:50:45 +00:00
|
|
|
$data = ActivityPub\Transmitter::createActivityFromMail($target_id);
|
|
|
|
if (!empty($data)) {
|
|
|
|
$success = HTTPSignature::transmit($data, $inbox, $uid);
|
|
|
|
}
|
2018-09-17 21:13:08 +00:00
|
|
|
} elseif ($cmd == Delivery::SUGGESTION) {
|
2018-12-07 05:37:17 +00:00
|
|
|
$success = ActivityPub\Transmitter::sendContactSuggestion($uid, $inbox, $target_id);
|
2018-09-17 21:13:08 +00:00
|
|
|
} elseif ($cmd == Delivery::RELOCATION) {
|
2019-06-06 17:58:49 +00:00
|
|
|
// @todo Implementation pending
|
2019-06-06 04:26:02 +00:00
|
|
|
} elseif ($cmd == Delivery::POKE) {
|
2019-06-06 17:58:49 +00:00
|
|
|
// Implementation not planned
|
2018-10-01 19:22:13 +00:00
|
|
|
} elseif ($cmd == Delivery::REMOVAL) {
|
2018-10-23 03:54:18 +00:00
|
|
|
$success = ActivityPub\Transmitter::sendProfileDeletion($uid, $inbox);
|
2018-10-01 05:44:56 +00:00
|
|
|
} elseif ($cmd == Delivery::PROFILEUPDATE) {
|
2018-10-23 03:54:18 +00:00
|
|
|
$success = ActivityPub\Transmitter::sendProfileUpdate($uid, $inbox);
|
2018-09-17 21:13:08 +00:00
|
|
|
} else {
|
2018-12-07 05:37:17 +00:00
|
|
|
$data = ActivityPub\Transmitter::createCachedActivityFromItem($target_id);
|
2018-09-26 13:00:48 +00:00
|
|
|
if (!empty($data)) {
|
2018-10-23 03:54:18 +00:00
|
|
|
$success = HTTPSignature::transmit($data, $inbox, $uid);
|
2018-12-07 05:52:14 +00:00
|
|
|
}
|
2018-09-17 21:13:08 +00:00
|
|
|
}
|
2018-10-23 03:54:18 +00:00
|
|
|
|
2020-05-11 18:28:41 +00:00
|
|
|
// This should never fail and is temporariy (until the move to the "post" structure)
|
2020-05-02 19:34:02 +00:00
|
|
|
$item = Item::selectFirst(['uri-id'], ['id' => $target_id]);
|
2020-05-11 18:28:41 +00:00
|
|
|
$uriid = $item['uri-id'] ?? 0;
|
2020-05-02 19:34:02 +00:00
|
|
|
|
2020-12-12 16:45:23 +00: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 07:39:13 +00:00
|
|
|
if (!$success && !Worker::defer() && in_array($cmd, [Delivery::POST])) {
|
2020-05-11 18:28:41 +00:00
|
|
|
Post\DeliveryData::incrementQueueFailed($uriid);
|
2019-09-02 03:25:05 +00:00
|
|
|
} elseif ($success && in_array($cmd, [Delivery::POST])) {
|
2020-05-11 18:28:41 +00:00
|
|
|
Post\DeliveryData::incrementQueueDone($uriid, Post\DeliveryData::ACTIVITYPUB);
|
2018-10-23 03:54:18 +00:00
|
|
|
}
|
2018-09-17 21:13:08 +00:00
|
|
|
}
|
|
|
|
}
|