]> git.mxchange.org Git - friendica.git/blob - src/Worker/APDelivery.php
"item-delivery-data" is now "post-delivery-data"
[friendica.git] / src / Worker / APDelivery.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Worker;
23
24 use Friendica\Core\Logger;
25 use Friendica\Core\Worker;
26 use Friendica\Model\Item;
27 use Friendica\Model\Post;
28 use Friendica\Protocol\ActivityPub;
29 use Friendica\Util\HTTPSignature;
30
31 class APDelivery
32 {
33         /**
34          * Delivers ActivityPub messages
35          *
36          * @param string  $cmd
37          * @param integer $target_id
38          * @param string  $inbox
39          * @param integer $uid
40          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
41          * @throws \ImagickException
42          */
43         public static function execute($cmd, $target_id, $inbox, $uid)
44         {
45                 Logger::log('Invoked: ' . $cmd . ': ' . $target_id . ' to ' . $inbox, Logger::DEBUG);
46
47                 $success = true;
48
49                 if ($cmd == Delivery::MAIL) {
50                         $data = ActivityPub\Transmitter::createActivityFromMail($target_id);
51                         if (!empty($data)) {
52                                 $success = HTTPSignature::transmit($data, $inbox, $uid);
53                         }
54                 } elseif ($cmd == Delivery::SUGGESTION) {
55                         $success = ActivityPub\Transmitter::sendContactSuggestion($uid, $inbox, $target_id);
56                 } elseif ($cmd == Delivery::RELOCATION) {
57                         // @todo Implementation pending
58                 } elseif ($cmd == Delivery::POKE) {
59                         // Implementation not planned
60                 } elseif ($cmd == Delivery::REMOVAL) {
61                         $success = ActivityPub\Transmitter::sendProfileDeletion($uid, $inbox);
62                 } elseif ($cmd == Delivery::PROFILEUPDATE) {
63                         $success = ActivityPub\Transmitter::sendProfileUpdate($uid, $inbox);
64                 } else {
65                         $data = ActivityPub\Transmitter::createCachedActivityFromItem($target_id);
66                         if (!empty($data)) {
67                                 $success = HTTPSignature::transmit($data, $inbox, $uid);
68                         }
69                 }
70
71                 // This should never fail and is temporariy (until the move to )
72                 $item = Item::selectFirst(['uri-id'], ['id' => $target_id]);
73
74                 if (!$success && !Worker::defer() && in_array($cmd, [Delivery::POST])) {
75                         Post\DeliveryData::incrementQueueFailed($item['uri-id']);
76                 } elseif ($success && in_array($cmd, [Delivery::POST])) {
77                         Post\DeliveryData::incrementQueueDone($item['uri-id'], Post\DeliveryData::ACTIVITYPUB);
78                 }
79         }
80 }