]> git.mxchange.org Git - friendica.git/blob - include/notifier.php
Logging for ejabberd authentication is now done via syslog
[friendica.git] / include / notifier.php
1 <?php
2
3 use Friendica\App;
4 use Friendica\Core\Config;
5
6 require_once 'include/queue_fn.php';
7 require_once 'include/html2plain.php';
8 require_once 'include/probe.php';
9 require_once 'include/diaspora.php';
10 require_once 'include/ostatus.php';
11 require_once 'include/salmon.php';
12
13 /*
14  * This file was at one time responsible for doing all deliveries, but this caused
15  * big problems when the process was killed or stalled during the delivery process.
16  * It now invokes separate queues that are delivering via delivery.php and pubsubpublish.php.
17  */
18
19 /*
20  * The notifier is typically called with:
21  *
22  *              proc_run(PRIORITY_HIGH, "include/notifier.php", COMMAND, ITEM_ID);
23  *
24  * where COMMAND is one of the following:
25  *
26  *              activity                                (in diaspora.php, dfrn_confirm.php, profiles.php)
27  *              comment-import                  (in diaspora.php, items.php)
28  *              comment-new                             (in item.php)
29  *              drop                                    (in diaspora.php, items.php, photos.php)
30  *              edit_post                               (in item.php)
31  *              event                                   (in events.php)
32  *              expire                                  (in items.php)
33  *              like                                    (in like.php, poke.php)
34  *              mail                                    (in message.php)
35  *              suggest                                 (in fsuggest.php)
36  *              tag                                             (in photos.php, poke.php, tagger.php)
37  *              tgroup                                  (in items.php)
38  *              wall-new                                (in photos.php, item.php)
39  *              removeme                                (in Contact.php)
40  *              relocate                                (in uimport.php)
41  *
42  * and ITEM_ID is the id of the item in the database that needs to be sent to others.
43  */
44
45
46 function notifier_run(&$argv, &$argc){
47         global $a;
48
49         require_once 'include/datetime.php';
50         require_once 'include/items.php';
51         require_once 'include/bbcode.php';
52         require_once 'include/email.php';
53
54         if ($argc < 3) {
55                 return;
56         }
57
58         logger('notifier: invoked: ' . print_r($argv,true), LOGGER_DEBUG);
59
60         $cmd = $argv[1];
61
62         switch($cmd) {
63                 case 'mail':
64                 default:
65                         $item_id = intval($argv[2]);
66                         if (! $item_id) {
67                                 return;
68                         }
69                         break;
70         }
71
72         $expire = false;
73         $mail = false;
74         $fsuggest = false;
75         $relocate = false;
76         $top_level = false;
77         $recipients = array();
78         $url_recipients = array();
79
80         $normal_mode = true;
81
82         if ($cmd === 'mail') {
83                 $normal_mode = false;
84                 $mail = true;
85                 $message = q("SELECT * FROM `mail` WHERE `id` = %d LIMIT 1",
86                                 intval($item_id)
87                 );
88                 if (! count($message)) {
89                         return;
90                 }
91                 $uid = $message[0]['uid'];
92                 $recipients[] = $message[0]['contact-id'];
93                 $item = $message[0];
94
95         } elseif ($cmd === 'expire') {
96                 $normal_mode = false;
97                 $expire = true;
98                 $items = q("SELECT * FROM `item` WHERE `uid` = %d AND `wall` = 1
99                         AND `deleted` = 1 AND `changed` > UTC_TIMESTAMP() - INTERVAL 10 MINUTE",
100                         intval($item_id)
101                 );
102                 $uid = $item_id;
103                 $item_id = 0;
104                 if (! count($items)) {
105                         return;
106                 }
107         } elseif ($cmd === 'suggest') {
108                 $normal_mode = false;
109                 $fsuggest = true;
110
111                 $suggest = q("SELECT * FROM `fsuggest` WHERE `id` = %d LIMIT 1",
112                         intval($item_id)
113                 );
114                 if (! count($suggest)) {
115                         return;
116                 }
117                 $uid = $suggest[0]['uid'];
118                 $recipients[] = $suggest[0]['cid'];
119                 $item = $suggest[0];
120         } elseif ($cmd === 'removeme') {
121                 $r = q("SELECT `contact`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey`,
122                                 `user`.`timezone`, `user`.`nickname`, `user`.`sprvkey`, `user`.`spubkey`,
123                                 `user`.`page-flags`, `user`.`prvnets`, `user`.`account-type`, `user`.`guid`
124                         FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
125                                 WHERE `contact`.`uid` = %d AND `contact`.`self` LIMIT 1",
126                                 intval($item_id));
127                 if (!$r)
128                         return;
129
130                 $user = $r[0];
131
132                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` LIMIT 1", intval($item_id));
133                 if (!$r)
134                         return;
135
136                 $self = $r[0];
137
138                 $r = q("SELECT * FROM `contact` WHERE NOT `self` AND `uid` = %d", intval($item_id));
139                 if (!$r) {
140                         return;
141                 }
142                 require_once 'include/Contact.php';
143                 foreach ($r as $contact) {
144                         terminate_friendship($user, $self, $contact);
145                 }
146                 return;
147         } elseif ($cmd === 'relocate') {
148                 $normal_mode = false;
149                 $relocate = true;
150                 $uid = $item_id;
151
152                 $recipients_relocate = q("SELECT * FROM `contact` WHERE `uid` = %d AND NOT `self` AND `network` IN ('%s', '%s')",
153                                         intval($uid), NETWORK_DFRN, NETWORK_DIASPORA);
154         } else {
155                 // find ancestors
156                 $r = q("SELECT * FROM `item` WHERE `id` = %d AND visible = 1 AND moderated = 0 LIMIT 1",
157                         intval($item_id)
158                 );
159
160                 if ((! dbm::is_result($r)) || (! intval($r[0]['parent']))) {
161                         return;
162                 }
163
164                 $target_item = $r[0];
165                 $parent_id = intval($r[0]['parent']);
166                 $uid = $r[0]['uid'];
167                 $updated = $r[0]['edited'];
168
169                 $items = q("SELECT `item`.*, `sign`.`signed_text`,`sign`.`signature`,`sign`.`signer`
170                         FROM `item` LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id` WHERE `parent` = %d AND visible = 1 AND moderated = 0 ORDER BY `id` ASC",
171                         intval($parent_id)
172                 );
173
174                 if (! count($items)) {
175                         return;
176                 }
177
178                 // avoid race condition with deleting entries
179
180                 if ($items[0]['deleted']) {
181                         foreach ($items as $item) {
182                                 $item['deleted'] = 1;
183                         }
184                 }
185
186                 if ((count($items) == 1) && ($items[0]['id'] === $target_item['id']) && ($items[0]['uri'] === $items[0]['parent-uri'])) {
187                         logger('notifier: top level post');
188                         $top_level = true;
189                 }
190
191         }
192
193         $r = q("SELECT `contact`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey`,
194                 `user`.`timezone`, `user`.`nickname`, `user`.`sprvkey`, `user`.`spubkey`,
195                 `user`.`page-flags`, `user`.`prvnets`, `user`.`account-type`
196                 FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
197                 WHERE `contact`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1",
198                 intval($uid)
199         );
200
201         if (! dbm::is_result($r)) {
202                 return;
203         }
204
205         $owner = $r[0];
206
207         $walltowall = ((($top_level) && ($owner['id'] != $items[0]['contact-id'])) ? true : false);
208
209         // Should the post be transmitted to Diaspora?
210         $diaspora_delivery = true;
211
212         // If this is a public conversation, notify the feed hub
213         $public_message = true;
214
215         // Do a PuSH
216         $push_notify = false;
217
218         // Deliver directly to a forum, don't PuSH
219         $direct_forum_delivery = false;
220
221         // fill this in with a single salmon slap if applicable
222         $slap = '';
223
224         if (! ($mail || $fsuggest || $relocate)) {
225
226                 $slap = ostatus::salmon($target_item,$owner);
227
228                 require_once 'include/group.php';
229
230                 $parent = $items[0];
231
232                 $thr_parent = q("SELECT `network`, `author-link`, `owner-link` FROM `item` WHERE `uri` = '%s' AND `uid` = %d",
233                         dbesc($target_item["thr-parent"]), intval($target_item["uid"]));
234
235                 logger('GUID: '.$target_item["guid"].': Parent is '.$parent['network'].'. Thread parent is '.$thr_parent[0]['network'], LOGGER_DEBUG);
236
237                 // This is IMPORTANT!!!!
238
239                 // We will only send a "notify owner to relay" or followup message if the referenced post
240                 // originated on our system by virtue of having our hostname somewhere
241                 // in the URI, AND it was a comment (not top_level) AND the parent originated elsewhere.
242
243                 // if $parent['wall'] == 1 we will already have the parent message in our array
244                 // and we will relay the whole lot.
245
246                 // expire sends an entire group of expire messages and cannot be forwarded.
247                 // However the conversation owner will be a part of the conversation and will
248                 // be notified during this run.
249                 // Other DFRN conversation members will be alerted during polled updates.
250
251
252
253                 // Diaspora members currently are not notified of expirations, and other networks have
254                 // either limited or no ability to process deletions. We should at least fix Diaspora
255                 // by stringing togther an array of retractions and sending them onward.
256
257
258                 $localhost = str_replace('www.','',$a->get_hostname());
259                 if (strpos($localhost,':')) {
260                         $localhost = substr($localhost,0,strpos($localhost,':'));
261                 }
262                 /**
263                  *
264                  * Be VERY CAREFUL if you make any changes to the following several lines. Seemingly innocuous changes
265                  * have been known to cause runaway conditions which affected several servers, along with
266                  * permissions issues.
267                  *
268                  */
269
270                 $relay_to_owner = false;
271
272                 if (!$top_level && ($parent['wall'] == 0) && !$expire && (stristr($target_item['uri'],$localhost))) {
273                         $relay_to_owner = true;
274                 }
275
276
277                 if (($cmd === 'uplink') && (intval($parent['forum_mode']) == 1) && !$top_level) {
278                         $relay_to_owner = true;
279                 }
280
281                 // until the 'origin' flag has been in use for several months
282                 // we will just use it as a fallback test
283                 // later we will be able to use it as the primary test of whether or not to relay.
284
285                 if (! $target_item['origin']) {
286                         $relay_to_owner = false;
287                 }
288                 if ($parent['origin']) {
289                         $relay_to_owner = false;
290                 }
291
292                 // Special treatment for forum posts
293                 if (($target_item['author-link'] != $target_item['owner-link']) &&
294                         ($owner['id'] != $target_item['contact-id']) &&
295                         ($target_item['uri'] === $target_item['parent-uri'])) {
296
297                         $fields = array('forum', 'prv');
298                         $condition = array('id' => $target_item['contact-id']);
299                         $contact = dba::select('contact', $fields, $condition, array('limit' => 1));
300                         if (!dbm::is_result($contact)) {
301                                 // Should never happen
302                                 return false;
303                         }
304
305                         // Is the post from a forum?
306                         if ($contact['forum'] || $contact['prv']) {
307                                 $relay_to_owner = true;
308                                 $direct_forum_delivery = true;
309                         }
310                 }
311                 if ($relay_to_owner) {
312                         logger('notifier: followup '.$target_item["guid"], LOGGER_DEBUG);
313                         // local followup to remote post
314                         $followup = true;
315                         $public_message = false; // not public
316                         $conversant_str = dbesc($parent['contact-id']);
317                         $recipients = array($parent['contact-id']);
318                         $recipients_followup  = array($parent['contact-id']);
319
320                         //if (!$target_item['private'] && $target_item['wall'] &&
321                         if (!$target_item['private'] &&
322                                 (strlen($target_item['allow_cid'].$target_item['allow_gid'].
323                                         $target_item['deny_cid'].$target_item['deny_gid']) == 0))
324                                 $push_notify = true;
325
326                         if (($thr_parent && ($thr_parent[0]['network'] == NETWORK_OSTATUS)) || ($parent['network'] == NETWORK_OSTATUS)) {
327
328                                 $push_notify = true;
329
330                                 if ($parent["network"] == NETWORK_OSTATUS) {
331                                         // Distribute the message to the DFRN contacts as if this wasn't a followup since OStatus can't relay comments
332                                         // Currently it is work at progress
333                                         $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `network` = '%s' AND NOT `blocked` AND NOT `pending` AND NOT `archive`",
334                                                 intval($uid),
335                                                 dbesc(NETWORK_DFRN)
336                                         );
337                                         if (dbm::is_result($r)) {
338                                                 foreach ($r as $rr) {
339                                                         $recipients_followup[] = $rr['id'];
340                                                 }
341                                         }
342                                 }
343                         }
344
345                         if ($direct_forum_delivery) {
346                                 $push_notify = false;
347                         }
348
349                         logger("Notify ".$target_item["guid"]." via PuSH: ".($push_notify?"Yes":"No"), LOGGER_DEBUG);
350                 } else {
351                         $followup = false;
352
353                         logger('Distributing directly '.$target_item["guid"], LOGGER_DEBUG);
354
355                         // don't send deletions onward for other people's stuff
356
357                         if ($target_item['deleted'] && (! intval($target_item['wall']))) {
358                                 logger('notifier: ignoring delete notification for non-wall item');
359                                 return;
360                         }
361
362                         if ((strlen($parent['allow_cid']))
363                                 || (strlen($parent['allow_gid']))
364                                 || (strlen($parent['deny_cid']))
365                                 || (strlen($parent['deny_gid']))) {
366                                 $public_message = false; // private recipients, not public
367                         }
368
369                         $allow_people = expand_acl($parent['allow_cid']);
370                         $allow_groups = expand_groups(expand_acl($parent['allow_gid']),true);
371                         $deny_people  = expand_acl($parent['deny_cid']);
372                         $deny_groups  = expand_groups(expand_acl($parent['deny_gid']));
373
374                         // if our parent is a public forum (forum_mode == 1), uplink to the origional author causing
375                         // a delivery fork. private groups (forum_mode == 2) do not uplink
376
377                         if ((intval($parent['forum_mode']) == 1) && (! $top_level) && ($cmd !== 'uplink')) {
378                                 proc_run($a->queue['priority'], 'include/notifier.php', 'uplink', $item_id);
379                         }
380
381                         $conversants = array();
382
383                         foreach ($items as $item) {
384                                 $recipients[] = $item['contact-id'];
385                                 $conversants[] = $item['contact-id'];
386                                 // pull out additional tagged people to notify (if public message)
387                                 if ($public_message && strlen($item['inform'])) {
388                                         $people = explode(',',$item['inform']);
389                                         foreach ($people as $person) {
390                                                 if (substr($person,0,4) === 'cid:') {
391                                                         $recipients[] = intval(substr($person,4));
392                                                         $conversants[] = intval(substr($person,4));
393                                                 } else {
394                                                         $url_recipients[] = substr($person,4);
395                                                 }
396                                         }
397                                 }
398                         }
399
400                         if (count($url_recipients))
401                                 logger('notifier: '.$target_item["guid"].' url_recipients ' . print_r($url_recipients,true));
402
403                         $conversants = array_unique($conversants);
404
405
406                         $recipients = array_unique(array_merge($recipients,$allow_people,$allow_groups));
407                         $deny = array_unique(array_merge($deny_people,$deny_groups));
408                         $recipients = array_diff($recipients,$deny);
409
410                         $conversant_str = dbesc(implode(', ',$conversants));
411                 }
412
413                 // If the thread parent is OStatus then do some magic to distribute the messages.
414                 // We have not only to look at the parent, since it could be a Friendica thread.
415                 if (($thr_parent && ($thr_parent[0]['network'] == NETWORK_OSTATUS)) || ($parent['network'] == NETWORK_OSTATUS)) {
416
417                         $diaspora_delivery = false;
418
419                         logger('Some parent is OStatus for '.$target_item["guid"]." - Author: ".$thr_parent[0]['author-link']." - Owner: ".$thr_parent[0]['owner-link'], LOGGER_DEBUG);
420
421                         // Send a salmon to the parent author
422                         $r = q("SELECT `url`, `notify` FROM `contact` WHERE `nurl`='%s' AND `uid` IN (0, %d) AND `notify` != ''",
423                                 dbesc(normalise_link($thr_parent[0]['author-link'])),
424                                 intval($uid));
425                         if (dbm::is_result($r)) {
426                                 $probed_contact = $r[0];
427                         } else {
428                                 $probed_contact = probe_url($thr_parent[0]['author-link']);
429                         }
430
431                         if ($probed_contact["notify"] != "") {
432                                 logger('Notify parent author '.$probed_contact["url"].': '.$probed_contact["notify"]);
433                                 $url_recipients[$probed_contact["notify"]] = $probed_contact["notify"];
434                         }
435
436                         // Send a salmon to the parent owner
437                         $r = q("SELECT `url`, `notify` FROM `contact` WHERE `nurl`='%s' AND `uid` IN (0, %d) AND `notify` != ''",
438                                 dbesc(normalise_link($thr_parent[0]['owner-link'])),
439                                 intval($uid));
440                         if (dbm::is_result($r)) {
441                                 $probed_contact = $r[0];
442                         } else {
443                                 $probed_contact = probe_url($thr_parent[0]['owner-link']);
444                         }
445
446                         if ($probed_contact["notify"] != "") {
447                                 logger('Notify parent owner '.$probed_contact["url"].': '.$probed_contact["notify"]);
448                                 $url_recipients[$probed_contact["notify"]] = $probed_contact["notify"];
449                         }
450
451                         // Send a salmon notification to every person we mentioned in the post
452                         $arr = explode(',',$target_item['tag']);
453                         foreach ($arr as $x) {
454                                 //logger('Checking tag '.$x, LOGGER_DEBUG);
455                                 $matches = null;
456                                 if (preg_match('/@\[url=([^\]]*)\]/',$x,$matches)) {
457                                                 $probed_contact = probe_url($matches[1]);
458                                         if ($probed_contact["notify"] != "") {
459                                                 logger('Notify mentioned user '.$probed_contact["url"].': '.$probed_contact["notify"]);
460                                                 $url_recipients[$probed_contact["notify"]] = $probed_contact["notify"];
461                                         }
462                                 }
463                         }
464
465                         // It only makes sense to distribute answers to OStatus messages to Friendica and OStatus - but not Diaspora
466                         $sql_extra = " AND `network` IN ('".NETWORK_OSTATUS."', '".NETWORK_DFRN."')";
467                 } else {
468                         $sql_extra = " AND `network` IN ('".NETWORK_OSTATUS."', '".NETWORK_DFRN."', '".NETWORK_DIASPORA."', '".NETWORK_MAIL."', '".NETWORK_MAIL2."')";
469                 }
470         } else {
471                 $public_message = false;
472         }
473
474         // If this is a public message and pubmail is set on the parent, include all your email contacts
475
476         $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
477
478         if (! $mail_disabled) {
479                 if ((! strlen($target_item['allow_cid'])) && (! strlen($target_item['allow_gid']))
480                         && (! strlen($target_item['deny_cid'])) && (! strlen($target_item['deny_gid']))
481                         && (intval($target_item['pubmail']))) {
482                         $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `network` = '%s'",
483                                 intval($uid),
484                                 dbesc(NETWORK_MAIL)
485                         );
486                         if (dbm::is_result($r)) {
487                                 foreach ($r as $rr) {
488                                         $recipients[] = $rr['id'];
489                                 }
490                         }
491                 }
492         }
493
494         if ($followup) {
495                 $recip_str = implode(', ', $recipients_followup);
496         } else {
497                 $recip_str = implode(', ', $recipients);
498         }
499         if ($relocate) {
500                 $r = $recipients_relocate;
501         } else {
502                 $r = q("SELECT `id`, `url`, `network`, `self` FROM `contact`
503                         WHERE `id` IN (%s) AND NOT `blocked` AND NOT `pending` AND NOT `archive`".$sql_extra,
504                         dbesc($recip_str)
505                 );
506         }
507
508         // delivery loop
509
510         if (dbm::is_result($r)) {
511                 foreach ($r as $contact) {
512                         if ($contact['self']) {
513                                 continue;
514                         }
515                         logger("Deliver ".$target_item["guid"]." to ".$contact['url']." via network ".$contact['network'], LOGGER_DEBUG);
516
517                         proc_run(array('priority' => $a->queue['priority'], 'created' => $a->queue['created'], 'dont_fork' => true),
518                                         'include/delivery.php', $cmd, $item_id, (int)$contact['id']);
519                 }
520         }
521
522         // send salmon slaps to mentioned remote tags (@foo@example.com) in OStatus posts
523         // They are especially used for notifications to OStatus users that don't follow us.
524
525         if ($slap && count($url_recipients) && ($public_message || $push_notify) && $normal_mode) {
526                 if (!get_config('system','dfrn_only')) {
527                         foreach ($url_recipients as $url) {
528                                 if ($url) {
529                                         logger('notifier: urldelivery: ' . $url);
530                                         $deliver_status = slapper($owner,$url,$slap);
531                                         /// @TODO Redeliver/queue these items on failure, though there is no contact record
532                                 }
533                         }
534                 }
535         }
536
537
538         if ($public_message) {
539
540                 $r0 = array();
541                 $r1 = array();
542
543                 if ($diaspora_delivery) {
544                         if (!$followup) {
545                                 $r0 = Diaspora::relay_list();
546                         }
547
548                         $r1 = q("SELECT `batch`, ANY_VALUE(`id`) AS `id`, ANY_VALUE(`name`) AS `name`, ANY_VALUE(`network`) AS `network`
549                                 FROM `contact` WHERE `network` = '%s' AND `batch` != ''
550                                 AND `uid` = %d AND `rel` != %d AND NOT `blocked` AND NOT `pending` AND NOT `archive` GROUP BY `batch`",
551                                 dbesc(NETWORK_DIASPORA),
552                                 intval($owner['uid']),
553                                 intval(CONTACT_IS_SHARING)
554                         );
555                 }
556
557                 $r2 = q("SELECT `id`, `name`,`network` FROM `contact`
558                         WHERE `network` in ('%s', '%s') AND `uid` = %d AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND `rel` != %d",
559                         dbesc(NETWORK_DFRN),
560                         dbesc(NETWORK_MAIL2),
561                         intval($owner['uid']),
562                         intval(CONTACT_IS_SHARING)
563                 );
564
565                 $r = array_merge($r2,$r1,$r0);
566
567                 if (dbm::is_result($r)) {
568                         logger('pubdeliver '.$target_item["guid"].': '.print_r($r,true), LOGGER_DEBUG);
569
570                         foreach ($r as $rr) {
571
572                                 // except for Diaspora batch jobs
573                                 // Don't deliver to folks who have already been delivered to
574
575                                 if (($rr['network'] !== NETWORK_DIASPORA) && (in_array($rr['id'],$conversants))) {
576                                         logger('notifier: already delivered id=' . $rr['id']);
577                                         continue;
578                                 }
579
580                                 if ((! $mail) && (! $fsuggest) && (! $followup)) {
581                                         logger('notifier: delivery agent: '.$rr['name'].' '.$rr['id'].' '.$rr['network'].' '.$target_item["guid"]);
582                                         proc_run(array('priority' => $a->queue['priority'], 'created' => $a->queue['created'], 'dont_fork' => true),
583                                                         'include/delivery.php', $cmd, $item_id, (int)$rr['id']);
584                                 }
585                         }
586                 }
587
588                 $push_notify = true;
589
590         }
591
592         // Notify PuSH subscribers (Used for OStatus distribution of regular posts)
593         if ($push_notify) {
594                 // Set push flag for PuSH subscribers to this topic,
595                 // they will be notified in queue.php
596                 q("UPDATE `push_subscriber` SET `push` = 1 ".
597                   "WHERE `nickname` = '%s' AND `push` = 0", dbesc($owner['nickname']));
598
599                 logger('Activating internal PuSH for item '.$item_id, LOGGER_DEBUG);
600
601                 // Handling the pubsubhubbub requests
602                 proc_run(array('priority' => PRIORITY_HIGH, 'created' => $a->queue['created'], 'dont_fork' => true),
603                                 'include/pubsubpublish.php');
604         }
605
606         logger('notifier: calling hooks', LOGGER_DEBUG);
607
608         if ($normal_mode) {
609                 call_hooks('notifier_normal',$target_item);
610         }
611
612         call_hooks('notifier_end',$target_item);
613
614         return;
615 }