]> git.mxchange.org Git - friendica.git/blob - src/Worker/Notifier.php
[frio] Ensure access to all user menu items on low screens
[friendica.git] / src / Worker / Notifier.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
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\Hook;
25 use Friendica\Core\Logger;
26 use Friendica\Core\Protocol;
27 use Friendica\Core\Worker;
28 use Friendica\Database\DBA;
29 use Friendica\DI;
30 use Friendica\Model\Contact;
31 use Friendica\Model\Conversation;
32 use Friendica\Model\Group;
33 use Friendica\Model\GServer;
34 use Friendica\Model\Item;
35 use Friendica\Model\Post;
36 use Friendica\Model\PushSubscriber;
37 use Friendica\Model\Tag;
38 use Friendica\Model\User;
39 use Friendica\Protocol\Activity;
40 use Friendica\Protocol\ActivityPub;
41 use Friendica\Protocol\Diaspora;
42 use Friendica\Protocol\Delivery;
43 use Friendica\Protocol\OStatus;
44 use Friendica\Protocol\Salmon;
45 use Friendica\Util\LDSignature;
46 use Friendica\Util\Network;
47 use Friendica\Util\Strings;
48
49 /*
50  * The notifier is typically called with:
51  *
52  *              Worker::add(PRIORITY_HIGH, "Notifier", COMMAND, ITEM_ID);
53  *
54  * where COMMAND is one of the constants that are defined in Worker/Delivery.php
55  * and ITEM_ID is the id of the item in the database that needs to be sent to others.
56  */
57
58 class Notifier
59 {
60         public static function execute(string $cmd, int $post_uriid, int $sender_uid = 0)
61         {
62                 $a = DI::app();
63
64                 Logger::info('Invoked', ['cmd' => $cmd, 'target' => $post_uriid, 'sender_uid' => $sender_uid]);
65
66                 $target_id = $post_uriid;
67                 $top_level = false;
68                 $recipients = [];
69                 $url_recipients = [];
70
71                 $delivery_contacts_stmt = null;
72                 $target_item = [];
73                 $parent = [];
74                 $thr_parent = [];
75                 $items = [];
76                 $delivery_queue_count = 0;
77                 $ap_contacts = [];
78
79                 if ($cmd == Delivery::MAIL) {
80                         $message = DBA::selectFirst('mail', ['uid', 'contact-id'], ['id' => $target_id]);
81                         if (!DBA::isResult($message)) {
82                                 return;
83                         }
84                         $uid = $message['uid'];
85                         $recipients[] = $message['contact-id'];
86
87                         $mail = ActivityPub\Transmitter::getItemArrayFromMail($target_id);
88                         $inboxes = ActivityPub\Transmitter::fetchTargetInboxes($mail, $uid, true);
89                         foreach ($inboxes as $inbox => $receivers) {
90                                 $ap_contacts = array_merge($ap_contacts, $receivers);
91                                 Logger::info('Delivery via ActivityPub', ['cmd' => $cmd, 'target' => $target_id, 'inbox' => $inbox]);
92                                 Worker::add(['priority' => Worker::PRIORITY_HIGH, 'created' => $a->getQueueValue('created'), 'dont_fork' => true],
93                                         'APDelivery', $cmd, $target_id, $inbox, $uid, $receivers, $post_uriid);
94                         }
95                 } elseif ($cmd == Delivery::SUGGESTION) {
96                         $suggest = DI::fsuggest()->selectOneById($target_id);
97                         $uid = $suggest->uid;
98                         $recipients[] = $suggest->cid;
99                 } elseif ($cmd == Delivery::REMOVAL) {
100                         return self::notifySelfRemoval($target_id, $a->getQueueValue('priority'), $a->getQueueValue('created'));
101                 } elseif ($cmd == Delivery::RELOCATION) {
102                         $uid = $target_id;
103
104                         $condition = ['uid' => $target_id, 'self' => false, 'network' => [Protocol::DFRN, Protocol::DIASPORA]];
105                         $delivery_contacts_stmt = DBA::select('contact', ['id', 'url', 'addr', 'network', 'protocol', 'baseurl', 'gsid', 'batch'], $condition);
106                 } else {
107                         $post = Post::selectFirst(['id'], ['uri-id' => $post_uriid, 'uid' => $sender_uid]);
108                         if (!DBA::isResult($post)) {
109                                 Logger::warning('Post not found', ['uri-id' => $post_uriid, 'uid' => $sender_uid]);
110                                 return;
111                         }
112                         $target_id = $post['id'];
113
114                         // find ancestors
115                         $condition = ['id' => $target_id, 'visible' => true];
116                         $target_item = Post::selectFirst(Item::DELIVER_FIELDLIST, $condition);
117
118                         if (!DBA::isResult($target_item) || !intval($target_item['parent'])) {
119                                 Logger::info('No target item', ['cmd' => $cmd, 'target' => $target_id]);
120                                 return;
121                         }
122
123                         if (!empty($target_item['contact-uid'])) {
124                                 $uid = $target_item['contact-uid'];
125                         } elseif (!empty($target_item['uid'])) {
126                                 $uid = $target_item['uid'];
127                         } else {
128                                 Logger::info('Only public users, quitting', ['target' => $target_id]);
129                                 return;
130                         }
131
132                         $condition = ['parent' => $target_item['parent'], 'visible' => true];
133                         $params = ['order' => ['id']];
134                         $items_stmt = Post::select(Item::DELIVER_FIELDLIST, $condition, $params);
135                         if (!DBA::isResult($items_stmt)) {
136                                 Logger::info('No item found', ['cmd' => $cmd, 'target' => $target_id]);
137                                 return;
138                         }
139
140                         $items = Post::toArray($items_stmt);
141
142                         // avoid race condition with deleting entries
143                         if ($items[0]['deleted']) {
144                                 foreach ($items as $item) {
145                                         $item['deleted'] = 1;
146                                 }
147                         }
148
149                         $top_level = $target_item['gravity'] == Item::GRAVITY_PARENT;
150                 }
151
152                 $owner = User::getOwnerDataById($uid);
153                 if (!$owner) {
154                         Logger::info('Owner not found', ['cmd' => $cmd, 'target' => $target_id]);
155                         return;
156                 }
157
158                 // Should the post be transmitted to Diaspora?
159                 $diaspora_delivery = ($owner['account-type'] != User::ACCOUNT_TYPE_COMMUNITY);
160
161                 // If this is a public conversation, notify the feed hub
162                 $public_message = true;
163
164                 $unlisted = false;
165
166                 // Do a PuSH
167                 $push_notify = false;
168
169                 // Deliver directly to a forum, don't PuSH
170                 $direct_forum_delivery = false;
171
172                 $followup = false;
173                 $recipients_followup = [];
174
175                 if (!empty($target_item) && !empty($items)) {
176                         $parent = $items[0];
177
178                         $fields = ['network', 'author-id', 'author-link', 'author-network', 'owner-id'];
179                         $condition = ['uri' => $target_item['thr-parent'], 'uid' => $target_item['uid']];
180                         $thr_parent = Post::selectFirst($fields, $condition);
181                         if (empty($thr_parent)) {
182                                 $thr_parent = $parent;
183                         }
184
185                         Logger::info('Got post', ['guid' => $target_item['guid'], 'uri-id' => $target_item['uri-id'], 'network' => $target_item['network'], 'parent-network' => $parent['network'], 'thread-parent-network' => $thr_parent['network']]);
186
187                         if (!self::isRemovalActivity($cmd, $owner, Protocol::ACTIVITYPUB)) {
188                                 $apdelivery = self::activityPubDelivery($cmd, $target_item, $parent, $thr_parent, $a->getQueueValue('priority'), $a->getQueueValue('created'), $owner);
189                                 $ap_contacts = $apdelivery['contacts'];
190                                 $delivery_queue_count += $apdelivery['count'];
191                         }
192
193                         // Only deliver threaded replies (comment to a comment) to Diaspora
194                         // when the original comment author does support the Diaspora protocol.
195                         if ($thr_parent['author-link'] && $target_item['parent-uri'] != $target_item['thr-parent']) {
196                                 $diaspora_delivery = Diaspora::isSupportedByContactUrl($thr_parent['author-link']);
197                                 if ($diaspora_delivery && empty($target_item['signed_text'])) {
198                                         Logger::debug('Post has got no Diaspora signature, so there will be no Diaspora delivery', ['guid' => $target_item['guid'], 'uri-id' => $target_item['uri-id']]);
199                                         $diaspora_delivery = false;
200                                 }
201                                 Logger::info('Threaded comment', ['diaspora_delivery' => (int)$diaspora_delivery]);
202                         }
203
204                         $unlisted = $target_item['private'] == Item::UNLISTED;
205
206                         // This is IMPORTANT!!!!
207
208                         // We will only send a "notify owner to relay" or followup message if the referenced post
209                         // originated on our system by virtue of having our hostname somewhere
210                         // in the URI, AND it was a comment (not top_level) AND the parent originated elsewhere.
211
212                         // if $parent['wall'] == 1 we will already have the parent message in our array
213                         // and we will relay the whole lot.
214
215                         $localhost = str_replace('www.','', DI::baseUrl()->getHostname());
216                         if (strpos($localhost,':')) {
217                                 $localhost = substr($localhost,0,strpos($localhost,':'));
218                         }
219                         /**
220                          *
221                          * Be VERY CAREFUL if you make any changes to the following several lines. Seemingly innocuous changes
222                          * have been known to cause runaway conditions which affected several servers, along with
223                          * permissions issues.
224                          *
225                          */
226
227                         $relay_to_owner = false;
228
229                         if (!$top_level && ($parent['wall'] == 0) && (stristr($target_item['uri'],$localhost))) {
230                                 $relay_to_owner = true;
231                         }
232
233                         // until the 'origin' flag has been in use for several months
234                         // we will just use it as a fallback test
235                         // later we will be able to use it as the primary test of whether or not to relay.
236
237                         if (!$target_item['origin']) {
238                                 $relay_to_owner = false;
239                         }
240                         if ($parent['origin']) {
241                                 $relay_to_owner = false;
242                         }
243
244                         // Special treatment for forum posts
245                         if (Item::isForumPost($target_item['uri-id'])) {
246                                 $relay_to_owner = true;
247                                 $direct_forum_delivery = true;
248                         }
249
250                         // Avoid that comments in a forum thread are sent to OStatus
251                         if (Item::isForumPost($parent['uri-id'])) {
252                                 $direct_forum_delivery = true;
253                         }
254
255                         $exclusive_delivery = false;
256
257                         $exclusive_targets = Tag::getByURIId($parent['uri-id'], [Tag::EXCLUSIVE_MENTION]);
258                         if (!empty($exclusive_targets)) {
259                                 $exclusive_delivery = true;
260                                 Logger::info('Possible Exclusively delivering', ['uid' => $target_item['uid'], 'guid' => $target_item['guid'], 'uri-id' => $target_item['uri-id']]);
261                                 foreach ($exclusive_targets as $target) {
262                                         if (Strings::compareLink($owner['url'], $target['url'])) {
263                                                 $exclusive_delivery = false;
264                                                 Logger::info('False Exclusively delivering', ['uid' => $target_item['uid'], 'guid' => $target_item['guid'], 'uri-id' => $target_item['uri-id'], 'url' => $target['url']]);
265                                         }
266                                 }
267                         }
268
269                         if ($relay_to_owner) {
270                                 // local followup to remote post
271                                 $followup = true;
272                                 $public_message = false; // not public
273                                 $recipients = [$parent['contact-id']];
274                                 $recipients_followup  = [$parent['contact-id']];
275
276                                 Logger::info('Followup', ['target' => $target_id, 'guid' => $target_item['guid'], 'to' => $parent['contact-id']]);
277
278                                 if (($target_item['private'] != Item::PRIVATE) &&
279                                         (strlen($target_item['allow_cid'].$target_item['allow_gid'].
280                                                 $target_item['deny_cid'].$target_item['deny_gid']) == 0))
281                                         $push_notify = true;
282
283                                 if (($thr_parent && ($thr_parent['network'] == Protocol::OSTATUS)) || ($parent['network'] == Protocol::OSTATUS)) {
284                                         $push_notify = true;
285
286                                         if ($parent["network"] == Protocol::OSTATUS) {
287                                                 // Distribute the message to the DFRN contacts as if this wasn't a followup since OStatus can't relay comments
288                                                 // Currently it is work at progress
289                                                 $condition = ['uid' => $uid, 'network' => Protocol::DFRN, 'blocked' => false, 'pending' => false, 'archive' => false];
290                                                 $followup_contacts_stmt = DBA::select('contact', ['id'], $condition);
291                                                 while($followup_contact = DBA::fetch($followup_contacts_stmt)) {
292                                                         $recipients_followup[] = $followup_contact['id'];
293                                                 }
294                                                 DBA::close($followup_contacts_stmt);
295                                         }
296                                 }
297
298                                 if ($direct_forum_delivery) {
299                                         $push_notify = false;
300                                 }
301
302                                 Logger::info('Notify ' . $target_item["guid"] .' via PuSH: ' . ($push_notify ? "Yes":"No"));
303                         } elseif ($exclusive_delivery) {
304                                 $followup = true;
305
306                                 foreach ($exclusive_targets as $target) {
307                                         $cid = Contact::getIdForURL($target['url'], $uid, false);
308                                         if ($cid) {
309                                                 $recipients_followup[] = $cid;
310                                                 Logger::info('Exclusively delivering', ['uid' => $target_item['uid'], 'guid' => $target_item['guid'], 'uri-id' => $target_item['uri-id'], 'url' => $target['url']]);
311                                         }
312                                 }
313                         } else {
314                                 $followup = false;
315
316                                 Logger::info('Distributing directly', ['target' => $target_id, 'guid' => $target_item['guid']]);
317
318                                 // don't send deletions onward for other people's stuff
319
320                                 if ($target_item['deleted'] && !intval($target_item['wall'])) {
321                                         Logger::notice('Ignoring delete notification for non-wall item');
322                                         return;
323                                 }
324
325                                 if (strlen($parent['allow_cid'])
326                                         || strlen($parent['allow_gid'])
327                                         || strlen($parent['deny_cid'])
328                                         || strlen($parent['deny_gid'])) {
329                                         $public_message = false; // private recipients, not public
330                                 }
331
332                                 $aclFormatter = DI::aclFormatter();
333
334                                 $allow_people = $aclFormatter->expand($parent['allow_cid']);
335                                 $allow_groups = Group::expand($uid, $aclFormatter->expand($parent['allow_gid']),true);
336                                 $deny_people  = $aclFormatter->expand($parent['deny_cid']);
337                                 $deny_groups  = Group::expand($uid, $aclFormatter->expand($parent['deny_gid']));
338
339                                 foreach ($items as $item) {
340                                         $recipients[] = $item['contact-id'];
341                                         // pull out additional tagged people to notify (if public message)
342                                         if ($public_message && $item['inform']) {
343                                                 $people = explode(',',$item['inform']);
344                                                 foreach ($people as $person) {
345                                                         if (substr($person,0,4) === 'cid:') {
346                                                                 $recipients[] = intval(substr($person,4));
347                                                         } else {
348                                                                 $url_recipients[] = substr($person,4);
349                                                         }
350                                                 }
351                                         }
352                                 }
353
354                                 if (count($url_recipients)) {
355                                         Logger::notice('Deliver', ['target' => $target_id, 'guid' => $target_item['guid'], 'recipients' => $url_recipients]);
356                                 }
357
358                                 $recipients = array_unique(array_merge($recipients, $allow_people, $allow_groups));
359                                 $deny = array_unique(array_merge($deny_people, $deny_groups));
360                                 $recipients = array_diff($recipients, $deny);
361
362                                 // If this is a public message and pubmail is set on the parent, include all your email contacts
363                                 if (
364                                         function_exists('imap_open')
365                                         && !DI::config()->get('system','imap_disabled')
366                                         && $public_message
367                                         && intval($target_item['pubmail'])
368                                 ) {
369                                         $mail_contacts_stmt = DBA::select('contact', ['id'], ['uid' => $uid, 'network' => Protocol::MAIL]);
370                                         while ($mail_contact = DBA::fetch($mail_contacts_stmt)) {
371                                                 $recipients[] = $mail_contact['id'];
372                                         }
373                                         DBA::close($mail_contacts_stmt);
374                                 }
375                         }
376
377                         // If the thread parent is OStatus then do some magic to distribute the messages.
378                         // We have not only to look at the parent, since it could be a Friendica thread.
379                         if (($thr_parent && ($thr_parent['network'] == Protocol::OSTATUS)) || ($parent['network'] == Protocol::OSTATUS)) {
380                                 $diaspora_delivery = false;
381
382                                 Logger::info('Some parent is OStatus for ' . $target_item['guid'] . ' - Author: ' . $thr_parent['author-id'] . ' - Owner: ' . $thr_parent['owner-id']);
383
384                                 // Send a salmon to the parent author
385                                 $probed_contact = DBA::selectFirst('contact', ['url', 'notify'], ['id' => $thr_parent['author-id']]);
386                                 if (DBA::isResult($probed_contact) && !empty($probed_contact['notify'])) {
387                                         Logger::notice('Notify parent author', ['url' => $probed_contact['url'], 'notify' => $probed_contact['notify']]);
388                                         $url_recipients[$probed_contact['notify']] = $probed_contact['notify'];
389                                 }
390
391                                 // Send a salmon to the parent owner
392                                 $probed_contact = DBA::selectFirst('contact', ['url', 'notify'], ['id' => $thr_parent['owner-id']]);
393                                 if (DBA::isResult($probed_contact) && !empty($probed_contact['notify'])) {
394                                         Logger::notice('Notify parent owner', ['url' => $probed_contact['url'], 'notify' => $probed_contact['notify']]);
395                                         $url_recipients[$probed_contact['notify']] = $probed_contact['notify'];
396                                 }
397
398                                 // Send a salmon notification to every person we mentioned in the post
399                                 foreach (Tag::getByURIId($target_item['uri-id'], [Tag::MENTION, Tag::EXCLUSIVE_MENTION, Tag::IMPLICIT_MENTION]) as $tag) {
400                                         $probed_contact = Contact::getByURL($tag['url']);
401                                         if (!empty($probed_contact['notify'])) {
402                                                 Logger::notice('Notify mentioned user', ['url' => $probed_contact['url'], 'notify' => $probed_contact['notify']]);
403                                                 $url_recipients[$probed_contact['notify']] = $probed_contact['notify'];
404                                         }
405                                 }
406
407                                 // It only makes sense to distribute answers to OStatus messages to Friendica and OStatus - but not Diaspora
408                                 $networks = [Protocol::DFRN];
409                         } elseif ($diaspora_delivery) {
410                                 $networks = [Protocol::DFRN, Protocol::DIASPORA, Protocol::MAIL];
411                                 if (($parent['network'] == Protocol::DIASPORA) || ($thr_parent['network'] == Protocol::DIASPORA)) {
412                                         Logger::info('Add AP contacts', ['target' => $target_id, 'guid' => $target_item['guid']]);
413                                         $networks[] = Protocol::ACTIVITYPUB;
414                                 }
415                         } else {
416                                 $networks = [Protocol::DFRN, Protocol::MAIL];
417                         }
418                 } else {
419                         $public_message = false;
420                 }
421
422                 if (empty($delivery_contacts_stmt)) {
423                         if ($followup) {
424                                 $recipients = $recipients_followup;
425                         }
426                         $condition = ['id' => $recipients, 'self' => false, 'uid' => [0, $uid],
427                                 'blocked' => false, 'pending' => false, 'archive' => false];
428                         if (!empty($networks)) {
429                                 $condition['network'] = $networks;
430                         }
431                         $delivery_contacts_stmt = DBA::select('contact', ['id', 'addr', 'url', 'network', 'protocol', 'baseurl', 'gsid', 'batch'], $condition);
432                 }
433
434                 $conversants = [];
435                 $batch_delivery = false;
436
437                 if ($public_message && !in_array($cmd, [Delivery::MAIL, Delivery::SUGGESTION]) && !$followup) {
438                         $participants = [];
439
440                         if ($diaspora_delivery && !$unlisted) {
441                                 $batch_delivery = true;
442
443                                 $participants = DBA::selectToArray('contact', ['batch', 'network', 'protocol', 'baseurl', 'gsid', 'id', 'url', 'name'],
444                                         ["`network` = ? AND `batch` != '' AND `uid` = ? AND `rel` != ? AND NOT `blocked` AND NOT `pending` AND NOT `archive`", Protocol::DIASPORA, $owner['uid'], Contact::SHARING],
445                                         ['group_by' => ['batch', 'network', 'protocol']]);
446
447                                 // Fetch the participation list
448                                 // The function will ensure that there are no duplicates
449                                 $participants = Diaspora::participantsForThread($target_item, $participants);
450                         }
451
452                         $condition = ['network' => Protocol::DFRN, 'uid' => $owner['uid'], 'blocked' => false,
453                                 'pending' => false, 'archive' => false, 'rel' => [Contact::FOLLOWER, Contact::FRIEND]];
454
455                         $contacts = DBA::selectToArray('contact', ['id', 'url', 'addr', 'name', 'network', 'protocol', 'baseurl', 'gsid'], $condition);
456
457                         $conversants = array_merge($contacts, $participants);
458
459                         $delivery_queue_count += self::delivery($cmd, $post_uriid, $sender_uid, $target_item, $thr_parent, $owner, $batch_delivery, true, $conversants, $ap_contacts, []);
460
461                         $push_notify = true;
462                 }
463
464                 $contacts = DBA::toArray($delivery_contacts_stmt);
465                 $delivery_queue_count += self::delivery($cmd, $post_uriid, $sender_uid, $target_item, $thr_parent, $owner, $batch_delivery, false, $contacts, $ap_contacts, $conversants);
466
467                 $delivery_queue_count += self::deliverOStatus($target_id, $target_item, $owner, $url_recipients, $public_message, $push_notify);
468
469                 if (!empty($target_item)) {
470                         Logger::info('Calling hooks for ' . $cmd . ' ' . $target_id);
471
472                         Hook::fork($a->getQueueValue('priority'), 'notifier_normal', $target_item);
473
474                         Hook::callAll('notifier_end', $target_item);
475
476                         // Workaround for pure connector posts
477                         if ($cmd == Delivery::POST) {
478                                 if ($delivery_queue_count == 0) {
479                                         Post\DeliveryData::incrementQueueDone($target_item['uri-id']);
480                                         $delivery_queue_count = 1;
481                                 }
482
483                                 Post\DeliveryData::incrementQueueCount($target_item['uri-id'], $delivery_queue_count);
484                         }
485                 }
486
487                 return;
488         }
489
490         /**
491          * Deliver the message to the contacts
492          *
493          * @param string $cmd
494          * @param int $post_uriid
495          * @param int $sender_uid
496          * @param array $target_item
497          * @param array $thr_parent
498          * @param array $owner
499          * @param bool $batch_delivery
500          * @param array $contacts
501          * @param array $ap_contacts
502          * @param array $conversants
503          *
504          * @return int Count of delivery queue
505          * @throws InternalServerErrorException
506          * @throws Exception
507          */
508         private static function delivery(string $cmd, int $post_uriid, int $sender_uid, array $target_item, array $thr_parent, array $owner, bool $batch_delivery, bool $in_batch, array $contacts, array $ap_contacts, array $conversants = []): int
509         {
510                 $a = DI::app();
511                 $delivery_queue_count = 0;
512
513                 if (!empty($target_item['verb']) && ($target_item['verb'] == Activity::ANNOUNCE)) {
514                         Logger::notice('Announces are only delivery via ActivityPub', ['cmd' => $cmd, 'id' => $target_item['id'], 'guid' => $target_item['guid'], 'uri-id' => $target_item['uri-id'], 'uri' => $target_item['uri']]);
515                         return 0;
516                 }
517
518                 foreach ($contacts as $contact) {
519                         // Direct delivery of local contacts
520                         if (!in_array($cmd, [Delivery::RELOCATION, Delivery::SUGGESTION, Delivery::DELETION, Delivery::MAIL]) && $target_uid = User::getIdForURL($contact['url'])) {
521                                 if ($target_item['origin'] || ($target_item['network'] != Protocol::ACTIVITYPUB)) {
522                                         if ($target_uid != $target_item['uid']) {
523                                                 $fields = ['protocol' => Conversation::PARCEL_LOCAL_DFRN, 'direction' => Conversation::PUSH, 'post-reason' => Item::PR_DIRECT];
524                                                 Item::storeForUserByUriId($target_item['uri-id'], $target_uid, $fields, $target_item['uid']);
525                                                 Logger::info('Delivered locally', ['cmd' => $cmd, 'id' => $target_item['id'], 'target' => $target_uid]);
526                                         } else {
527                                                 Logger::info('No need to deliver to myself', ['uid' => $target_uid, 'guid' => $target_item['guid'], 'uri-id' => $target_item['uri-id'], 'uri' => $target_item['uri']]);
528                                         }
529                                 } else {
530                                         Logger::info('Remote item does not need to be delivered locally', ['guid' => $target_item['guid'], 'uri-id' => $target_item['uri-id'], 'uri' => $target_item['uri']]);
531                                 }
532                                 continue;
533                         }
534
535                         // Deletions are always sent via DFRN as well.
536                         // This is done until we can perform deletions of foreign comments on our own threads via AP.
537                         if (($cmd != Delivery::DELETION) && in_array($contact['id'], $ap_contacts)) {
538                                 Logger::info('Contact is already delivered via AP, so skip delivery via legacy DFRN/Diaspora', ['target' => $post_uriid, 'uid' => $sender_uid, 'contact' => $contact['url']]);
539                                 continue;
540                         }
541
542                         if (!empty($contact['id']) && Contact::isArchived($contact['id'])) {
543                                 Logger::info('Contact is archived, so skip delivery', ['target' => $post_uriid, 'uid' => $sender_uid, 'contact' => $contact['url']]);
544                                 continue;
545                         }
546
547                         if (self::isRemovalActivity($cmd, $owner, $contact['network'])) {
548                                 Logger::info('Contact does no supports account removal commands, so skip delivery', ['target' => $post_uriid, 'uid' => $sender_uid, 'contact' => $contact['url']]);
549                                 continue;
550                         }
551
552                         if (self::skipActivityPubForDiaspora($contact, $target_item, $thr_parent)) {
553                                 Logger::info('Contact is from Diaspora, but the replied author is from ActivityPub, so skip delivery via Diaspora', ['id' => $post_uriid, 'uid' => $sender_uid, 'url' => $contact['url']]);
554                                 continue;
555                         }
556
557                         // Don't deliver to Diaspora if it already had been done as batch delivery
558                         if (!$in_batch && $batch_delivery && ($contact['network'] == Protocol::DIASPORA)) {
559                                 Logger::info('Diaspora contact is already delivered via batch', ['id' => $post_uriid, 'uid' => $sender_uid, 'contact' => $contact]);
560                                 continue;
561                         }
562
563                         // Don't deliver to folks who have already been delivered to
564                         if (in_array($contact['id'], $conversants)) {
565                                 Logger::info('Already delivery', ['id' => $post_uriid, 'uid' => $sender_uid, 'contact' => $contact]);
566                                 continue;
567                         }
568
569                         if (empty($contact['gsid'])) {
570                                 $reachable = GServer::reachable($contact);
571                         } elseif (!DI::config()->get('system', 'bulk_delivery')) {
572                                 $reachable = GServer::isReachableById($contact['gsid']);
573                         } else {
574                                 $reachable = !GServer::isDefunctById($contact['gsid']);
575                         }
576
577                         if (!$reachable) {
578                                 Logger::info('Server is not reachable', ['id' => $post_uriid, 'uid' => $sender_uid, 'contact' => $contact]);
579                                 continue;
580                         }
581
582                         Logger::info('Delivery', ['batch' => $in_batch, 'target' => $post_uriid, 'uid' => $sender_uid, 'guid' => $target_item['guid'] ?? '', 'to' => $contact]);
583
584                         // Ensure that posts with our own protocol arrives before Diaspora posts arrive.
585                         // Situation is that sometimes Friendica servers receive Friendica posts over the Diaspora protocol first.
586                         // The conversion in Markdown reduces the formatting, so these posts should arrive after the Friendica posts.
587                         // This is only important for high and medium priority tasks and not for Low priority jobs like deletions.
588                         if (($contact['network'] == Protocol::DIASPORA) && in_array($a->getQueueValue('priority'), [Worker::PRIORITY_HIGH, Worker::PRIORITY_MEDIUM])) {
589                                 $deliver_options = ['priority' => $a->getQueueValue('priority'), 'dont_fork' => true];
590                         } else {
591                                 $deliver_options = ['priority' => $a->getQueueValue('priority'), 'created' => $a->getQueueValue('created'), 'dont_fork' => true];
592                         }
593
594                         if (!empty($contact['gsid']) && DI::config()->get('system', 'bulk_delivery')) {
595                                 $delivery_queue_count++;
596                                 $deliveryQueueItem = DI::deliveryQueueItemFactory()->createFromDelivery($cmd, $post_uriid, new \DateTimeImmutable($target_item['created']), $contact['id'], $contact['gsid'], $sender_uid);
597                                 DI::deliveryQueueItemRepo()->save($deliveryQueueItem);
598                                 Worker::add(['priority' => Worker::PRIORITY_HIGH, 'dont_fork' => true], 'BulkDelivery', $contact['gsid']);
599                         } else {
600                                 if (Worker::add($deliver_options, 'Delivery', $cmd, $post_uriid, (int)$contact['id'], $sender_uid)) {
601                                         $delivery_queue_count++;
602                                 }
603                         }
604
605                         Worker::coolDown();
606                 }
607                 return $delivery_queue_count;
608         }
609
610         /**
611          * Deliver the message via OStatus
612          *
613          * @param int $target_id
614          * @param array $target_item
615          * @param array $owner
616          * @param array $url_recipients
617          * @param bool $public_message
618          * @param bool $push_notify
619          *
620          * @return int Count of sent Salmon notifications
621          * @throws InternalServerErrorException
622          * @throws Exception
623          */
624         private static function deliverOStatus(int $target_id, array $target_item, array $owner, array $url_recipients, bool $public_message, bool $push_notify): int
625         {
626                 $a = DI::app();
627                 $delivery_queue_count = 0;
628
629                 $url_recipients = array_filter($url_recipients);
630                 // send salmon slaps to mentioned remote tags (@foo@example.com) in OStatus posts
631                 // They are especially used for notifications to OStatus users that don't follow us.
632                 if (count($url_recipients) && ($public_message || $push_notify) && !empty($target_item)) {
633                         $slap = OStatus::salmon($target_item, $owner);
634                         foreach ($url_recipients as $url) {
635                                 Logger::info('Salmon delivery', ['item' => $target_id, 'to' => $url]);
636
637                                 $delivery_queue_count++;
638                                 Salmon::slapper($owner, $url, $slap);
639                                 Post\DeliveryData::incrementQueueDone($target_item['uri-id'], Post\DeliveryData::OSTATUS);
640                         }
641                 }
642
643                 // Notify PuSH subscribers (Used for OStatus distribution of regular posts)
644                 if ($push_notify) {
645                         Logger::info('Activating internal PuSH', ['uid' => $owner['uid']]);
646
647                         // Handling the pubsubhubbub requests
648                         PushSubscriber::publishFeed($owner['uid'], $a->getQueueValue('priority'));
649                 }
650                 return $delivery_queue_count;
651         }
652
653         /**
654          * Checks if the current delivery shouldn't be transported to Diaspora.
655          * This is done for posts from AP authors or posts that are comments to AP authors.
656          *
657          * @param array  $contact    Receiver of the post
658          * @param array  $item       The post
659          * @param array  $thr_parent The thread parent
660          *
661          * @return bool
662          */
663         private static function skipActivityPubForDiaspora(array $contact, array $item, array $thr_parent): bool
664         {
665                 // No skipping needs to be done when delivery isn't done to Diaspora
666                 if ($contact['network'] != Protocol::DIASPORA) {
667                         return false;
668                 }
669
670                 // Skip the delivery to Diaspora if the item is from an ActivityPub author
671                 if (!empty($item['author-network']) && ($item['author-network'] == Protocol::ACTIVITYPUB)) {
672                         return true;
673                 }
674
675                 // Skip the delivery to Diaspora if the thread parent is from an ActivityPub author
676                 if (!empty($thr_parent['author-network']) && ($thr_parent['author-network'] == Protocol::ACTIVITYPUB)) {
677                         return true;
678                 }
679
680                 return false;
681         }
682
683         /**
684          * Checks if the current action is a deletion command of a account removal activity
685          * For Diaspora and ActivityPub we don't need to send single item deletion calls.
686          * These protocols do have a dedicated command for deleting a whole account.
687          *
688          * @param string $cmd     Notifier command
689          * @param array  $owner   Sender of the post
690          * @param string $network Receiver network
691          *
692          * @return bool
693          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
694          * @throws \ImagickException
695          */
696         private static function isRemovalActivity(string $cmd, array $owner, string $network): bool
697         {
698                 return ($cmd == Delivery::DELETION) && $owner['account_removed'] && in_array($network, [Protocol::ACTIVITYPUB, Protocol::DIASPORA]);
699         }
700
701         /**
702          * @param int    $self_user_id
703          * @param int    $priority The priority the Notifier queue item was created with
704          * @param string $created  The date the Notifier queue item was created on
705          *
706          * @return bool
707          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
708          * @throws \ImagickException
709          */
710         private static function notifySelfRemoval(int $self_user_id, int $priority, string $created): bool
711         {
712                 $owner = User::getOwnerDataById($self_user_id);
713                 if (empty($self_user_id) || empty($owner)) {
714                         return false;
715                 }
716
717                 $contacts_stmt = DBA::select('contact', [], ['self' => false, 'uid' => $self_user_id]);
718                 if (!DBA::isResult($contacts_stmt)) {
719                         return false;
720                 }
721
722                 while($contact = DBA::fetch($contacts_stmt)) {
723                         Contact::terminateFriendship($contact);
724                 }
725                 DBA::close($contacts_stmt);
726
727                 $inboxes = ActivityPub\Transmitter::fetchTargetInboxesforUser($self_user_id);
728                 foreach ($inboxes as $inbox => $receivers) {
729                         Logger::info('Account removal via ActivityPub', ['uid' => $self_user_id, 'inbox' => $inbox]);
730                         Worker::add(['priority' => Worker::PRIORITY_NEGLIGIBLE, 'created' => $created, 'dont_fork' => true],
731                                 'APDelivery', Delivery::REMOVAL, 0, $inbox, $self_user_id, $receivers);
732                         Worker::coolDown();
733                 }
734
735                 return true;
736         }
737
738         /**
739          * @param string $cmd
740          * @param array  $target_item
741          * @param array  $parent
742          * @param array  $thr_parent
743          * @param int    $priority The priority the Notifier queue item was created with
744          * @param string $created  The date the Notifier queue item was created on
745          *
746          * @return array 'count' => The number of delivery tasks created, 'contacts' => their contact ids
747          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
748          * @throws \ImagickException
749          * @todo Unused parameter $owner
750          */
751         private static function activityPubDelivery($cmd, array $target_item, array $parent, array $thr_parent, int $priority, string $created, $owner): array
752         {
753                 // Don't deliver via AP when the starting post isn't from a federated network
754                 if (!in_array($parent['network'], Protocol::FEDERATED)) {
755                         Logger::info('Parent network is no federated network, so no AP delivery', ['network' => $parent['network']]);
756                         return ['count' => 0, 'contacts' => []];
757                 }
758
759                 // Don't deliver via AP when the starting post is delivered via Diaspora
760                 if ($parent['network'] == Protocol::DIASPORA) {
761                         Logger::info('Parent network is Diaspora, so no AP delivery');
762                         return ['count' => 0, 'contacts' => []];
763                 }
764
765                 // Also don't deliver when the direct thread parent was delivered via Diaspora
766                 if ($thr_parent['network'] == Protocol::DIASPORA) {
767                         Logger::info('Thread parent network is Diaspora, so no AP delivery');
768                         return ['count' => 0, 'contacts' => []];
769                 }
770
771                 // Posts from Diaspora contacts are transmitted via Diaspora
772                 if ($target_item['network'] == Protocol::DIASPORA) {
773                         Logger::info('Post network is Diaspora, so no AP delivery');
774                         return ['count' => 0, 'contacts' => []];
775                 }
776
777                 $inboxes = [];
778                 $relay_inboxes = [];
779
780                 $uid = $target_item['contact-uid'] ?: $target_item['uid'];
781
782                 // Update the locally stored follower list when we deliver to a forum
783                 foreach (Tag::getByURIId($target_item['uri-id'], [Tag::MENTION, Tag::EXCLUSIVE_MENTION]) as $tag) {
784                         $target_contact = Contact::getByURL(Strings::normaliseLink($tag['url']), null, [], $uid);
785                         if ($target_contact && $target_contact['contact-type'] == Contact::TYPE_COMMUNITY && $target_contact['manually-approve']) {
786                                 Group::updateMembersForForum($target_contact['id']);
787                         }
788                 }
789
790                 if ($target_item['origin']) {
791                         $inboxes = ActivityPub\Transmitter::fetchTargetInboxes($target_item, $uid);
792
793                         if (in_array($target_item['private'], [Item::PUBLIC])) {
794                                 $inboxes = ActivityPub\Transmitter::addRelayServerInboxesForItem($target_item['id'], $inboxes);
795                                 $relay_inboxes = ActivityPub\Transmitter::addRelayServerInboxes();
796                         }
797
798                         Logger::info('Origin item will be distributed', ['id' => $target_item['id'], 'url' => $target_item['uri'], 'verb' => $target_item['verb']]);
799                         $check_signature = false;
800                 } elseif (!Post\Activity::exists($target_item['uri-id'])) {
801                         Logger::info('Remote item is no AP post. It will not be distributed.', ['id' => $target_item['id'], 'url' => $target_item['uri'], 'verb' => $target_item['verb']]);
802                         return ['count' => 0, 'contacts' => []];
803                 } elseif ($parent['origin'] && (($target_item['gravity'] != Item::GRAVITY_ACTIVITY) || DI::config()->get('system', 'redistribute_activities'))) {
804                         $inboxes = ActivityPub\Transmitter::fetchTargetInboxes($parent, $uid, false, $target_item['id']);
805
806                         if (in_array($target_item['private'], [Item::PUBLIC])) {
807                                 $inboxes = ActivityPub\Transmitter::addRelayServerInboxesForItem($parent['id'], $inboxes);
808                         }
809
810                         Logger::info('Remote item will be distributed', ['id' => $target_item['id'], 'url' => $target_item['uri'], 'verb' => $target_item['verb']]);
811                         $check_signature = ($target_item['gravity'] == Item::GRAVITY_ACTIVITY); 
812                 } else {
813                         Logger::info('Remote activity will not be distributed', ['id' => $target_item['id'], 'url' => $target_item['uri'], 'verb' => $target_item['verb']]);
814                         return ['count' => 0, 'contacts' => []];
815                 }
816
817                 if (empty($inboxes) && empty($relay_inboxes)) {
818                         Logger::info('No inboxes found for item ' . $target_item['id'] . ' with URL ' . $target_item['uri'] . '. It will not be distributed.');
819                         return ['count' => 0, 'contacts' => []];
820                 }
821
822                 // Fill the item cache
823                 $activity = ActivityPub\Transmitter::createCachedActivityFromItem($target_item['id'], true);
824                 if (empty($activity)) {
825                         Logger::info('Item cache was not created. The post will not be distributed.', ['id' => $target_item['id'], 'url' => $target_item['uri'], 'verb' => $target_item['verb']]);
826                         return ['count' => 0, 'contacts' => []];
827                 }
828
829                 if ($check_signature && !LDSignature::isSigned($activity)) {
830                         Logger::info('Unsigned remote activity will not be distributed', ['id' => $target_item['id'], 'url' => $target_item['uri'], 'verb' => $target_item['verb']]);
831                         return ['count' => 0, 'contacts' => []];
832                 }
833
834                 $delivery_queue_count = 0;
835                 $contacts = [];
836
837                 foreach ($inboxes as $inbox => $receivers) {
838                         $contacts = array_merge($contacts, $receivers);
839
840                         if ((count($receivers) == 1) && Network::isLocalLink($inbox)) {
841                                 $contact = Contact::getById($receivers[0], ['url']);
842                                 if (!in_array($cmd, [Delivery::RELOCATION, Delivery::SUGGESTION, Delivery::DELETION, Delivery::MAIL]) && ($target_uid = User::getIdForURL($contact['url']))) {
843                                         if ($target_item['origin'] || ($target_item['network'] != Protocol::ACTIVITYPUB)) {
844                                                 if ($target_uid != $target_item['uid']) {
845                                                         $fields = ['protocol' => Conversation::PARCEL_LOCAL_DFRN, 'direction' => Conversation::PUSH, 'post-reason' => Item::PR_BCC];
846                                                         Item::storeForUserByUriId($target_item['uri-id'], $target_uid, $fields, $target_item['uid']);
847                                                         Logger::info('Delivered locally', ['cmd' => $cmd, 'id' => $target_item['id'], 'inbox' => $inbox]);
848                                                 } else {
849                                                         Logger::info('No need to deliver to myself', ['uid' => $target_uid, 'guid' => $target_item['guid'], 'uri-id' => $target_item['uri-id'], 'uri' => $target_item['uri']]);
850                                                 }
851                                         } else {
852                                                 Logger::info('Remote item does not need to be delivered locally', ['guid' => $target_item['guid'], 'uri-id' => $target_item['uri-id'], 'uri' => $target_item['uri']]);
853                                         }
854                                         continue;
855                                 }
856                         } elseif ((count($receivers) >= 1) && Network::isLocalLink($inbox)) {
857                                 Logger::info('Is this a thing?', ['guid' => $target_item['guid'], 'uri-id' => $target_item['uri-id'], 'uri' => $target_item['uri']]);
858                         }
859
860                         Logger::info('Delivery via ActivityPub', ['cmd' => $cmd, 'id' => $target_item['id'], 'inbox' => $inbox]);
861
862                         if (DI::config()->get('system', 'bulk_delivery')) {
863                                 $delivery_queue_count++;
864                                 Post\Delivery::add($target_item['uri-id'], $uid, $inbox, $target_item['created'], $cmd, $receivers);
865                                 Worker::add([Worker::PRIORITY_HIGH, 'dont_fork' => true], 'APDelivery', '', 0, $inbox, 0);
866                         } else {
867                                 if (Worker::add(['priority' => $priority, 'created' => $created, 'dont_fork' => true],
868                                                 'APDelivery', $cmd, $target_item['id'], $inbox, $uid, $receivers, $target_item['uri-id'])) {
869                                         $delivery_queue_count++;
870                                 }
871                         }
872                         Worker::coolDown();
873                 }
874
875                 // We deliver posts to relay servers slightly delayed to priorize the direct delivery
876                 foreach ($relay_inboxes as $inbox) {
877                         Logger::info('Delivery to relay servers via ActivityPub', ['cmd' => $cmd, 'id' => $target_item['id'], 'inbox' => $inbox]);
878
879                         if (DI::config()->get('system', 'bulk_delivery')) {
880                                 $delivery_queue_count++;
881                                 Post\Delivery::add($target_item['uri-id'], $uid, $inbox, $target_item['created'], $cmd, []);
882                                 Worker::add([Worker::PRIORITY_MEDIUM, 'dont_fork' => true], 'APDelivery', '', 0, $inbox, 0);
883                         } else {
884                                 if (Worker::add(['priority' => $priority, 'dont_fork' => true], 'APDelivery', $cmd, $target_item['id'], $inbox, $uid, [], $target_item['uri-id'])) {
885                                         $delivery_queue_count++;
886                                 }
887                         }
888                         Worker::coolDown();
889                 }
890
891                 return ['count' => $delivery_queue_count, 'contacts' => $contacts];
892         }
893 }