3 require_once("boot.php");
6 * This file was at one time responsible for doing all deliveries, but this caused
7 * big problems on shared hosting systems, where the process might get killed by the
8 * hosting provider and nothing would get delivered.
9 * It now only delivers one message under certain cases, and invokes a queued
10 * delivery mechanism (include/deliver.php) to deliver individual contacts at
11 * controlled intervals.
12 * This has a much better chance of surviving random processes getting killed
13 * by the hosting provider.
14 * A lot of this code is duplicated in include/deliver.php until we have time to go back
15 * and re-structure the delivery procedure based on the obstacles that have been thrown at
16 * us by hosting providers.
19 function notifier_run($argv, $argc){
27 @include(".htconfig.php");
28 require_once("dba.php");
29 $db = new dba($db_host, $db_user, $db_pass, $db_data);
30 unset($db_host, $db_user, $db_pass, $db_data);
33 require_once("session.php");
34 require_once("datetime.php");
35 require_once('include/items.php');
36 require_once('include/bbcode.php');
38 load_config('config');
39 load_config('system');
46 $a->set_baseurl(get_config('system','url'));
48 logger('notifier: invoked: ' . print_r($argv,true));
55 $item_id = intval($argv[2]);
66 $recipients = array();
67 $url_recipients = array();
74 $message = q("SELECT * FROM `mail` WHERE `id` = %d LIMIT 1",
77 if(! count($message)){
80 $uid = $message[0]['uid'];
81 $recipients[] = $message[0]['contact-id'];
85 elseif($cmd === 'expire') {
88 $items = q("SELECT * FROM `item` WHERE `uid` = %d AND `wall` = 1
89 AND `deleted` = 1 AND `changed` > UTC_TIMESTAMP() - INTERVAL 10 MINUTE",
97 elseif($cmd === 'suggest') {
101 $suggest = q("SELECT * FROM `fsuggest` WHERE `id` = %d LIMIT 1",
104 if(! count($suggest))
106 $uid = $suggest[0]['uid'];
107 $recipients[] = $suggest[0]['cid'];
113 $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
117 if((! count($r)) || (! intval($r[0]['parent']))) {
121 $target_item = $r[0];
122 $parent_id = intval($r[0]['parent']);
124 $updated = $r[0]['edited'];
129 $items = q("SELECT `item`.*, `sign`.`signed_text`,`sign`.`signature`,`sign`.`signer`
130 FROM `item` LEFT JOIN `sign` ON `sign`.`iid` = `item`.`id` WHERE `parent` = %d ORDER BY `id` ASC",
134 if(! count($items)) {
138 // avoid race condition with deleting entries
140 if($items[0]['deleted']) {
141 foreach($items as $item)
142 $item['deleted'] = 1;
145 if((count($items) == 1) && ($items[0]['uri'] === $items[0]['parent-uri'])) {
146 logger('notifier: top level post');
152 $r = q("SELECT `contact`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey`,
153 `user`.`timezone`, `user`.`nickname`, `user`.`sprvkey`, `user`.`spubkey`,
154 `user`.`page-flags`, `user`.`prvnets`
155 FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid`
156 WHERE `contact`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1",
165 $walltowall = ((($top_level) && ($owner['id'] != $items[0]['contact-id'])) ? true : false);
167 $hub = get_config('system','huburl');
169 // If this is a public conversation, notify the feed hub
170 $public_message = true;
172 // fill this in with a single salmon slap if applicable
175 if(! ($mail || $fsuggest)) {
177 require_once('include/group.php');
181 // This is IMPORTANT!!!!
183 // We will only send a "notify owner to relay" or followup message if the referenced post
184 // originated on our system by virtue of having our hostname somewhere
185 // in the URI, AND it was a comment (not top_level) AND the parent originated elsewhere.
186 // if $parent['wall'] == 1 we will already have the parent message in our array
187 // and we will relay the whole lot.
189 // expire sends an entire group of expire messages and cannot be forwarded.
190 // However the conversation owner will be a part of the conversation and will
191 // be notified during this run.
192 // Other DFRN conversation members will be alerted during polled updates.
194 // Diaspora members currently are not notified of expirations, and other networks have
195 // either limited or no ability to process deletions. We should at least fix Diaspora
196 // by stringing togther an array of retractions and sending them onward.
199 $localhost = $a->get_hostname();
200 if(strpos($localhost,':'))
201 $localhost = substr($localhost,0,strpos($localhost,':'));
205 * Be VERY CAREFUL if you make any changes to the following line. Seemingly innocuous changes
206 * have been known to cause runaway conditions which affected several servers, along with
207 * permissions issues.
211 if((! $top_level) && ($parent['wall'] == 0) && (! $expire) && (stristr($target_item['uri'],$localhost))) {
212 // local followup to remote post
214 $public_message = false; // not public
215 $conversant_str = dbesc($parent['contact-id']);
220 if((strlen($parent['allow_cid']))
221 || (strlen($parent['allow_gid']))
222 || (strlen($parent['deny_cid']))
223 || (strlen($parent['deny_gid']))) {
224 $public_message = false; // private recipients, not public
227 $allow_people = expand_acl($parent['allow_cid']);
228 $allow_groups = expand_groups(expand_acl($parent['allow_gid']));
229 $deny_people = expand_acl($parent['deny_cid']);
230 $deny_groups = expand_groups(expand_acl($parent['deny_gid']));
232 $conversants = array();
234 foreach($items as $item) {
235 $recipients[] = $item['contact-id'];
236 $conversants[] = $item['contact-id'];
237 // pull out additional tagged people to notify (if public message)
238 if($public_message && strlen($item['inform'])) {
239 $people = explode(',',$item['inform']);
240 foreach($people as $person) {
241 if(substr($person,0,4) === 'cid:') {
242 $recipients[] = intval(substr($person,4));
243 $conversants[] = intval(substr($person,4));
246 $url_recipients[] = substr($person,4);
252 logger('notifier: url_recipients' . print_r($url_recipients,true));
254 $conversants = array_unique($conversants);
257 $recipients = array_unique(array_merge($recipients,$allow_people,$allow_groups));
258 $deny = array_unique(array_merge($deny_people,$deny_groups));
259 $recipients = array_diff($recipients,$deny);
261 $conversant_str = dbesc(implode(', ',$conversants));
264 $r = q("SELECT * FROM `contact` WHERE `id` IN ( $conversant_str ) AND `blocked` = 0 AND `pending` = 0");
270 $feed_template = get_markup_template('atom_feed.tpl');
271 $mail_template = get_markup_template('atom_mail.tpl');
276 $hubxml = feed_hublinks();
278 $birthday = feed_birthday($owner['uid'],$owner['timezone']);
280 if(strlen($birthday))
281 $birthday = '<dfrn:birthday>' . xmlify($birthday) . '</dfrn:birthday>';
283 $atom .= replace_macros($feed_template, array(
284 '$version' => xmlify(FRIENDIKA_VERSION),
285 '$feed_id' => xmlify($a->get_baseurl() . '/profile/' . $owner['nickname'] ),
286 '$feed_title' => xmlify($owner['name']),
287 '$feed_updated' => xmlify(datetime_convert('UTC', 'UTC', $updated . '+00:00' , ATOM_TIME)) ,
289 '$salmon' => '', // private feed, we don't use salmon here
290 '$name' => xmlify($owner['name']),
291 '$profile_page' => xmlify($owner['url']),
292 '$photo' => xmlify($owner['photo']),
293 '$thumb' => xmlify($owner['thumb']),
294 '$picdate' => xmlify(datetime_convert('UTC','UTC',$owner['avatar-date'] . '+00:00' , ATOM_TIME)) ,
295 '$uridate' => xmlify(datetime_convert('UTC','UTC',$owner['uri-date'] . '+00:00' , ATOM_TIME)) ,
296 '$namdate' => xmlify(datetime_convert('UTC','UTC',$owner['name-date'] . '+00:00' , ATOM_TIME)) ,
297 '$birthday' => $birthday
301 $public_message = false; // mail is not public
303 $body = fix_private_photos($item['body'],$owner['uid']);
305 $atom .= replace_macros($mail_template, array(
306 '$name' => xmlify($owner['name']),
307 '$profile_page' => xmlify($owner['url']),
308 '$thumb' => xmlify($owner['thumb']),
309 '$item_id' => xmlify($item['uri']),
310 '$subject' => xmlify($item['title']),
311 '$created' => xmlify(datetime_convert('UTC', 'UTC', $item['created'] . '+00:00' , ATOM_TIME)),
312 '$content' => xmlify($body),
313 '$parent_id' => xmlify($item['parent-uri'])
317 $public_message = false; // suggestions are not public
319 $sugg_template = get_markup_template('atom_suggest.tpl');
321 $atom .= replace_macros($sugg_template, array(
322 '$name' => xmlify($item['name']),
323 '$url' => xmlify($item['url']),
324 '$photo' => xmlify($item['photo']),
325 '$request' => xmlify($item['request']),
326 '$note' => xmlify($item['note'])
329 // We don't need this any more
331 q("DELETE FROM `fsuggest` WHERE `id` = %d LIMIT 1",
338 foreach($items as $item) { // there is only one item
339 if(! $item['parent'])
341 if($item['id'] == $item_id) {
342 logger('notifier: followup: item: ' . print_r($item,true), LOGGER_DATA);
343 $slap = atom_entry($item,'html',$owner,$owner,false);
344 $atom .= atom_entry($item,'text',$owner,$owner,false);
349 foreach($items as $item) {
351 if(! $item['parent'])
354 // private emails may be in included in public conversations. Filter them.
356 if(($public_message) && $item['private'])
359 $contact = get_item_contact($item,$contacts);
363 $atom .= atom_entry($item,'text',$contact,$owner,true);
365 if(($top_level) && ($public_message) && ($item['author-link'] === $item['owner-link']) && (! $expire))
366 $slaps[] = atom_entry($item,'html',$contact,$owner,true);
370 $atom .= '</feed>' . "\r\n";
372 logger('notifier: ' . $atom, LOGGER_DATA);
374 logger('notifier: slaps: ' . print_r($slaps,true), LOGGER_DATA);
376 // If this is a public message and pubmail is set on the parent, include all your email contacts
378 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
380 if(! $mail_disabled) {
381 if((! strlen($target_item['allow_cid'])) && (! strlen($target_item['allow_gid']))
382 && (! strlen($target_item['deny_cid'])) && (! strlen($target_item['deny_gid']))
383 && (intval($target_item['pubmail']))) {
384 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `network` = '%s'",
390 $recipients[] = $rr['id'];
396 $recip_str = $parent['contact-id'];
398 $recip_str = implode(', ', $recipients);
400 $r = q("SELECT * FROM `contact` WHERE `id` IN ( %s ) AND `blocked` = 0 AND `pending` = 0 ",
405 require_once('include/salmon.php');
407 $interval = ((get_config('system','delivery_interval') === false) ? 2 : intval(get_config('system','delivery_interval')));
413 foreach($r as $contact) {
414 if((! $mail) && (! $fsuggest) && (! $followup) && (! $contact['self'])) {
415 if(($contact['network'] === NETWORK_DIASPORA) && ($public_message))
417 q("insert into deliverq ( `cmd`,`item`,`contact` ) values ('%s', %d, %d )",
420 intval($contact['id'])
425 foreach($r as $contact) {
429 // potentially more than one recipient. Start a new process and space them out a bit.
430 // we will deliver single recipient types of message and email receipients here.
432 if((! $mail) && (! $fsuggest) && (! $followup)) {
433 proc_run('php','include/delivery.php',$cmd,$item_id,$contact['id']);
435 @time_sleep_until(microtime(true) + (float) $interval);
441 logger("main delivery by notifier: followup=$followup mail=$mail fsuggest=$fsuggest");
443 switch($contact['network']) {
445 logger('notifier: dfrndelivery: ' . $contact['name']);
446 $deliver_status = dfrn_deliver($owner,$contact,$atom);
448 logger('notifier: dfrn_delivery returns ' . $deliver_status);
450 if($deliver_status == (-1)) {
451 logger('notifier: delivery failed: queuing message');
452 // queue message for redelivery
453 q("INSERT INTO `queue` ( `cid`, `created`, `last`, `content`)
454 VALUES ( %d, '%s', '%s', '%s') ",
455 intval($contact['id']),
456 dbesc(datetime_convert()),
457 dbesc(datetime_convert()),
462 case NETWORK_OSTATUS:
464 // Do not send to otatus if we are not configured to send to public networks
465 if($owner['prvnets'])
467 if(get_config('system','ostatus_disabled') || get_config('system','dfrn_only'))
470 if($followup && $contact['notify']) {
471 logger('notifier: slapdelivery: ' . $contact['name']);
472 $deliver_status = slapper($owner,$contact['notify'],$slap);
474 if($deliver_status == (-1)) {
475 // queue message for redelivery
476 q("INSERT INTO `queue` ( `cid`, `created`, `last`, `content`)
477 VALUES ( %d, '%s', '%s', '%s') ",
478 intval($contact['id']),
479 dbesc(datetime_convert()),
480 dbesc(datetime_convert()),
488 // only send salmon if public - e.g. if it's ok to notify
489 // a public hub, it's ok to send a salmon
491 if((count($slaps)) && ($public_message) && (! $expire)) {
492 logger('notifier: slapdelivery: ' . $contact['name']);
493 foreach($slaps as $slappy) {
494 if($contact['notify']) {
495 $deliver_status = slapper($owner,$contact['notify'],$slappy);
496 if($deliver_status == (-1)) {
497 // queue message for redelivery
498 q("INSERT INTO `queue` ( `cid`, `created`, `last`, `content`)
499 VALUES ( %d, '%s', '%s', '%s') ",
500 intval($contact['id']),
501 dbesc(datetime_convert()),
502 dbesc(datetime_convert()),
514 if(get_config('system','dfrn_only'))
517 // WARNING: does not currently convert to RFC2047 header encodings, etc.
519 $addr = $contact['addr'];
523 if($cmd === 'wall-new' || $cmd === 'comment-new') {
526 if($cmd === 'wall-new')
529 $r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
541 $local_user = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
544 if(! count($local_user))
548 $r1 = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
551 if($r1 && $r1[0]['reply_to'])
552 $reply_to = $r1[0]['reply_to'];
554 $subject = (($it['title']) ? $it['title'] : t("\x28no subject\x29")) ;
555 $headers = 'From: ' . $local_user[0]['username'] . ' <' . $local_user[0]['email'] . '>' . "\n";
558 $headers .= 'Reply-to: ' . $reply_to . "\n";
560 $headers .= 'Message-id: <' . $it['uri'] . '>' . "\n";
562 if($it['uri'] !== $it['parent-uri']) {
563 $header .= 'References: <' . $it['parent-uri'] . '>' . "\n";
564 if(! strlen($it['title'])) {
565 $r = q("SELECT `title` FROM `item` WHERE `parent-uri` = '%s' LIMIT 1",
566 dbesc($it['parent-uri'])
569 $subtitle = $r[0]['title'];
571 if(strncasecmp($subtitle,'RE:',3))
572 $subject = $subtitle;
574 $subject = 'Re: ' . $subtitle;
580 $headers .= 'MIME-Version: 1.0' . "\n";
581 $headers .= 'Content-Type: text/html; charset=UTF-8' . "\n";
582 $headers .= 'Content-Transfer-Encoding: 8bit' . "\n\n";
583 $html = prepare_body($it);
584 $message = '<html><body>' . $html . '</body></html>';
585 logger('notifier: email delivery to ' . $addr);
586 mail($addr, $subject, $message, $headers);
589 case NETWORK_DIASPORA:
590 require_once('include/diaspora.php');
592 if(get_config('system','dfrn_only') || (! get_config('system','diaspora_enabled')) || (! $normal_mode))
595 // special handling for followup to public post
596 // all other public posts processed as public batches further below
598 if($public_message) {
600 diaspora_send_followup($target_item,$owner,$contact, true);
604 if(! $contact['pubkey'])
607 if($target_item['verb'] === ACTIVITY_DISLIKE) {
611 elseif(($target_item['deleted']) && ($target_item['verb'] !== ACTIVITY_LIKE)) {
613 diaspora_send_retraction($target_item,$owner,$contact);
617 // send comments, likes and retractions of likes to owner to relay
618 diaspora_send_followup($target_item,$owner,$contact);
621 elseif($target_item['parent'] != $target_item['id']) {
622 // we are the relay - send comments, likes and unlikes to our conversants
623 diaspora_send_relay($target_item,$owner,$contact);
626 elseif(($top_level) && (! $walltowall)) {
627 // currently no workable solution for sending walltowall
628 diaspora_send_status($target_item,$owner,$contact);
635 case NETWORK_FACEBOOK:
636 if(get_config('system','dfrn_only'))
644 // send additional slaps to mentioned remote tags (@foo@example.com)
646 if($slap && count($url_recipients) && ($followup || $top_level) && $public_message && (! $expire)) {
647 if(! get_config('system','dfrn_only')) {
648 foreach($url_recipients as $url) {
650 logger('notifier: urldelivery: ' . $url);
651 $deliver_status = slapper($owner,$url,$slap);
652 // TODO: redeliver/queue these items on failure, though there is no contact record
659 if($public_message) {
661 $r1 = q("SELECT DISTINCT(`batch`), `id`, `name`,`network` FROM `contact` WHERE `network` = '%s'
662 AND `uid` = %d AND `rel` != %d ORDER BY rand() ",
663 dbesc(NETWORK_DIASPORA),
664 intval($owner['uid']),
665 intval(CONTACT_IS_SHARING)
668 $r2 = q("SELECT `id`, `name`,`network` FROM `contact`
669 WHERE `network` = '%s' AND `uid` = %d AND `blocked` = 0 AND `pending` = 0
670 AND `rel` != %d order by rand() ",
672 intval($owner['uid']),
673 intval(CONTACT_IS_SHARING)
676 $r = array_merge($r2,$r1);
679 logger('pubdeliver: ' . print_r($r,true), LOGGER_DEBUG);
681 // throw everything into the queue in case we get killed
684 if((! $mail) && (! $fsuggest) && (! $followup)) {
685 q("insert into deliverq ( `cmd`,`item`,`contact` ) values ('%s', %d, %d )",
695 // except for Diaspora batch jobs
696 // Don't deliver to folks who have already been delivered to
698 if(($rr['network'] !== NETWORK_DIASPORA) && (in_array($rr['id'],$conversants))) {
699 logger('notifier: already delivered id=' . $rr['id']);
703 if((! $mail) && (! $fsuggest) && (! $followup)) {
704 logger('notifier: delivery agent: ' . $rr['name'] . ' ' . $rr['id']);
705 proc_run('php','include/delivery.php',$cmd,$item_id,$rr['id']);
707 @time_sleep_until(microtime(true) + (float) $interval);
714 $hubs = explode(',', $hub);
716 foreach($hubs as $h) {
720 $params = 'hub.mode=publish&hub.url=' . urlencode($a->get_baseurl() . '/dfrn_poll/' . $owner['nickname'] );
721 post_url($h,$params);
722 logger('pubsub: publish: ' . $h . ' ' . $params . ' returned ' . $a->get_curl_code());
724 sleep(7); // try and avoid multiple hubs responding at precisely the same time
734 if (array_search(__file__,get_included_files())===0){
735 notifier_run($argv,$argc);