friendica/src/Worker/APDelivery.php

62 lines
1.8 KiB
PHP
Raw Normal View History

2018-09-17 23:13:08 +02:00
<?php
/**
* @file src/Worker/APDelivery.php
*/
namespace Friendica\Worker;
use Friendica\BaseObject;
2018-10-29 22:20:46 +01:00
use Friendica\Core\Logger;
use Friendica\Core\Worker;
use Friendica\Model\ItemDeliveryData;
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 extends BaseObject
{
2018-10-05 23:00:40 +02:00
/**
* @brief Delivers ActivityPub messages
*
* @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);
if ($success && in_array($cmd, [Delivery::POST])) {
ItemDeliveryData::incrementQueueDone($target_id);
}
}
2018-09-17 23:13:08 +02:00
}
if (!$success) {
Worker::defer();
}
2018-09-17 23:13:08 +02:00
}
}