friendica/src/Worker/APDelivery.php

29 lines
643 B
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-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) {
} elseif ($cmd == Delivery::RELOCATION) {
} else {
$data = ActivityPub::createActivityFromItem($item_id);
2018-09-22 16:12:54 +02:00
HTTPSignature::transmit($data, $inbox, $uid);
2018-09-17 23:13:08 +02:00
}
return;
}
}