New delivery module for ap

This commit is contained in:
Michael 2018-09-17 21:13:08 +00:00
parent 91d1b4de5d
commit f772ece86f
7 changed files with 183 additions and 89 deletions

28
src/Worker/APDelivery.php Normal file
View file

@ -0,0 +1,28 @@
<?php
/**
* @file src/Worker/APDelivery.php
*/
namespace Friendica\Worker;
use Friendica\BaseObject;
use Friendica\Protocol\ActivityPub;
use Friendica\Model\Item;
class APDelivery extends BaseObject
{
public static function execute($cmd, $item_id, $inbox)
{
logger('Invoked: ' . $cmd . ': ' . $item_id . ' to ' . $inbox, LOGGER_DEBUG);
if ($cmd == Delivery::MAIL) {
} elseif ($cmd == Delivery::SUGGESTION) {
} elseif ($cmd == Delivery::RELOCATION) {
} else {
$item = Item::selectFirst(['uid'], ['id' => $item_id]);
$data = ActivityPub::createActivityFromItem($item_id);
ActivityPub::transmit($data, $inbox, $item['uid']);
}
return;
}
}