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