2018-09-17 21:13:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Worker/APDelivery.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
|
|
|
use Friendica\BaseObject;
|
|
|
|
use Friendica\Protocol\ActivityPub;
|
|
|
|
use Friendica\Model\Item;
|
2018-09-20 18:16:14 +00:00
|
|
|
use Friendica\Util\HTTPSignature;
|
2018-09-17 21:13:08 +00:00
|
|
|
|
|
|
|
class APDelivery extends BaseObject
|
|
|
|
{
|
2018-09-22 14:12:54 +00:00
|
|
|
public static function execute($cmd, $item_id, $inbox, $uid)
|
2018-09-17 21:13:08 +00:00
|
|
|
{
|
|
|
|
logger('Invoked: ' . $cmd . ': ' . $item_id . ' to ' . $inbox, LOGGER_DEBUG);
|
|
|
|
|
|
|
|
if ($cmd == Delivery::MAIL) {
|
|
|
|
} elseif ($cmd == Delivery::SUGGESTION) {
|
|
|
|
} elseif ($cmd == Delivery::RELOCATION) {
|
2018-10-01 19:22:13 +00:00
|
|
|
} elseif ($cmd == Delivery::REMOVAL) {
|
2018-10-03 15:41:51 +00:00
|
|
|
ActivityPub\Transmitter::sendProfileDeletion($uid, $inbox);
|
2018-10-01 05:44:56 +00:00
|
|
|
} elseif ($cmd == Delivery::PROFILEUPDATE) {
|
2018-10-03 15:41:51 +00:00
|
|
|
ActivityPub\Transmitter::sendProfileUpdate($uid, $inbox);
|
2018-09-17 21:13:08 +00:00
|
|
|
} else {
|
2018-10-03 09:15:38 +00:00
|
|
|
$data = ActivityPub\Transmitter::createActivityFromItem($item_id);
|
2018-09-26 13:00:48 +00:00
|
|
|
if (!empty($data)) {
|
|
|
|
HTTPSignature::transmit($data, $inbox, $uid);
|
|
|
|
}
|
2018-09-17 21:13:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|