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