29 lines
668 B
PHP
29 lines
668 B
PHP
<?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;
|
|
}
|
|
}
|