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