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