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