]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/APDelivery.php
Forums now are working with AP as well
[friendica.git] / src / Worker / APDelivery.php
index b7e881c7a334b907e0f90d38fe4e317e0a64c652..2048b97d02259261d5dc71eabdafd9fc115c7035 100644 (file)
@@ -5,24 +5,50 @@
 namespace Friendica\Worker;
 
 use Friendica\BaseObject;
+use Friendica\Core\Logger;
+use Friendica\Core\Worker;
+use Friendica\Model\ItemDeliveryData;
 use Friendica\Protocol\ActivityPub;
-use Friendica\Model\Item;
+use Friendica\Util\HTTPSignature;
 
 class APDelivery extends BaseObject
 {
-       public static function execute($cmd, $item_id, $inbox)
+       /**
+        * @brief Delivers ActivityPub messages
+        *
+        * @param string  $cmd
+        * @param integer $target_id
+        * @param string  $inbox
+        * @param integer $uid
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        * @throws \ImagickException
+        */
+       public static function execute($cmd, $target_id, $inbox, $uid)
        {
-               logger('Invoked: ' . $cmd . ': ' . $item_id . ' to ' . $inbox, LOGGER_DEBUG);
+               Logger::log('Invoked: ' . $cmd . ': ' . $target_id . ' to ' . $inbox, Logger::DEBUG);
+
+               $success = true;
 
                if ($cmd == Delivery::MAIL) {
                } elseif ($cmd == Delivery::SUGGESTION) {
+                       $success = ActivityPub\Transmitter::sendContactSuggestion($uid, $inbox, $target_id);
                } elseif ($cmd == Delivery::RELOCATION) {
+               } elseif ($cmd == Delivery::REMOVAL) {
+                       $success = ActivityPub\Transmitter::sendProfileDeletion($uid, $inbox);
+               } elseif ($cmd == Delivery::PROFILEUPDATE) {
+                       $success = ActivityPub\Transmitter::sendProfileUpdate($uid, $inbox);
                } else {
-                       $item = Item::selectFirst(['uid'], ['id' => $item_id]);
-                       $data = ActivityPub::createActivityFromItem($item_id);
-                       ActivityPub::transmit($data, $inbox, $item['uid']);
+                       $data = ActivityPub\Transmitter::createCachedActivityFromItem($target_id);
+                       if (!empty($data)) {
+                               $success = HTTPSignature::transmit($data, $inbox, $uid);
+                               if ($success && in_array($cmd, [Delivery::POST, Delivery::COMMENT])) {
+                                       ItemDeliveryData::incrementQueueDone($target_id);
+                               }
+                       }
                }
 
-               return;
+               if (!$success) {
+                       Worker::defer();
+               }
        }
 }