friendica/src/Worker/APDelivery.php

82 lines
2.7 KiB
PHP
Raw Normal View History

2018-09-17 23:13:08 +02:00
<?php
/**
* @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
*/
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;
use Friendica\Model\Item;
use Friendica\Model\Post;
2018-09-17 23:13:08 +02:00
use Friendica\Protocol\ActivityPub;
use Friendica\Util\HTTPSignature;
2018-09-17 23:13:08 +02:00
class APDelivery
2018-09-17 23:13:08 +02:00
{
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
*
* @param string $cmd
* @param integer $target_id
* @param string $inbox
2018-10-05 23:00:40 +02:00
* @param integer $uid
2019-01-06 22:06:53 +01:00
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
* @throws \ImagickException
2018-10-05 23:00:40 +02:00
*/
public static function execute($cmd, $target_id, $inbox, $uid)
2018-09-17 23:13:08 +02:00
{
Logger::log('Invoked: ' . $cmd . ': ' . $target_id . ' to ' . $inbox, Logger::DEBUG);
2018-09-17 23:13:08 +02:00
$success = true;
2018-09-17 23:13:08 +02:00
if ($cmd == Delivery::MAIL) {
$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) {
$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
} 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) {
$success = ActivityPub\Transmitter::sendProfileDeletion($uid, $inbox);
} elseif ($cmd == Delivery::PROFILEUPDATE) {
$success = ActivityPub\Transmitter::sendProfileUpdate($uid, $inbox);
2018-09-17 23:13:08 +02:00
} else {
$data = ActivityPub\Transmitter::createCachedActivityFromItem($target_id);
if (!empty($data)) {
$success = HTTPSignature::transmit($data, $inbox, $uid);
}
2018-09-17 23:13:08 +02:00
}
// This should never fail and is temporariy (until the move to the "post" structure)
$item = Item::selectFirst(['uri-id'], ['id' => $target_id]);
$uriid = $item['uri-id'] ?? 0;
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);
}
2018-09-17 23:13:08 +02:00
}
}