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