]> git.mxchange.org Git - friendica.git/blob - include/notifier.php
ensure D* photos only attached once
[friendica.git] / include / notifier.php
1 <?php
2
3 require_once("boot.php");
4
5 /*
6  * This file was at one time responsible for doing all deliveries, but this caused
7  * big problems on shared hosting systems, where the process might get killed by the 
8  * hosting provider and nothing would get delivered. 
9  * It now only delivers one message under certain cases, and invokes a queued
10  * delivery mechanism (include/deliver.php) to deliver individual contacts at 
11  * controlled intervals.
12  * This has a much better chance of surviving random processes getting killed
13  * by the hosting provider. 
14  * A lot of this code is duplicated in include/deliver.php until we have time to go back
15  * and re-structure the delivery procedure based on the obstacles that have been thrown at 
16  * us by hosting providers. 
17  */
18
19 function notifier_run($argv, $argc){
20         global $a, $db;
21
22         if(is_null($a)){
23                 $a = new App;
24         }
25   
26         if(is_null($db)) {
27                 @include(".htconfig.php");
28                 require_once("dba.php");
29                 $db = new dba($db_host, $db_user, $db_pass, $db_data);
30                         unset($db_host, $db_user, $db_pass, $db_data);
31         }
32
33         require_once("session.php");
34         require_once("datetime.php");
35         require_once('include/items.php');
36         require_once('include/bbcode.php');
37
38         load_config('config');
39         load_config('system');
40
41         load_hooks();
42
43         if($argc < 3)
44                 return;
45
46         $a->set_baseurl(get_config('system','url'));
47
48         logger('notifier: invoked: ' . print_r($argv,true));
49
50         $cmd = $argv[1];
51
52         switch($cmd) {
53                 case 'mail':
54                 default:
55                         $item_id = intval($argv[2]);
56                         if(! $item_id){
57                                 return;
58                         }
59                         break;
60         }
61
62         $expire = false;
63         $mail = false;
64         $fsuggest = false;
65         $top_level = false;
66         $recipients = array();
67         $url_recipients = array();
68
69         $normal_mode = true;
70
71         if($cmd === 'mail') {
72                 $normal_mode = false;
73                 $mail = true;
74                 $message = q("SELECT * FROM `mail` WHERE `id` = %d LIMIT 1",
75                                 intval($item_id)
76                 );
77                 if(! count($message)){
78                         return;
79                 }
80                 $uid = $message[0]['uid'];
81                 $recipients[] = $message[0]['contact-id'];
82                 $item = $message[0];
83
84         }
85         elseif($cmd === 'expire') {
86                 $normal_mode = false;
87                 $expire = true;
88                 $items = q("SELECT * FROM `item` WHERE `uid` = %d AND `wall` = 1 
89                         AND `deleted` = 1 AND `changed` > UTC_TIMESTAMP() - INTERVAL 10 MINUTE",
90                         intval($item_id)
91                 );
92                 $uid = $item_id;
93                 $item_id = 0;
94                 if(! count($items))
95                         return;
96         }
97         elseif($cmd === 'suggest') {
98                 $normal_mode = false;
99                 $fsuggest = true;
100
101                 $suggest = q("SELECT * FROM `fsuggest` WHERE `id` = %d LIMIT 1",
102                         intval($item_id)
103                 );
104                 if(! count($suggest))
105                         return;
106                 $uid = $suggest[0]['uid'];
107                 $recipients[] = $suggest[0]['cid'];
108                 $item = $suggest[0];
109         }
110         else {
111
112                 // find ancestors
113                 $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
114                         intval($item_id)
115                 );
116
117                 if((! count($r)) || (! intval($r[0]['parent']))) {
118                         return;
119                 }
120
121                 $target_item = $r[0];
122                 $parent_id = intval($r[0]['parent']);
123                 $uid = $r[0]['uid'];
124                 $updated = $r[0]['edited'];
125
126                 if(! $parent_id)
127                         return;
128
129                 $items = q("SELECT `item`.*, `sign`.`signed_text`,`sign`.`signature`,`sign`.`signer` 
130                         FROM `item` LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id` WHERE `parent` = %d ORDER BY `id` ASC",
131                         intval($parent_id)
132                 );
133
134                 if(! count($items)) {
135                         return;
136                 }
137
138                 // avoid race condition with deleting entries
139
140                 if($items[0]['deleted']) {
141                         foreach($items as $item)
142                                 $item['deleted'] = 1;
143                 }
144
145                 if((count($items) == 1) && ($items[0]['uri'] === $items[0]['parent-uri'])) {
146                         logger('notifier: top level post');
147                         $top_level = true;
148                 }
149
150         }
151
152         $r = q("SELECT `contact`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey`, 
153                 `user`.`timezone`, `user`.`nickname`, `user`.`sprvkey`, `user`.`spubkey`, 
154                 `user`.`page-flags`, `user`.`prvnets`
155                 FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid` 
156                 WHERE `contact`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1",
157                 intval($uid)
158         );
159
160         if(! count($r))
161                 return;
162
163         $owner = $r[0];
164
165         $walltowall = ((($top_level) && ($owner['id'] != $items[0]['contact-id'])) ? true : false);
166
167         $hub = get_config('system','huburl');
168
169         // If this is a public conversation, notify the feed hub
170         $public_message = true;
171
172         // fill this in with a single salmon slap if applicable
173         $slap = '';
174
175         if(! ($mail || $fsuggest)) {
176
177                 require_once('include/group.php');
178
179                 $parent = $items[0];
180
181                 // This is IMPORTANT!!!!
182
183                 // We will only send a "notify owner to relay" or followup message if the referenced post
184                 // originated on our system by virtue of having our hostname somewhere
185                 // in the URI, AND it was a comment (not top_level) AND the parent originated elsewhere.
186
187                 // if $parent['wall'] == 1 we will already have the parent message in our array
188                 // and we will relay the whole lot.
189  
190                 // expire sends an entire group of expire messages and cannot be forwarded.
191                 // However the conversation owner will be a part of the conversation and will 
192                 // be notified during this run.
193                 // Other DFRN conversation members will be alerted during polled updates.
194
195                 // Diaspora members currently are not notified of expirations, and other networks have
196                 // either limited or no ability to process deletions. We should at least fix Diaspora 
197                 // by stringing togther an array of retractions and sending them onward.
198                  
199         
200                 $localhost = $a->get_hostname();
201                 if(strpos($localhost,':'))
202                         $localhost = substr($localhost,0,strpos($localhost,':'));
203
204                 /**
205                  *
206                  * Be VERY CAREFUL if you make any changes to the following line. Seemingly innocuous changes 
207                  * have been known to cause runaway conditions which affected several servers, along with 
208                  * permissions issues. 
209                  *
210                  */
211  
212                 if((! $top_level) && ($parent['wall'] == 0) && (! $expire) && (stristr($target_item['uri'],$localhost))) {
213                         // local followup to remote post
214                         $followup = true;
215                         $public_message = false; // not public
216                         $conversant_str = dbesc($parent['contact-id']);
217                 }
218                 else {
219                         $followup = false;
220
221                         if((strlen($parent['allow_cid'])) 
222                                 || (strlen($parent['allow_gid'])) 
223                                 || (strlen($parent['deny_cid'])) 
224                                 || (strlen($parent['deny_gid']))) {
225                                 $public_message = false; // private recipients, not public
226                         }
227
228                         $allow_people = expand_acl($parent['allow_cid']);
229                         $allow_groups = expand_groups(expand_acl($parent['allow_gid']));
230                         $deny_people  = expand_acl($parent['deny_cid']);
231                         $deny_groups  = expand_groups(expand_acl($parent['deny_gid']));
232
233                         $conversants = array();
234
235                         foreach($items as $item) {
236                                 $recipients[] = $item['contact-id'];
237                                 $conversants[] = $item['contact-id'];
238                                 // pull out additional tagged people to notify (if public message)
239                                 if($public_message && strlen($item['inform'])) {
240                                         $people = explode(',',$item['inform']);
241                                         foreach($people as $person) {
242                                                 if(substr($person,0,4) === 'cid:') {
243                                                         $recipients[] = intval(substr($person,4));
244                                                         $conversants[] = intval(substr($person,4));
245                                                 }
246                                                 else {
247                                                         $url_recipients[] = substr($person,4);
248                                                 }
249                                         }
250                                 }
251                         }
252
253                         logger('notifier: url_recipients' . print_r($url_recipients,true));
254
255                         $conversants = array_unique($conversants);
256
257
258                         $recipients = array_unique(array_merge($recipients,$allow_people,$allow_groups));
259                         $deny = array_unique(array_merge($deny_people,$deny_groups));
260                         $recipients = array_diff($recipients,$deny);
261
262                         $conversant_str = dbesc(implode(', ',$conversants));
263                 }
264
265                 $r = q("SELECT * FROM `contact` WHERE `id` IN ( $conversant_str ) AND `blocked` = 0 AND `pending` = 0");
266
267                 if(count($r))
268                         $contacts = $r;
269         }
270
271         $feed_template = get_markup_template('atom_feed.tpl');
272         $mail_template = get_markup_template('atom_mail.tpl');
273
274         $atom = '';
275         $slaps = array();
276
277         $hubxml = feed_hublinks();
278
279         $birthday = feed_birthday($owner['uid'],$owner['timezone']);
280
281         if(strlen($birthday))
282                 $birthday = '<dfrn:birthday>' . xmlify($birthday) . '</dfrn:birthday>';
283
284         $atom .= replace_macros($feed_template, array(
285                         '$version'      => xmlify(FRIENDIKA_VERSION),
286                         '$feed_id'      => xmlify($a->get_baseurl() . '/profile/' . $owner['nickname'] ),
287                         '$feed_title'   => xmlify($owner['name']),
288                         '$feed_updated' => xmlify(datetime_convert('UTC', 'UTC', $updated . '+00:00' , ATOM_TIME)) ,
289                         '$hub'          => $hubxml,
290                         '$salmon'       => '',  // private feed, we don't use salmon here
291                         '$name'         => xmlify($owner['name']),
292                         '$profile_page' => xmlify($owner['url']),
293                         '$photo'        => xmlify($owner['photo']),
294                         '$thumb'        => xmlify($owner['thumb']),
295                         '$picdate'      => xmlify(datetime_convert('UTC','UTC',$owner['avatar-date'] . '+00:00' , ATOM_TIME)) ,
296                         '$uridate'      => xmlify(datetime_convert('UTC','UTC',$owner['uri-date']    . '+00:00' , ATOM_TIME)) ,
297                         '$namdate'      => xmlify(datetime_convert('UTC','UTC',$owner['name-date']   . '+00:00' , ATOM_TIME)) ,
298                         '$birthday'     => $birthday
299         ));
300
301         if($mail) {
302                 $public_message = false;  // mail is  not public
303
304                 $body = fix_private_photos($item['body'],$owner['uid']);
305
306                 $atom .= replace_macros($mail_template, array(
307                         '$name'         => xmlify($owner['name']),
308                         '$profile_page' => xmlify($owner['url']),
309                         '$thumb'        => xmlify($owner['thumb']),
310                         '$item_id'      => xmlify($item['uri']),
311                         '$subject'      => xmlify($item['title']),
312                         '$created'      => xmlify(datetime_convert('UTC', 'UTC', $item['created'] . '+00:00' , ATOM_TIME)),
313                         '$content'      => xmlify($body),
314                         '$parent_id'    => xmlify($item['parent-uri'])
315                 ));
316         }
317         elseif($fsuggest) {
318                 $public_message = false;  // suggestions are not public
319
320                 $sugg_template = get_markup_template('atom_suggest.tpl');
321
322                 $atom .= replace_macros($sugg_template, array(
323                         '$name'         => xmlify($item['name']),
324                         '$url'          => xmlify($item['url']),
325                         '$photo'        => xmlify($item['photo']),
326                         '$request'      => xmlify($item['request']),
327                         '$note'         => xmlify($item['note'])
328                 ));
329
330                 // We don't need this any more
331
332                 q("DELETE FROM `fsuggest` WHERE `id` = %d LIMIT 1",
333                         intval($item['id'])
334                 );
335
336         }
337         else {
338                 if($followup) {
339                         foreach($items as $item) {  // there is only one item
340                                 if(! $item['parent'])
341                                         continue;
342                                 if($item['id'] == $item_id) {
343                                         logger('notifier: followup: item: ' . print_r($item,true), LOGGER_DATA);
344                                         $slap  = atom_entry($item,'html',$owner,$owner,false);
345                                         $atom .= atom_entry($item,'text',$owner,$owner,false);
346                                 }
347                         }
348                 }
349                 else {
350                         foreach($items as $item) {
351
352                                 if(! $item['parent'])
353                                         continue;
354
355                                 // private emails may be in included in public conversations. Filter them.
356
357                                 if(($public_message) && $item['private'])
358                                         continue;
359
360                                 $contact = get_item_contact($item,$contacts);
361
362                                 if(! $contact)
363                                         continue;
364
365                                 if($normal_mode) {
366
367                                         // we only need the current item, but include the parent because without it
368                                         // older sites without a corresponding dfrn_notify change may do the wrong thing.
369
370                                     if($item_id == $item['id'] || $item['id'] == $item['parent'])
371                                                 $atom .= atom_entry($item,'text',$contact,$owner,true);
372                                 }
373                                 else
374                                         $atom .= atom_entry($item,'text',$contact,$owner,true);
375
376                                 if(($top_level) && ($public_message) && ($item['author-link'] === $item['owner-link']) && (! $expire)) 
377                                         $slaps[] = atom_entry($item,'html',$contact,$owner,true);
378                         }
379                 }
380         }
381         $atom .= '</feed>' . "\r\n";
382
383         logger('notifier: ' . $atom, LOGGER_DATA);
384
385         logger('notifier: slaps: ' . print_r($slaps,true), LOGGER_DATA);
386
387         // If this is a public message and pubmail is set on the parent, include all your email contacts
388
389         $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
390
391         if(! $mail_disabled) {
392                 if((! strlen($target_item['allow_cid'])) && (! strlen($target_item['allow_gid'])) 
393                         && (! strlen($target_item['deny_cid'])) && (! strlen($target_item['deny_gid'])) 
394                         && (intval($target_item['pubmail']))) {
395                         $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `network` = '%s'",
396                                 intval($uid),
397                                 dbesc(NETWORK_MAIL)
398                         );
399                         if(count($r)) {
400                                 foreach($r as $rr)
401                                         $recipients[] = $rr['id'];
402                         }
403                 }
404         }
405
406         if($followup)
407                 $recip_str = $parent['contact-id'];
408         else
409                 $recip_str = implode(', ', $recipients);
410
411         $r = q("SELECT * FROM `contact` WHERE `id` IN ( %s ) AND `blocked` = 0 AND `pending` = 0 ",
412                 dbesc($recip_str)
413         );
414
415
416         require_once('include/salmon.php');
417
418         $interval = ((get_config('system','delivery_interval') === false) ? 2 : intval(get_config('system','delivery_interval')));
419
420         // delivery loop
421
422         if(count($r)) {
423
424                 foreach($r as $contact) {
425                         if((! $mail) && (! $fsuggest) && (! $followup) && (! $contact['self'])) {
426                                 if(($contact['network'] === NETWORK_DIASPORA) && ($public_message))
427                                         continue;
428                                 q("insert into deliverq ( `cmd`,`item`,`contact` ) values ('%s', %d, %d )",
429                                         dbesc($cmd),
430                                         intval($item_id),
431                                         intval($contact['id'])
432                                 );
433                         }
434                 }
435
436                 foreach($r as $contact) {
437                         if($contact['self'])
438                                 continue;
439
440                         // potentially more than one recipient. Start a new process and space them out a bit.
441                         // we will deliver single recipient types of message and email receipients here. 
442
443                         if((! $mail) && (! $fsuggest) && (! $followup)) {
444                                 proc_run('php','include/delivery.php',$cmd,$item_id,$contact['id']);
445                                 if($interval)
446                                         @time_sleep_until(microtime(true) + (float) $interval);
447                                 continue;
448                         }
449
450                         $deliver_status = 0;
451
452                         logger("main delivery by notifier: followup=$followup mail=$mail fsuggest=$fsuggest");
453
454                         switch($contact['network']) {
455                                 case NETWORK_DFRN:
456                                         logger('notifier: dfrndelivery: ' . $contact['name']);
457                                         $deliver_status = dfrn_deliver($owner,$contact,$atom);
458
459                                         logger('notifier: dfrn_delivery returns ' . $deliver_status);
460         
461                                         if($deliver_status == (-1)) {
462                                                 logger('notifier: delivery failed: queuing message');
463                                                 // queue message for redelivery
464                                                 q("INSERT INTO `queue` ( `cid`, `created`, `last`, `content`)
465                                                         VALUES ( %d, '%s', '%s', '%s') ",
466                                                         intval($contact['id']),
467                                                         dbesc(datetime_convert()),
468                                                         dbesc(datetime_convert()),
469                                                         dbesc($atom)
470                                                 );
471                                         }
472                                         break;
473                                 case NETWORK_OSTATUS:
474
475                                         // Do not send to otatus if we are not configured to send to public networks
476                                         if($owner['prvnets'])
477                                                 break;
478                                         if(get_config('system','ostatus_disabled') || get_config('system','dfrn_only'))
479                                                 break;
480
481                                         if($followup && $contact['notify']) {
482                                                 logger('notifier: slapdelivery: ' . $contact['name']);
483                                                 $deliver_status = slapper($owner,$contact['notify'],$slap);
484
485                                                 if($deliver_status == (-1)) {
486                                                         // queue message for redelivery
487                                                         q("INSERT INTO `queue` ( `cid`, `created`, `last`, `content`)
488                                                                 VALUES ( %d, '%s', '%s', '%s') ",
489                                                                 intval($contact['id']),
490                                                                 dbesc(datetime_convert()),
491                                                                 dbesc(datetime_convert()),
492                                                                 dbesc($slap)
493                                                         );
494
495                                                 }
496                                         }
497                                         else {
498
499                                                 // only send salmon if public - e.g. if it's ok to notify
500                                                 // a public hub, it's ok to send a salmon
501
502                                                 if((count($slaps)) && ($public_message) && (! $expire)) {
503                                                         logger('notifier: slapdelivery: ' . $contact['name']);
504                                                         foreach($slaps as $slappy) {
505                                                                 if($contact['notify']) {
506                                                                         $deliver_status = slapper($owner,$contact['notify'],$slappy);
507                                                                         if($deliver_status == (-1)) {
508                                                                                 // queue message for redelivery
509                                                                                 q("INSERT INTO `queue` ( `cid`, `created`, `last`, `content`)
510                                                                                         VALUES ( %d, '%s', '%s', '%s') ",
511                                                                                         intval($contact['id']),
512                                                                                         dbesc(datetime_convert()),
513                                                                                         dbesc(datetime_convert()),
514                                                                                         dbesc($slappy)
515                                                                                 );                                                              
516                                                                         }
517                                                                 }
518                                                         }
519                                                 }
520                                         }
521                                         break;
522
523                                 case NETWORK_MAIL:
524                                                 
525                                         if(get_config('system','dfrn_only'))
526                                                 break;
527
528                                         // WARNING: does not currently convert to RFC2047 header encodings, etc.
529
530                                         $addr = $contact['addr'];
531                                         if(! strlen($addr))
532                                                 break;
533
534                                         if($cmd === 'wall-new' || $cmd === 'comment-new') {
535
536                                                 $it = null;
537                                                 if($cmd === 'wall-new') 
538                                                         $it = $items[0];
539                                                 else {
540                                                         $r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1", 
541                                                                 intval($argv[2]),
542                                                                 intval($uid)
543                                                         );
544                                                         if(count($r))
545                                                                 $it = $r[0];
546                                                 }
547                                                 if(! $it)
548                                                         break;
549                                                 
550
551
552                                                 $local_user = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
553                                                         intval($uid)
554                                                 );
555                                                 if(! count($local_user))
556                                                         break;
557                                                 
558                                                 $reply_to = '';
559                                                 $r1 = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
560                                                         intval($uid)
561                                                 );
562                                                 if($r1 && $r1[0]['reply_to'])
563                                                         $reply_to = $r1[0]['reply_to'];
564         
565                                                 $subject  = (($it['title']) ? $it['title'] : t("\x28no subject\x29")) ;
566                                                 $headers  = 'From: ' . $local_user[0]['username'] . ' <' . $local_user[0]['email'] . '>' . "\n";
567
568                                                 if($reply_to)
569                                                         $headers .= 'Reply-to: ' . $reply_to . "\n";
570
571                                                 $headers .= 'Message-id: <' . $it['uri'] . '>' . "\n";
572
573                                                 if($it['uri'] !== $it['parent-uri']) {
574                                                         $header .= 'References: <' . $it['parent-uri'] . '>' . "\n";
575                                                         if(! strlen($it['title'])) {
576                                                                 $r = q("SELECT `title` FROM `item` WHERE `parent-uri` = '%s' LIMIT 1",
577                                                                         dbesc($it['parent-uri'])
578                                                                 );
579                                                                 if(count($r)) {
580                                                                         $subtitle = $r[0]['title'];
581                                                                         if($subtitle) {
582                                                                                 if(strncasecmp($subtitle,'RE:',3))
583                                                                                         $subject = $subtitle;
584                                                                                 else
585                                                                                         $subject = 'Re: ' . $subtitle;
586                                                                         }
587                                                                 }
588                                                         }
589                                                 }
590
591                                                 $headers .= 'MIME-Version: 1.0' . "\n";
592                                                 $headers .= 'Content-Type: text/html; charset=UTF-8' . "\n";
593                                                 $headers .= 'Content-Transfer-Encoding: 8bit' . "\n\n";
594                                                 $html    = prepare_body($it);
595                                                 $message = '<html><body>' . $html . '</body></html>';
596                                                 logger('notifier: email delivery to ' . $addr);
597                                                 mail($addr, $subject, $message, $headers);
598                                         }
599                                         break;
600                                 case NETWORK_DIASPORA:
601                                         require_once('include/diaspora.php');
602
603                                         if(get_config('system','dfrn_only') || (! get_config('system','diaspora_enabled')) || (! $normal_mode))
604                                                 break;
605
606                                         // special handling for followup to public post
607                                         // all other public posts processed as public batches further below
608
609                                         if($public_message) {
610                                                 if($followup)
611                                                         diaspora_send_followup($target_item,$owner,$contact, true);
612                                                 break;
613                                         }
614
615                                         if(! $contact['pubkey'])
616                                                 break;
617                                         
618                                         if($target_item['verb'] === ACTIVITY_DISLIKE) {
619                                                 // unsupported
620                                                 break;
621                                         }
622                                         elseif(($target_item['deleted']) && ($target_item['verb'] !== ACTIVITY_LIKE)) {
623                                                 // diaspora delete, 
624                                                 diaspora_send_retraction($target_item,$owner,$contact);
625                                                 break;
626                                         }
627                                         elseif($followup) {
628                                                 // send comments, likes and retractions of likes to owner to relay
629                                                 diaspora_send_followup($target_item,$owner,$contact);
630                                                 break;
631                                         }
632                                         elseif($target_item['parent'] != $target_item['id']) {
633                                                 // we are the relay - send comments, likes and unlikes to our conversants
634                                                 diaspora_send_relay($target_item,$owner,$contact);
635                                                 break;
636                                         }               
637                                         elseif(($top_level) && (! $walltowall)) {
638                                                 // currently no workable solution for sending walltowall
639                                                 diaspora_send_status($target_item,$owner,$contact);
640                                                 break;
641                                         }
642
643                                         break;
644
645                                 case NETWORK_FEED:
646                                 case NETWORK_FACEBOOK:
647                                         if(get_config('system','dfrn_only'))
648                                                 break;
649                                 default:
650                                         break;
651                         }
652                 }
653         }
654                 
655         // send additional slaps to mentioned remote tags (@foo@example.com)
656
657         if($slap && count($url_recipients) && ($followup || $top_level) && $public_message && (! $expire)) {
658                 if(! get_config('system','dfrn_only')) {
659                         foreach($url_recipients as $url) {
660                                 if($url) {
661                                         logger('notifier: urldelivery: ' . $url);
662                                         $deliver_status = slapper($owner,$url,$slap);
663                                         // TODO: redeliver/queue these items on failure, though there is no contact record
664                                 }
665                         }
666                 }
667         }
668
669
670         if($public_message) {
671
672                 $r1 = q("SELECT DISTINCT(`batch`), `id`, `name`,`network` FROM `contact` WHERE `network` = '%s' 
673                         AND `uid` = %d AND `rel` != %d ORDER BY rand() ",
674                         dbesc(NETWORK_DIASPORA),
675                         intval($owner['uid']),
676                         intval(CONTACT_IS_SHARING)
677                 );
678                         
679                 $r2 = q("SELECT `id`, `name`,`network` FROM `contact` 
680                         WHERE `network` = '%s' AND `uid` = %d AND `blocked` = 0 AND `pending` = 0
681                         AND `rel` != %d order by rand() ",
682                         dbesc(NETWORK_DFRN),
683                         intval($owner['uid']),
684                         intval(CONTACT_IS_SHARING)
685                 );
686
687                 $r = array_merge($r2,$r1);
688
689                 if(count($r)) {
690                         logger('pubdeliver: ' . print_r($r,true), LOGGER_DEBUG);
691
692                         // throw everything into the queue in case we get killed
693
694                         foreach($r as $rr) {
695                                 if((! $mail) && (! $fsuggest) && (! $followup)) {
696                                         q("insert into deliverq ( `cmd`,`item`,`contact` ) values ('%s', %d, %d )",
697                                                 dbesc($cmd),
698                                                 intval($item_id),
699                                                 intval($rr['id'])
700                                         );
701                                 }
702                         }
703
704                         foreach($r as $rr) {
705
706                                 // except for Diaspora batch jobs
707                                 // Don't deliver to folks who have already been delivered to
708
709                                 if(($rr['network'] !== NETWORK_DIASPORA) && (in_array($rr['id'],$conversants))) {
710                                         logger('notifier: already delivered id=' . $rr['id']);
711                                         continue;
712                                 }
713
714                                 if((! $mail) && (! $fsuggest) && (! $followup)) {
715                                         logger('notifier: delivery agent: ' . $rr['name'] . ' ' . $rr['id']); 
716                                         proc_run('php','include/delivery.php',$cmd,$item_id,$rr['id']);
717                                         if($interval)
718                                                 @time_sleep_until(microtime(true) + (float) $interval);
719                                 }
720                         }
721                 }
722
723
724                 if(strlen($hub)) {
725                         $hubs = explode(',', $hub);
726                         if(count($hubs)) {
727                                 foreach($hubs as $h) {
728                                         $h = trim($h);
729                                         if(! strlen($h))
730                                                 continue;
731                                         $params = 'hub.mode=publish&hub.url=' . urlencode($a->get_baseurl() . '/dfrn_poll/' . $owner['nickname'] );
732                                         post_url($h,$params);
733                                         logger('pubsub: publish: ' . $h . ' ' . $params . ' returned ' . $a->get_curl_code());
734                                         if(count($hubs) > 1)
735                                                 sleep(7);                               // try and avoid multiple hubs responding at precisely the same time
736                                 }
737                         }
738                 }
739
740         }
741
742         return;
743 }
744
745 if (array_search(__file__,get_included_files())===0){
746   notifier_run($argv,$argc);
747   killme();
748 }