Fix delivery data increment in APDelivery
[friendica.git/.git] / src / Worker / APDelivery.php
1 <?php
2 /**
3  * @file src/Worker/APDelivery.php
4  */
5 namespace Friendica\Worker;
6
7 use Friendica\BaseObject;
8 use Friendica\Core\Logger;
9 use Friendica\Core\Worker;
10 use Friendica\Model\ItemDeliveryData;
11 use Friendica\Protocol\ActivityPub;
12 use Friendica\Util\HTTPSignature;
13
14 class APDelivery extends BaseObject
15 {
16         /**
17          * @brief Delivers ActivityPub messages
18          *
19          * @param string  $cmd
20          * @param integer $target_id
21          * @param string  $inbox
22          * @param integer $uid
23          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
24          * @throws \ImagickException
25          */
26         public static function execute($cmd, $target_id, $inbox, $uid)
27         {
28                 Logger::log('Invoked: ' . $cmd . ': ' . $target_id . ' to ' . $inbox, Logger::DEBUG);
29
30                 $success = true;
31
32                 if ($cmd == Delivery::MAIL) {
33                 } elseif ($cmd == Delivery::SUGGESTION) {
34                         $success = ActivityPub\Transmitter::sendContactSuggestion($uid, $inbox, $target_id);
35                 } elseif ($cmd == Delivery::RELOCATION) {
36                 } elseif ($cmd == Delivery::REMOVAL) {
37                         $success = ActivityPub\Transmitter::sendProfileDeletion($uid, $inbox);
38                 } elseif ($cmd == Delivery::PROFILEUPDATE) {
39                         $success = ActivityPub\Transmitter::sendProfileUpdate($uid, $inbox);
40                 } else {
41                         $data = ActivityPub\Transmitter::createCachedActivityFromItem($target_id);
42                         if (!empty($data)) {
43                                 $success = HTTPSignature::transmit($data, $inbox, $uid);
44                                 if ($success && in_array($cmd, [Delivery::POST, Delivery::COMMENT])) {
45                                         ItemDeliveryData::incrementQueueDone($target_id);
46                                 }
47                         }
48                 }
49
50                 if (!$success) {
51                         Worker::defer();
52                 }
53         }
54 }