friendica/src/Worker/APDelivery.php

42 lines
1.1 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;
use Friendica\Protocol\ActivityPub;
use Friendica\Model\Item;
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 $item_id
* @param string $inbox
* @param integer $uid
*/
2018-09-22 16:12:54 +02:00
public static function execute($cmd, $item_id, $inbox, $uid)
2018-09-17 23:13:08 +02:00
{
logger('Invoked: ' . $cmd . ': ' . $item_id . ' to ' . $inbox, LOGGER_DEBUG);
if ($cmd == Delivery::MAIL) {
} elseif ($cmd == Delivery::SUGGESTION) {
2018-10-06 20:42:26 +02:00
ActivityPub\Transmitter::sendContactSuggestion($uid, $inbox, $item_id);
2018-09-17 23:13:08 +02:00
} elseif ($cmd == Delivery::RELOCATION) {
2018-10-01 21:22:13 +02:00
} elseif ($cmd == Delivery::REMOVAL) {
2018-10-03 17:41:51 +02:00
ActivityPub\Transmitter::sendProfileDeletion($uid, $inbox);
} elseif ($cmd == Delivery::PROFILEUPDATE) {
2018-10-03 17:41:51 +02:00
ActivityPub\Transmitter::sendProfileUpdate($uid, $inbox);
2018-09-17 23:13:08 +02:00
} else {
2018-10-05 23:00:40 +02:00
$data = ActivityPub\Transmitter::createCachedActivityFromItem($item_id);
if (!empty($data)) {
HTTPSignature::transmit($data, $inbox, $uid);
}
2018-09-17 23:13:08 +02:00
}
}
}