]> git.mxchange.org Git - friendica.git/blob - include/notifier.php
wrapping up 2019.12
[friendica.git] / include / notifier.php
1 <?php
2 require_once("boot.php");
3 require_once('include/queue_fn.php');
4 require_once('include/html2plain.php');
5 require_once("include/Scrape.php");
6 require_once('include/diaspora.php');
7 require_once("include/ostatus.php");
8
9 /*
10  * This file was at one time responsible for doing all deliveries, but this caused
11  * big problems on shared hosting systems, where the process might get killed by the
12  * hosting provider and nothing would get delivered.
13  * It now only delivers one message under certain cases, and invokes a queued
14  * delivery mechanism (include/deliver.php) to deliver individual contacts at
15  * controlled intervals.
16  * This has a much better chance of surviving random processes getting killed
17  * by the hosting provider.
18  * A lot of this code is duplicated in include/deliver.php until we have time to go back
19  * and re-structure the delivery procedure based on the obstacles that have been thrown at
20  * us by hosting providers.
21  */
22
23 /*
24  * The notifier is typically called with:
25  *
26  *              proc_run('php', "include/notifier.php", COMMAND, ITEM_ID);
27  *
28  * where COMMAND is one of the following:
29  *
30  *              activity                                (in diaspora.php, dfrn_confirm.php, profiles.php)
31  *              comment-import                  (in diaspora.php, items.php)
32  *              comment-new                             (in item.php)
33  *              drop                                    (in diaspora.php, items.php, photos.php)
34  *              edit_post                               (in item.php)
35  *              event                                   (in events.php)
36  *              expire                                  (in items.php)
37  *              like                                    (in like.php, poke.php)
38  *              mail                                    (in message.php)
39  *              suggest                                 (in fsuggest.php)
40  *              tag                                             (in photos.php, poke.php, tagger.php)
41  *              tgroup                                  (in items.php)
42  *              wall-new                                (in photos.php, item.php)
43  *              removeme                                (in Contact.php)
44  *              relocate                                (in uimport.php)
45  *
46  * and ITEM_ID is the id of the item in the database that needs to be sent to others.
47  */
48
49
50 function notifier_run(&$argv, &$argc){
51         global $a, $db;
52
53         if(is_null($a)){
54                 $a = new App;
55         }
56
57         if(is_null($db)) {
58                 @include(".htconfig.php");
59                 require_once("include/dba.php");
60                 $db = new dba($db_host, $db_user, $db_pass, $db_data);
61                         unset($db_host, $db_user, $db_pass, $db_data);
62         }
63
64         require_once("include/session.php");
65         require_once("include/datetime.php");
66         require_once('include/items.php');
67         require_once('include/bbcode.php');
68         require_once('include/email.php');
69         load_config('config');
70         load_config('system');
71
72         load_hooks();
73
74         if($argc < 3)
75                 return;
76
77         $a->set_baseurl(get_config('system','url'));
78
79         logger('notifier: invoked: ' . print_r($argv,true), LOGGER_DEBUG);
80
81         $cmd = $argv[1];
82
83         switch($cmd) {
84                 case 'mail':
85                 default:
86                         $item_id = intval($argv[2]);
87                         if(! $item_id){
88                                 return;
89                         }
90                         break;
91         }
92
93         $expire = false;
94         $mail = false;
95         $fsuggest = false;
96         $relocate = false;
97         $top_level = false;
98         $recipients = array();
99         $url_recipients = array();
100
101         $normal_mode = true;
102
103         if($cmd === 'mail') {
104                 $normal_mode = false;
105                 $mail = true;
106                 $message = q("SELECT * FROM `mail` WHERE `id` = %d LIMIT 1",
107                                 intval($item_id)
108                 );
109                 if(! count($message)){
110                         return;
111                 }
112                 $uid = $message[0]['uid'];
113                 $recipients[] = $message[0]['contact-id'];
114                 $item = $message[0];
115
116         }
117         elseif($cmd === 'expire') {
118                 $normal_mode = false;
119                 $expire = true;
120                 $items = q("SELECT * FROM `item` WHERE `uid` = %d AND `wall` = 1
121                         AND `deleted` = 1 AND `changed` > UTC_TIMESTAMP() - INTERVAL 10 MINUTE",
122                         intval($item_id)
123                 );
124                 $uid = $item_id;
125                 $item_id = 0;
126                 if(! count($items))
127                         return;
128         }
129         elseif($cmd === 'suggest') {
130                 $normal_mode = false;
131                 $fsuggest = true;
132
133                 $suggest = q("SELECT * FROM `fsuggest` WHERE `id` = %d LIMIT 1",
134                         intval($item_id)
135                 );
136                 if(! count($suggest))
137                         return;
138                 $uid = $suggest[0]['uid'];
139                 $recipients[] = $suggest[0]['cid'];
140                 $item = $suggest[0];
141         } elseif($cmd === 'removeme') {
142                 $r = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1", intval($item_id));
143                 if (! $r)
144                         return;
145
146                 $user = $r[0];
147                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `self` = 1 LIMIT 1", intval($item_id));
148                 if (! $r)
149                         return;
150
151                 $self = $r[0];
152                 $r = q("SELECT * FROM `contact` WHERE `self` = 0 AND `uid` = %d", intval($item_id));
153                 if(! $r)
154                         return;
155
156                 require_once('include/Contact.php');
157                 foreach($r as $contact) {
158                         terminate_friendship($user, $self, $contact);
159                 }
160                 return;
161         } elseif($cmd === 'relocate') {
162                 $normal_mode = false;
163                 $relocate = true;
164                 $uid = $item_id;
165         } else {
166                 // find ancestors
167                 $r = q("SELECT * FROM `item` WHERE `id` = %d and visible = 1 and moderated = 0 LIMIT 1",
168                         intval($item_id)
169                 );
170
171                 if((! count($r)) || (! intval($r[0]['parent']))) {
172                         return;
173                 }
174
175                 $target_item = $r[0];
176                 $parent_id = intval($r[0]['parent']);
177                 $uid = $r[0]['uid'];
178                 $updated = $r[0]['edited'];
179
180                 // POSSIBLE CLEANUP --> The following seems superfluous. We've already checked for "if (! intval($r[0]['parent']))" a few lines up
181                 if(! $parent_id)
182                         return;
183
184                 $items = q("SELECT `item`.*, `sign`.`signed_text`,`sign`.`signature`,`sign`.`signer`
185                         FROM `item` LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id` WHERE `parent` = %d and visible = 1 and moderated = 0 ORDER BY `id` ASC",
186                         intval($parent_id)
187                 );
188
189                 if(! count($items)) {
190                         return;
191                 }
192
193                 // avoid race condition with deleting entries
194
195                 if($items[0]['deleted']) {
196                         foreach($items as $item)
197                                 $item['deleted'] = 1;
198                 }
199
200                 if((count($items) == 1) && ($items[0]['id'] === $target_item['id']) && ($items[0]['uri'] === $items[0]['parent-uri'])) {
201                         logger('notifier: top level post');
202                         $top_level = true;
203                 }
204
205         }
206
207         $r = q("SELECT `contact`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey`,
208                 `user`.`timezone`, `user`.`nickname`, `user`.`sprvkey`, `user`.`spubkey`,
209                 `user`.`page-flags`, `user`.`prvnets`
210                 FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
211                 WHERE `contact`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1",
212                 intval($uid)
213         );
214
215         if(! count($r))
216                 return;
217
218         $owner = $r[0];
219
220         $walltowall = ((($top_level) && ($owner['id'] != $items[0]['contact-id'])) ? true : false);
221
222         $hub = get_config('system','huburl');
223
224         // If this is a public conversation, notify the feed hub
225         $public_message = true;
226
227         // Do a PuSH
228         $push_notify = false;
229
230         // fill this in with a single salmon slap if applicable
231         $slap = '';
232
233         if(! ($mail || $fsuggest || $relocate)) {
234
235                 require_once('include/group.php');
236
237                 $parent = $items[0];
238
239                 $thr_parent = q("SELECT `network` FROM `item` WHERE `uri` = '%s' AND `uid` = %d",
240                         dbesc($target_item["thr-parent"]), intval($target_item["uid"]));
241
242                 logger('Parent is '.$parent['network'].'. Thread parent is '.$thr_parent[0]['network'], LOGGER_DEBUG);
243
244                 // This is IMPORTANT!!!!
245
246                 // We will only send a "notify owner to relay" or followup message if the referenced post
247                 // originated on our system by virtue of having our hostname somewhere
248                 // in the URI, AND it was a comment (not top_level) AND the parent originated elsewhere.
249
250                 // if $parent['wall'] == 1 we will already have the parent message in our array
251                 // and we will relay the whole lot.
252
253                 // expire sends an entire group of expire messages and cannot be forwarded.
254                 // However the conversation owner will be a part of the conversation and will
255                 // be notified during this run.
256                 // Other DFRN conversation members will be alerted during polled updates.
257
258
259
260                 // Diaspora members currently are not notified of expirations, and other networks have
261                 // either limited or no ability to process deletions. We should at least fix Diaspora
262                 // by stringing togther an array of retractions and sending them onward.
263
264
265                 $localhost = str_replace('www.','',$a->get_hostname());
266                 if(strpos($localhost,':'))
267                         $localhost = substr($localhost,0,strpos($localhost,':'));
268
269                 /**
270                  *
271                  * Be VERY CAREFUL if you make any changes to the following several lines. Seemingly innocuous changes
272                  * have been known to cause runaway conditions which affected several servers, along with
273                  * permissions issues.
274                  *
275                  */
276
277                 $relay_to_owner = false;
278
279                 if((! $top_level) && ($parent['wall'] == 0) && (! $expire) && (stristr($target_item['uri'],$localhost))) {
280                         $relay_to_owner = true;
281                 }
282
283
284                 if(($cmd === 'uplink') && (intval($parent['forum_mode']) == 1) && (! $top_level)) {
285                         $relay_to_owner = true;
286                 }
287
288                 // until the 'origin' flag has been in use for several months
289                 // we will just use it as a fallback test
290                 // later we will be able to use it as the primary test of whether or not to relay.
291
292                 if(! $target_item['origin'])
293                         $relay_to_owner = false;
294
295                 if($parent['origin'])
296                         $relay_to_owner = false;
297
298                 if($relay_to_owner) {
299                         logger('notifier: followup '.$target_item["guid"], LOGGER_DEBUG);
300                         // local followup to remote post
301                         $followup = true;
302                         $public_message = false; // not public
303                         $conversant_str = dbesc($parent['contact-id']);
304                         $recipients = array($parent['contact-id']);
305
306                         if (!$target_item['private'] AND $target_item['wall'] AND
307                                 (strlen($target_item['allow_cid'].$target_item['allow_gid'].
308                                         $target_item['deny_cid'].$target_item['deny_gid']) == 0))
309                                 $push_notify = true;
310
311                         // We notify Friendica users in the thread when it is an OStatus thread.
312                         // Hopefully this transfers the messages to the other Friendica servers. (Untested)
313                         if (($thr_parent AND ($thr_parent[0]['network'] == NETWORK_OSTATUS)) OR ($parent['network'] == NETWORK_OSTATUS)) {
314
315                                 $push_notify = true;
316
317                                 if ($parent["network"] == NETWORK_OSTATUS) {
318                                         $r = q("SELECT `author-link` FROM `item` WHERE `parent` = %d AND `author-link` != '%s'",
319                                                 intval($target_item["parent"]), dbesc($owner['url']));
320                                         foreach($r as $parent_item) {
321                                                 $probed_contact = probe_url($parent_item["author-link"]);
322                                                 if (($probed_contact["notify"] != "") AND ($probed_contact["network"] == NETWORK_DFRN)) {
323                                                         logger('Notify Friendica user '.$probed_contact["url"].': '.$probed_contact["notify"]);
324                                                         $url_recipients[$probed_contact["notify"]] = $probed_contact["notify"];
325                                                 }
326                                         }
327                                 }
328
329                                 if (count($url_recipients))
330                                         logger("url_recipients ".print_r($url_recipients,true));
331                         }
332                 } else {
333                         $followup = false;
334
335                         logger('Distributing directly '.$target_item["guid"], LOGGER_DEBUG);
336
337                         // don't send deletions onward for other people's stuff
338
339                         if($target_item['deleted'] && (! intval($target_item['wall']))) {
340                                 logger('notifier: ignoring delete notification for non-wall item');
341                                 return;
342                         }
343
344                         if((strlen($parent['allow_cid']))
345                                 || (strlen($parent['allow_gid']))
346                                 || (strlen($parent['deny_cid']))
347                                 || (strlen($parent['deny_gid']))) {
348                                 $public_message = false; // private recipients, not public
349                         }
350
351                         $allow_people = expand_acl($parent['allow_cid']);
352                         $allow_groups = expand_groups(expand_acl($parent['allow_gid']),true);
353                         $deny_people  = expand_acl($parent['deny_cid']);
354                         $deny_groups  = expand_groups(expand_acl($parent['deny_gid']));
355
356                         // if our parent is a public forum (forum_mode == 1), uplink to the origional author causing
357                         // a delivery fork. private groups (forum_mode == 2) do not uplink
358
359                         if((intval($parent['forum_mode']) == 1) && (! $top_level) && ($cmd !== 'uplink')) {
360                                 proc_run('php','include/notifier.php','uplink',$item_id);
361                         }
362
363                         $conversants = array();
364
365                         foreach($items as $item) {
366                                 $recipients[] = $item['contact-id'];
367                                 $conversants[] = $item['contact-id'];
368                                 // pull out additional tagged people to notify (if public message)
369                                 if($public_message && strlen($item['inform'])) {
370                                         $people = explode(',',$item['inform']);
371                                         foreach($people as $person) {
372                                                 if(substr($person,0,4) === 'cid:') {
373                                                         $recipients[] = intval(substr($person,4));
374                                                         $conversants[] = intval(substr($person,4));
375                                                 }
376                                                 else {
377                                                         $url_recipients[] = substr($person,4);
378                                                 }
379                                         }
380                                 }
381                         }
382
383                         if (count($url_recipients))
384                                 logger('notifier: '.$target_item["guid"].' url_recipients ' . print_r($url_recipients,true));
385
386                         $conversants = array_unique($conversants);
387
388
389                         $recipients = array_unique(array_merge($recipients,$allow_people,$allow_groups));
390                         $deny = array_unique(array_merge($deny_people,$deny_groups));
391                         $recipients = array_diff($recipients,$deny);
392
393                         $conversant_str = dbesc(implode(', ',$conversants));
394                 }
395
396                 // If the thread parent is OStatus then do some magic to distribute the messages.
397                 // We have not only to look at the parent, since it could be a Friendica thread.
398                 if (($thr_parent AND ($thr_parent[0]['network'] == NETWORK_OSTATUS)) OR ($parent['network'] == NETWORK_OSTATUS)) {
399
400                         logger('Some parent is OStatus for '.$target_item["guid"], LOGGER_DEBUG);
401
402                         // Send a salmon notification to every person we mentioned in the post
403                         $arr = explode(',',$target_item['tag']);
404                         foreach($arr as $x) {
405                                 //logger('Checking tag '.$x, LOGGER_DEBUG);
406                                 $matches = null;
407                                 if(preg_match('/@\[url=([^\]]*)\]/',$x,$matches)) {
408                                                 $probed_contact = probe_url($matches[1]);
409                                         if ($probed_contact["notify"] != "") {
410                                                 logger('Notify mentioned user '.$probed_contact["url"].': '.$probed_contact["notify"]);
411                                                 $url_recipients[$probed_contact["notify"]] = $probed_contact["notify"];
412                                         }
413                                 }
414                         }
415
416                         // It only makes sense to distribute answers to OStatus messages to Friendica and OStatus - but not Diaspora
417                         $sql_extra = " AND `network` IN ('".NETWORK_OSTATUS."', '".NETWORK_DFRN."')";
418                 } else
419                         $sql_extra = "";
420
421                 $r = q("SELECT * FROM `contact` WHERE `id` IN ($conversant_str) AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0".$sql_extra);
422
423                 if(count($r))
424                         $contacts = $r;
425         }
426
427         $feed_template = get_markup_template('atom_feed.tpl');
428         $mail_template = get_markup_template('atom_mail.tpl');
429
430         $atom = '';
431         $slaps = array();
432
433         $hubxml = feed_hublinks();
434
435         $birthday = feed_birthday($owner['uid'],$owner['timezone']);
436
437         if(strlen($birthday))
438                 $birthday = '<dfrn:birthday>' . xmlify($birthday) . '</dfrn:birthday>';
439
440         $atom .= replace_macros($feed_template, array(
441                         '$version'      => xmlify(FRIENDICA_VERSION),
442                         '$feed_id'      => xmlify($a->get_baseurl() . '/profile/' . $owner['nickname'] ),
443                         '$feed_title'   => xmlify($owner['name']),
444                         '$feed_updated' => xmlify(datetime_convert('UTC', 'UTC', $updated . '+00:00' , ATOM_TIME)) ,
445                         '$hub'          => $hubxml,
446                         '$salmon'       => '',  // private feed, we don't use salmon here
447                         '$name'         => xmlify($owner['name']),
448                         '$profile_page' => xmlify($owner['url']),
449                         '$photo'        => xmlify($owner['photo']),
450                         '$thumb'        => xmlify($owner['thumb']),
451                         '$picdate'      => xmlify(datetime_convert('UTC','UTC',$owner['avatar-date'] . '+00:00' , ATOM_TIME)) ,
452                         '$uridate'      => xmlify(datetime_convert('UTC','UTC',$owner['uri-date']    . '+00:00' , ATOM_TIME)) ,
453                         '$namdate'      => xmlify(datetime_convert('UTC','UTC',$owner['name-date']   . '+00:00' , ATOM_TIME)) ,
454                         '$birthday'     => $birthday,
455                         '$community'    => (($owner['page-flags'] == PAGE_COMMUNITY) ? '<dfrn:community>1</dfrn:community>' : '')
456
457         ));
458
459         if($mail) {
460                 $public_message = false;  // mail is  not public
461
462                 $body = fix_private_photos($item['body'],$owner['uid'],null,$message[0]['contact-id']);
463
464                 $atom .= replace_macros($mail_template, array(
465                         '$name'         => xmlify($owner['name']),
466                         '$profile_page' => xmlify($owner['url']),
467                         '$thumb'        => xmlify($owner['thumb']),
468                         '$item_id'      => xmlify($item['uri']),
469                         '$subject'      => xmlify($item['title']),
470                         '$created'      => xmlify(datetime_convert('UTC', 'UTC', $item['created'] . '+00:00' , ATOM_TIME)),
471                         '$content'      => xmlify($body),
472                         '$parent_id'    => xmlify($item['parent-uri'])
473                 ));
474         } elseif($fsuggest) {
475                 $public_message = false;  // suggestions are not public
476
477                 $sugg_template = get_markup_template('atom_suggest.tpl');
478
479                 $atom .= replace_macros($sugg_template, array(
480                         '$name'         => xmlify($item['name']),
481                         '$url'          => xmlify($item['url']),
482                         '$photo'        => xmlify($item['photo']),
483                         '$request'      => xmlify($item['request']),
484                         '$note'         => xmlify($item['note'])
485                 ));
486
487                 // We don't need this any more
488
489                 q("DELETE FROM `fsuggest` WHERE `id` = %d LIMIT 1",
490                         intval($item['id'])
491                 );
492
493         } elseif($relocate) {
494                 $public_message = false;  // suggestions are not public
495
496                 $sugg_template = get_markup_template('atom_relocate.tpl');
497
498                 /* get site pubkey. this could be a new installation with no site keys*/
499                 $pubkey = get_config('system','site_pubkey');
500                 if(! $pubkey) {
501                         $res = new_keypair(1024);
502                         set_config('system','site_prvkey', $res['prvkey']);
503                         set_config('system','site_pubkey', $res['pubkey']);
504                 }
505
506                 $rp = q("SELECT `resource-id` , `scale`, type FROM `photo` 
507                                                 WHERE `profile` = 1 AND `uid` = %d ORDER BY scale;", $uid);
508                 $photos = array();
509                 $ext = Photo::supportedTypes();
510                 foreach($rp as $p){
511                         $photos[$p['scale']] = $a->get_baseurl().'/photo/'.$p['resource-id'].'-'.$p['scale'].'.'.$ext[$p['type']];
512                 }
513                 unset($rp, $ext);
514
515                 $atom .= replace_macros($sugg_template, array(
516                                         '$name' => xmlify($owner['name']),
517                                         '$photo' => xmlify($photos[4]),
518                                         '$thumb' => xmlify($photos[5]),
519                                         '$micro' => xmlify($photos[6]),
520                                         '$url' => xmlify($owner['url']),
521                                         '$request' => xmlify($owner['request']),
522                                         '$confirm' => xmlify($owner['confirm']),
523                                         '$notify' => xmlify($owner['notify']),
524                                         '$poll' => xmlify($owner['poll']),
525                                         '$sitepubkey' => xmlify(get_config('system','site_pubkey')),
526                                         //'$pubkey' => xmlify($owner['pubkey']),
527                                         //'$prvkey' => xmlify($owner['prvkey']),
528                         ));
529                 $recipients_relocate = q("SELECT * FROM contact WHERE uid = %d  AND self = 0 AND network = '%s'" , intval($uid), NETWORK_DFRN);
530                 unset($photos);
531         } else {
532
533                 $slap = ostatus_salmon($target_item,$owner);
534                 //$slap = atom_entry($target_item,'html',null,$owner,false);
535
536                 if($followup) {
537                         foreach($items as $item) {  // there is only one item
538                                 if(! $item['parent'])
539                                         continue;
540                                 if($item['id'] == $item_id) {
541                                         logger('notifier: followup: item: ' . print_r($item,true), LOGGER_DATA);
542                                         //$slap  = atom_entry($item,'html',null,$owner,false);
543                                         $atom .= atom_entry($item,'text',null,$owner,false);
544                                 }
545                         }
546                 } else {
547                         foreach($items as $item) {
548
549                                 if(! $item['parent'])
550                                         continue;
551
552                                 // private emails may be in included in public conversations. Filter them.
553
554                                 if(($public_message) && $item['private'] == 1)
555                                         continue;
556
557
558                                 $contact = get_item_contact($item,$contacts);
559
560                                 if(! $contact)
561                                         continue;
562
563                                 if($normal_mode) {
564
565                                         // we only need the current item, but include the parent because without it
566                                         // older sites without a corresponding dfrn_notify change may do the wrong thing.
567
568                                     if($item_id == $item['id'] || $item['id'] == $item['parent'])
569                                                 $atom .= atom_entry($item,'text',null,$owner,true);
570                                 } else
571                                         $atom .= atom_entry($item,'text',null,$owner,true);
572
573                                 if(($top_level) && ($public_message) && ($item['author-link'] === $item['owner-link']) && (! $expire))
574                                         $slaps[] = ostatus_salmon($item,$owner);
575                                         //$slaps[] = atom_entry($item,'html',null,$owner,true);
576                         }
577                 }
578         }
579         $atom .= '</feed>' . "\r\n";
580
581         logger('notifier: ' . $atom, LOGGER_DATA);
582
583         logger('notifier: slaps: ' . print_r($slaps,true), LOGGER_DATA);
584
585         // If this is a public message and pubmail is set on the parent, include all your email contacts
586
587         $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
588
589         if(! $mail_disabled) {
590                 if((! strlen($target_item['allow_cid'])) && (! strlen($target_item['allow_gid']))
591                         && (! strlen($target_item['deny_cid'])) && (! strlen($target_item['deny_gid']))
592                         && (intval($target_item['pubmail']))) {
593                         $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `network` = '%s'",
594                                 intval($uid),
595                                 dbesc(NETWORK_MAIL)
596                         );
597                         if(count($r)) {
598                                 foreach($r as $rr)
599                                         $recipients[] = $rr['id'];
600                         }
601                 }
602         }
603
604         if($followup)
605                 $recip_str = $parent['contact-id'];
606         else
607                 $recip_str = implode(', ', $recipients);
608
609         if ($relocate)
610                 $r = $recipients_relocate;
611         else
612                 $r = q("SELECT * FROM `contact` WHERE `id` IN ( %s ) AND `blocked` = 0 AND `pending` = 0 ",
613                         dbesc($recip_str)
614                 );
615
616
617         require_once('include/salmon.php');
618
619         $interval = ((get_config('system','delivery_interval') === false) ? 2 : intval(get_config('system','delivery_interval')));
620
621         // If we are using the worker we don't need a delivery interval
622         if (get_config("system", "worker"))
623                 $interval = false;
624
625         // delivery loop
626
627         if(count($r)) {
628
629                 foreach($r as $contact) {
630                         if((! $mail) && (! $fsuggest) && (! $followup) && (!$relocate) && (! $contact['self'])) {
631                                 if(($contact['network'] === NETWORK_DIASPORA) && ($public_message))
632                                         continue;
633                                 q("insert into deliverq ( `cmd`,`item`,`contact` ) values ('%s', %d, %d )",
634                                         dbesc($cmd),
635                                         intval($item_id),
636                                         intval($contact['id'])
637                                 );
638                         }
639                 }
640
641
642                 // This controls the number of deliveries to execute with each separate delivery process.
643                 // By default we'll perform one delivery per process. Assuming a hostile shared hosting
644                 // provider, this provides the greatest chance of deliveries if processes start getting
645                 // killed. We can also space them out with the delivery_interval to also help avoid them
646                 // getting whacked.
647
648                 // If $deliveries_per_process > 1, we will chain this number of multiple deliveries
649                 // together into a single process. This will reduce the overall number of processes
650                 // spawned for each delivery, but they will run longer.
651
652                 // When using the workerqueue, we don't need this functionality.
653
654                 $deliveries_per_process = intval(get_config('system','delivery_batch_count'));
655                 if (($deliveries_per_process <= 0) OR get_config("system", "worker"))
656                         $deliveries_per_process = 1;
657
658                 $this_batch = array();
659
660                 for($x = 0; $x < count($r); $x ++) {
661                         $contact = $r[$x];
662
663                         if($contact['self'])
664                                 continue;
665
666                         logger("Deliver ".$target_item["guid"]." to ".$contact['url'], LOGGER_DEBUG);
667
668                         // potentially more than one recipient. Start a new process and space them out a bit.
669                         // we will deliver single recipient types of message and email recipients here.
670
671                         if((! $mail) && (! $fsuggest) && (!$relocate) && (! $followup)) {
672
673                                 $this_batch[] = $contact['id'];
674
675                                 if(count($this_batch) == $deliveries_per_process) {
676                                         proc_run('php','include/delivery.php',$cmd,$item_id,$this_batch);
677                                         $this_batch = array();
678                                         if($interval)
679                                                 @time_sleep_until(microtime(true) + (float) $interval);
680                                 }
681                                 continue;
682                         }
683                         // be sure to pick up any stragglers
684                         if(count($this_batch))
685                                 proc_run('php','include/delivery.php',$cmd,$item_id,$this_batch);
686
687
688                         $deliver_status = 0;
689
690                         logger("main delivery by notifier: followup=$followup mail=$mail fsuggest=$fsuggest relocate=$relocate");
691
692                         switch($contact['network']) {
693                                 case NETWORK_DFRN:
694
695                                         // perform local delivery if we are on the same site
696
697                                         $basepath =  implode('/', array_slice(explode('/',$contact['url']),0,3));
698
699                                         if(link_compare($basepath,$a->get_baseurl())) {
700
701                                                 $nickname = basename($contact['url']);
702                                                 if($contact['issued-id'])
703                                                         $sql_extra = sprintf(" AND `dfrn-id` = '%s' ", dbesc($contact['issued-id']));
704                                                 else
705                                                         $sql_extra = sprintf(" AND `issued-id` = '%s' ", dbesc($contact['dfrn-id']));
706
707                                                 $x = q("SELECT  `contact`.*, `contact`.`uid` AS `importer_uid`,
708                                                         `contact`.`pubkey` AS `cpubkey`,
709                                                         `contact`.`prvkey` AS `cprvkey`,
710                                                         `contact`.`thumb` AS `thumb`,
711                                                         `contact`.`url` as `url`,
712                                                         `contact`.`name` as `senderName`,
713                                                         `user`.*
714                                                         FROM `contact`
715                                                         INNER JOIN `user` ON `contact`.`uid` = `user`.`uid`
716                                                         WHERE `contact`.`blocked` = 0 AND `contact`.`archive` = 0
717                                                         AND `contact`.`pending` = 0
718                                                         AND `contact`.`network` = '%s' AND `user`.`nickname` = '%s'
719                                                         $sql_extra
720                                                         AND `user`.`account_expired` = 0 AND `user`.`account_removed` = 0 LIMIT 1",
721                                                         dbesc(NETWORK_DFRN),
722                                                         dbesc($nickname)
723                                                 );
724
725                                                 if($x && count($x)) {
726                                                         $write_flag = ((($x[0]['rel']) && ($x[0]['rel'] != CONTACT_IS_SHARING)) ? true : false);
727                                                         if((($owner['page-flags'] == PAGE_COMMUNITY) || ($write_flag)) && (! $x[0]['writable'])) {
728                                                                 q("update contact set writable = 1 where id = %d",
729                                                                         intval($x[0]['id'])
730                                                                 );
731                                                                 $x[0]['writable'] = 1;
732                                                         }
733
734                                                         // if contact's ssl policy changed, which we just determined
735                                                         // is on our own server, update our contact links
736
737                                                         $ssl_policy = get_config('system','ssl_policy');
738                                                         fix_contact_ssl_policy($x[0],$ssl_policy);
739
740                                                         // If we are setup as a soapbox we aren't accepting top level posts from this person
741
742                                                         if (($x[0]['page-flags'] == PAGE_SOAPBOX) AND $top_level)
743                                                                 break;
744
745                                                         require_once('library/simplepie/simplepie.inc');
746                                                         logger('mod-delivery: local delivery');
747                                                         local_delivery($x[0],$atom);
748                                                         break;
749                                                 }
750                                         }
751
752                                         logger('notifier: dfrndelivery: ' . $contact['name']);
753                                         $deliver_status = dfrn_deliver($owner,$contact,$atom);
754
755                                         logger('notifier: dfrn_delivery returns ' . $deliver_status);
756
757                                         if($deliver_status == (-1)) {
758                                                 logger('notifier: delivery failed: queuing message');
759                                                 // queue message for redelivery
760                                                 add_to_queue($contact['id'],NETWORK_DFRN,$atom);
761                                         }
762                                         break;
763                                 case NETWORK_OSTATUS:
764
765                                         // Do not send to ostatus if we are not configured to send to public networks
766                                         if($owner['prvnets'])
767                                                 break;
768
769                                         if(get_config('system','ostatus_disabled') || get_config('system','dfrn_only'))
770                                                 break;
771
772                                         if($followup && $contact['notify']) {
773                                                 logger('slapdelivery followup item '.$item_id.' to ' . $contact['name']);
774                                                 $deliver_status = slapper($owner,$contact['notify'],$slap);
775
776                                                 if($deliver_status == (-1)) {
777                                                         // queue message for redelivery
778                                                         add_to_queue($contact['id'],NETWORK_OSTATUS,$slap);
779                                                 }
780                                         } else {
781
782                                                 // only send salmon if public - e.g. if it's ok to notify
783                                                 // a public hub, it's ok to send a salmon
784
785                                                 if((count($slaps)) && ($public_message) && (! $expire)) {
786                                                         logger('slapdelivery item '.$item_id.' to ' . $contact['name']);
787                                                         foreach($slaps as $slappy) {
788                                                                 if($contact['notify']) {
789                                                                         $deliver_status = slapper($owner,$contact['notify'],$slappy);
790                                                                         if($deliver_status == (-1)) {
791                                                                                 // queue message for redelivery
792                                                                                 add_to_queue($contact['id'],NETWORK_OSTATUS,$slappy);
793                                                                         }
794                                                                 }
795                                                         }
796                                                 }
797                                         }
798                                         break;
799
800                                 case NETWORK_MAIL:
801                                 case NETWORK_MAIL2:
802
803                                         if(get_config('system','dfrn_only'))
804                                                 break;
805
806                                         // WARNING: does not currently convert to RFC2047 header encodings, etc.
807
808                                         $addr = $contact['addr'];
809                                         if(! strlen($addr))
810                                                 break;
811
812                                         if($cmd === 'wall-new' || $cmd === 'comment-new') {
813
814                                                 $it = null;
815                                                 if($cmd === 'wall-new') 
816                                                         $it = $items[0];
817                                                 else {
818                                                         $r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1", 
819                                                                 intval($argv[2]),
820                                                                 intval($uid)
821                                                         );
822                                                         if(count($r))
823                                                                 $it = $r[0];
824                                                 }
825                                                 if(! $it)
826                                                         break;
827
828
829
830                                                 $local_user = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
831                                                         intval($uid)
832                                                 );
833                                                 if(! count($local_user))
834                                                         break;
835
836                                                 $reply_to = '';
837                                                 $r1 = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
838                                                         intval($uid)
839                                                 );
840                                                 if($r1 && $r1[0]['reply_to'])
841                                                         $reply_to = $r1[0]['reply_to'];
842
843                                                 $subject  = (($it['title']) ? email_header_encode($it['title'],'UTF-8') : t("\x28no subject\x29")) ;
844
845                                                 // only expose our real email address to true friends
846                                                 if(($contact['rel'] == CONTACT_IS_FRIEND) && (! $contact['blocked']))
847                                                         if($reply_to) {
848                                                                 $headers  = 'From: ' . email_header_encode($local_user[0]['username'],'UTF-8') . ' <' . $reply_to . '>' . "\n";
849                                                                 $headers .= 'Sender: '.$local_user[0]['email']."\n";
850                                                         } else
851                                                                 $headers  = 'From: ' . email_header_encode($local_user[0]['username'],'UTF-8') . ' <' . $local_user[0]['email'] . '>' . "\n";
852                                                 else
853                                                         $headers  = 'From: ' . email_header_encode($local_user[0]['username'],'UTF-8') . ' <' . t('noreply') . '@' . $a->get_hostname() . '>' . "\n";
854
855                                                 //if($reply_to)
856                                                 //      $headers .= 'Reply-to: ' . $reply_to . "\n";
857
858                                                 $headers .= 'Message-Id: <' . iri2msgid($it['uri']) . '>' . "\n";
859
860                                                 if($it['uri'] !== $it['parent-uri']) {
861                                                         $headers .= "References: <".iri2msgid($it["parent-uri"]).">";
862
863                                                         // If Threading is enabled, write down the correct parent
864                                                         if (($it["thr-parent"] != "") and ($it["thr-parent"] != $it["parent-uri"]))
865                                                                 $headers .= " <".iri2msgid($it["thr-parent"]).">";
866                                                         $headers .= "\n";
867
868                                                         if(!$it['title']) {
869                                                                 $r = q("SELECT `title` FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
870                                                                         dbesc($it['parent-uri']),
871                                                                         intval($uid));
872
873                                                                 if(count($r) AND ($r[0]['title'] != ''))
874                                                                         $subject = $r[0]['title'];
875                                                                 else {
876                                                                         $r = q("SELECT `title` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d LIMIT 1",
877                                                                                 dbesc($it['parent-uri']),
878                                                                                 intval($uid));
879
880                                                                         if(count($r) AND ($r[0]['title'] != ''))
881                                                                                 $subject = $r[0]['title'];
882                                                                 }
883                                                         }
884                                                         if(strncasecmp($subject,'RE:',3))
885                                                                 $subject = 'Re: '.$subject;
886                                                 }
887                                                 email_send($addr, $subject, $headers, $it);
888                                         }
889                                         break;
890                                 case NETWORK_DIASPORA:
891                                         if(get_config('system','dfrn_only') || (! get_config('system','diaspora_enabled')))
892                                                 break;
893
894                                         if($mail) {
895                                                 diaspora_send_mail($item,$owner,$contact);
896                                                 break;
897                                         }
898
899                                         if(! $normal_mode)
900                                                 break;
901
902                                         // special handling for followup to public post
903                                         // all other public posts processed as public batches further below
904
905                                         if($public_message) {
906                                                 if($followup)
907                                                         diaspora_send_followup($target_item,$owner,$contact, true);
908                                                 break;
909                                         }
910
911                                         if(! $contact['pubkey'])
912                                                 break;
913
914                                         $unsupported_activities = array(ACTIVITY_DISLIKE, ACTIVITY_ATTEND, ACTIVITY_ATTENDNO, ACTIVITY_ATTENDMAYBE);
915
916                                         //don't transmit activities which are not supported by diaspora
917                                         foreach($unsupported_activities as $act) {
918                                                 if(activity_match($target_item['verb'],$act)) {
919                                                         break 2;
920                                                 }
921                                         }
922
923                                         if(($target_item['deleted']) && (($target_item['uri'] === $target_item['parent-uri']) || $followup)) {
924                                                 // send both top-level retractions and relayable retractions for owner to relay
925                                                 diaspora_send_retraction($target_item,$owner,$contact);
926                                                 break;
927                                         }
928                                         elseif($followup) {
929                                                 // send comments and likes to owner to relay
930                                                 diaspora_send_followup($target_item,$owner,$contact);
931                                                 break;
932                                         }
933                                         elseif($target_item['uri'] !== $target_item['parent-uri']) {
934                                                 // we are the relay - send comments, likes and relayable_retractions
935                                                 // (of comments and likes) to our conversants
936                                                 diaspora_send_relay($target_item,$owner,$contact);
937                                                 break;
938                                         }
939                                         elseif(($top_level) && (! $walltowall)) {
940                                                 // currently no workable solution for sending walltowall
941                                                 diaspora_send_status($target_item,$owner,$contact);
942                                                 break;
943                                         }
944
945                                         break;
946
947                                 case NETWORK_FEED:
948                                 case NETWORK_FACEBOOK:
949                                         if(get_config('system','dfrn_only'))
950                                                 break;
951                                 case NETWORK_PUMPIO:
952                                         if(get_config('system','dfrn_only'))
953                                                 break;
954                                 default:
955                                         break;
956                         }
957                 }
958         }
959
960         // send additional slaps to mentioned remote tags (@foo@example.com)
961
962         //if($slap && count($url_recipients) && ($followup || $top_level) && ($public_message || $push_notify) && (! $expire)) {
963         if($slap && count($url_recipients) && ($public_message || $push_notify) && (!$expire)) {
964                 if(! get_config('system','dfrn_only')) {
965                         foreach($url_recipients as $url) {
966                                 if($url) {
967                                         logger('notifier: urldelivery: ' . $url);
968                                         $deliver_status = slapper($owner,$url,$slap);
969                                         // TODO: redeliver/queue these items on failure, though there is no contact record
970                                 }
971                         }
972                 }
973         }
974
975
976         if($public_message) {
977
978                 if (!$followup AND $top_level)
979                         $r0 = diaspora_fetch_relay();
980                 else
981                         $r0 = array();
982
983                 $r1 = q("SELECT DISTINCT(`batch`), `id`, `name`,`network` FROM `contact` WHERE `network` = '%s'
984                         AND `uid` = %d AND `rel` != %d group by `batch` ORDER BY rand() ",
985                         dbesc(NETWORK_DIASPORA),
986                         intval($owner['uid']),
987                         intval(CONTACT_IS_SHARING)
988                 );
989
990                 $r2 = q("SELECT `id`, `name`,`network` FROM `contact`
991                         WHERE `network` in ( '%s', '%s')  AND `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0
992                         AND `rel` != %d order by rand() ",
993                         dbesc(NETWORK_DFRN),
994                         dbesc(NETWORK_MAIL2),
995                         intval($owner['uid']),
996                         intval(CONTACT_IS_SHARING)
997                 );
998
999                 $r = array_merge($r2,$r1,$r0);
1000
1001                 if(count($r)) {
1002                         logger('pubdeliver: ' . print_r($r,true), LOGGER_DEBUG);
1003
1004                         // throw everything into the queue in case we get killed
1005
1006                         foreach($r as $rr) {
1007                                 if((! $mail) && (! $fsuggest) && (! $followup)) {
1008                                         q("insert into deliverq ( `cmd`,`item`,`contact` ) values ('%s', %d, %d )",
1009                                                 dbesc($cmd),
1010                                                 intval($item_id),
1011                                                 intval($rr['id'])
1012                                         );
1013                                 }
1014                         }
1015
1016                         foreach($r as $rr) {
1017
1018                                 // except for Diaspora batch jobs
1019                                 // Don't deliver to folks who have already been delivered to
1020
1021                                 if(($rr['network'] !== NETWORK_DIASPORA) && (in_array($rr['id'],$conversants))) {
1022                                         logger('notifier: already delivered id=' . $rr['id']);
1023                                         continue;
1024                                 }
1025
1026                                 if((! $mail) && (! $fsuggest) && (! $followup)) {
1027                                         logger('notifier: delivery agent: ' . $rr['name'] . ' ' . $rr['id']);
1028                                         proc_run('php','include/delivery.php',$cmd,$item_id,$rr['id']);
1029                                         if($interval)
1030                                                 @time_sleep_until(microtime(true) + (float) $interval);
1031                                 }
1032                         }
1033                 }
1034
1035                 $push_notify = true;
1036
1037         }
1038
1039
1040         if($push_notify AND strlen($hub)) {
1041                 $hubs = explode(',', $hub);
1042                 if(count($hubs)) {
1043                         foreach($hubs as $h) {
1044                                 $h = trim($h);
1045                                 if(! strlen($h))
1046                                         continue;
1047
1048                                 if ($h === '[internal]') {
1049                                         // Set push flag for PuSH subscribers to this topic,
1050                                         // they will be notified in queue.php
1051                                         q("UPDATE `push_subscriber` SET `push` = 1 " .
1052                                           "WHERE `nickname` = '%s'", dbesc($owner['nickname']));
1053
1054                                         logger('Activating internal PuSH for item '.$item_id, LOGGER_DEBUG);
1055
1056                                 } else {
1057
1058                                         $params = 'hub.mode=publish&hub.url=' . urlencode( $a->get_baseurl() . '/dfrn_poll/' . $owner['nickname'] );
1059                                         post_url($h,$params);
1060                                         logger('publish for item '.$item_id.' ' . $h . ' ' . $params . ' returned ' . $a->get_curl_code());
1061                                 }
1062                                 if(count($hubs) > 1)
1063                                         sleep(7);                               // try and avoid multiple hubs responding at precisely the same time
1064                         }
1065                 }
1066
1067                 // Handling the pubsubhubbub requests
1068                 proc_run('php','include/pubsubpublish.php');
1069         }
1070
1071         // If the item was deleted, clean up the `sign` table
1072         if($target_item['deleted']) {
1073                 $r = q("DELETE FROM sign where `retract_iid` = %d",
1074                         intval($target_item['id'])
1075                 );
1076         }
1077
1078         logger('notifier: calling hooks', LOGGER_DEBUG);
1079
1080         if($normal_mode)
1081                 call_hooks('notifier_normal',$target_item);
1082
1083         call_hooks('notifier_end',$target_item);
1084
1085         return;
1086 }
1087
1088
1089 if (array_search(__file__,get_included_files())===0){
1090         notifier_run($_SERVER["argv"],$_SERVER["argc"]);
1091         killme();
1092 }