2 require_once("boot.php");
4 function notifier_run($argv, $argc){
12 @include(".htconfig.php");
13 require_once("dba.php");
14 $db = new dba($db_host, $db_user, $db_pass, $db_data);
15 unset($db_host, $db_user, $db_pass, $db_data);
18 require_once("session.php");
19 require_once("datetime.php");
20 require_once('include/items.php');
21 require_once('include/bbcode.php');
23 load_config('config');
24 load_config('system');
31 $a->set_baseurl(get_config('system','url'));
33 logger('notifier: invoked: ' . print_r($argv,true));
41 $item_id = intval($argv[2]);
50 $recipients = array();
51 $url_recipients = array();
57 $message = q("SELECT * FROM `mail` WHERE `id` = %d LIMIT 1",
60 if(! count($message)){
63 $uid = $message[0]['uid'];
64 $recipients[] = $message[0]['contact-id'];
68 elseif($cmd === 'expire') {
71 $items = q("SELECT * FROM `item` WHERE `uid` = %d AND `wall` = 1
72 AND `deleted` = 1 AND `changed` > UTC_TIMESTAMP - INTERVAL 10 MINUTE",
80 elseif($cmd === 'suggest') {
82 $suggest = q("SELECT * FROM `fsuggest` WHERE `id` = %d LIMIT 1",
87 $uid = $suggest[0]['uid'];
88 $recipients[] = $suggest[0]['cid'];
94 $r = q("SELECT * FROM `item` WHERE `id` = %d LIMIT 1",
98 if((! count($r)) || (! intval($r[0]['parent']))) {
102 $target_item = $r[0];
103 $parent_id = intval($r[0]['parent']);
105 $updated = $r[0]['edited'];
107 $items = q("SELECT * FROM `item` WHERE `parent` = %d ORDER BY `id` ASC",
111 if(! count($items)) {
115 // avoid race condition with deleting entries
117 if($items[0]['deleted']) {
118 foreach($items as $item)
119 $item['deleted'] = 1;
122 if(count($items) == 1 && $items[0]['uri'] === $items[0]['parent-uri'])
126 $r = q("SELECT `contact`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey`,
127 `user`.`timezone`, `user`.`nickname`, `user`.`sprvkey`, `user`.`spubkey`,
128 `user`.`page-flags`, `user`.`prvnets`
129 FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid`
130 WHERE `contact`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1",
139 $hub = get_config('system','huburl');
141 // If this is a public conversation, notify the feed hub
144 // fill this in with a single salmon slap if applicable
147 if($cmd != 'mail' && $cmd != 'suggest') {
149 require_once('include/group.php');
153 if($parent['wall'] == 0 && (! $expire)) {
154 // local followup to remote post
156 $notify_hub = false; // not public
157 $conversant_str = dbesc($parent['contact-id']);
162 if((strlen($parent['allow_cid']))
163 || (strlen($parent['allow_gid']))
164 || (strlen($parent['deny_cid']))
165 || (strlen($parent['deny_gid']))) {
166 $notify_hub = false; // private recipients, not public
169 $allow_people = expand_acl($parent['allow_cid']);
170 $allow_groups = expand_groups(expand_acl($parent['allow_gid']));
171 $deny_people = expand_acl($parent['deny_cid']);
172 $deny_groups = expand_groups(expand_acl($parent['deny_gid']));
174 $conversants = array();
176 foreach($items as $item) {
177 $recipients[] = $item['contact-id'];
178 $conversants[] = $item['contact-id'];
179 // pull out additional tagged people to notify (if public message)
180 if($notify_hub && strlen($item['inform'])) {
181 $people = explode(',',$item['inform']);
182 foreach($people as $person) {
183 if(substr($person,0,4) === 'cid:') {
184 $recipients[] = intval(substr($person,4));
185 $conversants[] = intval(substr($person,4));
188 $url_recipients[] = substr($person,4);
194 logger('notifier: url_recipients' . print_r($url_recipients,true));
196 $conversants = array_unique($conversants);
199 $recipients = array_unique(array_merge($recipients,$allow_people,$allow_groups));
200 $deny = array_unique(array_merge($deny_people,$deny_groups));
201 $recipients = array_diff($recipients,$deny);
203 $conversant_str = dbesc(implode(', ',$conversants));
206 $r = q("SELECT * FROM `contact` WHERE `id` IN ( $conversant_str ) AND `blocked` = 0 AND `pending` = 0");
213 $feed_template = get_markup_template('atom_feed.tpl');
214 $mail_template = get_markup_template('atom_mail.tpl');
219 $hubxml = feed_hublinks();
221 $birthday = feed_birthday($owner['uid'],$owner['timezone']);
223 if(strlen($birthday))
224 $birthday = '<dfrn:birthday>' . xmlify($birthday) . '</dfrn:birthday>';
226 $atom .= replace_macros($feed_template, array(
227 '$version' => xmlify(FRIENDIKA_VERSION),
228 '$feed_id' => xmlify($a->get_baseurl() . '/profile/' . $owner['nickname'] ),
229 '$feed_title' => xmlify($owner['name']),
230 '$feed_updated' => xmlify(datetime_convert('UTC', 'UTC', $updated . '+00:00' , ATOM_TIME)) ,
232 '$salmon' => '', // private feed, we don't use salmon here
233 '$name' => xmlify($owner['name']),
234 '$profile_page' => xmlify($owner['url']),
235 '$photo' => xmlify($owner['photo']),
236 '$thumb' => xmlify($owner['thumb']),
237 '$picdate' => xmlify(datetime_convert('UTC','UTC',$owner['avatar-date'] . '+00:00' , ATOM_TIME)) ,
238 '$uridate' => xmlify(datetime_convert('UTC','UTC',$owner['uri-date'] . '+00:00' , ATOM_TIME)) ,
239 '$namdate' => xmlify(datetime_convert('UTC','UTC',$owner['name-date'] . '+00:00' , ATOM_TIME)) ,
240 '$birthday' => $birthday
243 if($cmd === 'mail') {
244 $notify_hub = false; // mail is not public
246 $body = fix_private_photos($item['body'],$owner['uid']);
248 $atom .= replace_macros($mail_template, array(
249 '$name' => xmlify($owner['name']),
250 '$profile_page' => xmlify($owner['url']),
251 '$thumb' => xmlify($owner['thumb']),
252 '$item_id' => xmlify($item['uri']),
253 '$subject' => xmlify($item['title']),
254 '$created' => xmlify(datetime_convert('UTC', 'UTC', $item['created'] . '+00:00' , ATOM_TIME)),
255 '$content' => xmlify($body),
256 '$parent_id' => xmlify($item['parent-uri'])
259 elseif($cmd === 'suggest') {
260 $notify_hub = false; // suggestions are not public
262 $sugg_template = get_markup_template('atom_suggest.tpl');
264 $atom .= replace_macros($sugg_template, array(
265 '$name' => xmlify($item['name']),
266 '$url' => xmlify($item['url']),
267 '$photo' => xmlify($item['photo']),
268 '$request' => xmlify($item['request']),
269 '$note' => xmlify($item['note'])
272 // We don't need this any more
274 q("DELETE FROM `fsuggest` WHERE `id` = %d LIMIT 1",
281 foreach($items as $item) { // there is only one item
282 if(! $item['parent'])
284 if($item['id'] == $item_id) {
285 logger('notifier: followup: item: ' . print_r($item,true), LOGGER_DATA);
286 $slap = atom_entry($item,'html',$owner,$owner,false);
287 $atom .= atom_entry($item,'text',$owner,$owner,false);
292 foreach($items as $item) {
294 if(! $item['parent'])
297 // private emails may be in included in public conversations. Filter them.
299 if(($notify_hub) && $item['private'])
302 $contact = get_item_contact($item,$contacts);
306 $atom .= atom_entry($item,'text',$contact,$owner,true);
308 if(($top_level) && ($notify_hub) && ($item['author-link'] === $item['owner-link']) && (! $expire))
309 $slaps[] = atom_entry($item,'html',$contact,$owner,true);
313 $atom .= '</feed>' . "\r\n";
315 logger('notifier: ' . $atom, LOGGER_DATA);
317 logger('notifier: slaps: ' . print_r($slaps,true), LOGGER_DATA);
319 // If this is a public message and pubmail is set on the parent, include all your email contacts
321 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
323 if(! $mail_disabled) {
324 if((! strlen($target_item['allow_cid'])) && (! strlen($target_item['allow_gid']))
325 && (! strlen($target_item['deny_cid'])) && (! strlen($target_item['deny_gid']))
326 && (intval($target_item['pubmail']))) {
327 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `network` = '%s'",
333 $recipients[] = $rr['id'];
339 $recip_str = $parent['contact-id'];
341 $recip_str = implode(', ', $recipients);
343 $r = q("SELECT * FROM `contact` WHERE `id` IN ( %s ) AND `blocked` = 0 AND `pending` = 0 ",
349 require_once('include/salmon.php');
352 foreach($r as $contact) {
358 switch($contact['network']) {
360 logger('notifier: dfrndelivery: ' . $contact['name']);
361 $deliver_status = dfrn_deliver($owner,$contact,$atom);
363 logger('notifier: dfrn_delivery returns ' . $deliver_status);
365 if($deliver_status == (-1)) {
366 logger('notifier: delivery failed: queuing message');
367 // queue message for redelivery
368 q("INSERT INTO `queue` ( `cid`, `created`, `last`, `content`)
369 VALUES ( %d, '%s', '%s', '%s') ",
370 intval($contact['id']),
371 dbesc(datetime_convert()),
372 dbesc(datetime_convert()),
377 case NETWORK_OSTATUS:
379 // Do not send to otatus if we are not configured to send to public networks
380 if($owner['prvnets'])
382 if(get_config('system','ostatus_disabled') || get_config('system','dfrn_only'))
385 if($followup && $contact['notify']) {
386 logger('notifier: slapdelivery: ' . $contact['name']);
387 $deliver_status = slapper($owner,$contact['notify'],$slap);
389 if($deliver_status == (-1)) {
390 // queue message for redelivery
391 q("INSERT INTO `queue` ( `cid`, `created`, `last`, `content`)
392 VALUES ( %d, '%s', '%s', '%s') ",
393 intval($contact['id']),
394 dbesc(datetime_convert()),
395 dbesc(datetime_convert()),
403 // only send salmon if public - e.g. if it's ok to notify
404 // a public hub, it's ok to send a salmon
406 if((count($slaps)) && ($notify_hub) && (! $expire)) {
407 logger('notifier: slapdelivery: ' . $contact['name']);
408 foreach($slaps as $slappy) {
409 if($contact['notify']) {
410 $deliver_status = slapper($owner,$contact['notify'],$slappy);
411 if($deliver_status == (-1)) {
412 // queue message for redelivery
413 q("INSERT INTO `queue` ( `cid`, `created`, `last`, `content`)
414 VALUES ( %d, '%s', '%s', '%s') ",
415 intval($contact['id']),
416 dbesc(datetime_convert()),
417 dbesc(datetime_convert()),
429 if(get_config('system','dfrn_only'))
432 // WARNING: does not currently convert to RFC2047 header encodings, etc.
434 $addr = $contact['addr'];
438 if($cmd === 'wall-new' || $cmd === 'comment-new') {
441 if($cmd === 'wall-new')
444 $r = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
456 $local_user = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
459 if(! count($local_user))
463 $r1 = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
466 if($r1 && $r1[0]['reply_to'])
467 $reply_to = $r1[0]['reply_to'];
469 $subject = (($it['title']) ? $it['title'] : t("\x28no subject\x29")) ;
470 $headers = 'From: ' . $local_user[0]['username'] . ' <' . $local_user[0]['email'] . '>' . "\n";
473 $headers .= 'Reply-to: ' . $reply_to . "\n";
475 $headers .= 'Message-id: <' . $it['uri'] . '>' . "\n";
477 if($it['uri'] !== $it['parent-uri']) {
478 $header .= 'References: <' . $it['parent-uri'] . '>' . "\n";
479 if(! strlen($it['title'])) {
480 $r = q("SELECT `title` FROM `item` WHERE `parent-uri` = '%s' LIMIT 1",
481 dbesc($it['parent-uri'])
484 $subtitle = $r[0]['title'];
486 if(strncasecmp($subtitle,'RE:',3))
487 $subject = $subtitle;
489 $subject = 'Re: ' . $subtitle;
495 $headers .= 'MIME-Version: 1.0' . "\n";
496 $headers .= 'Content-Type: text/html; charset=UTF-8' . "\n";
497 $headers .= 'Content-Transfer-Encoding: 8bit' . "\n\n";
498 $html = prepare_body($it);
499 $message = '<html><body>' . $html . '</body></html>';
500 logger('notifier: email delivery to ' . $addr);
501 mail($addr, $subject, $message, $headers);
504 case NETWORK_DIASPORA:
505 if(get_config('system','dfrn_only') || (! get_config('diaspora_enabled')) || (! $normal_mode))
508 if($target_item['verb'] === ACTIVITY_DISLIKE) {
512 elseif($target_item['deleted'] && (! $parent_item['verb'] === ACTIVITY_LIKE)) {
514 diaspora_send_retraction($target_item,$owner,$contact);
518 // send comments, likes and retractions of likes to owner to relay
519 diaspora_send_followup($target_item,$owner,$contact);
522 elseif($target_item['parent'] != $target_item['id']) {
523 // we are the relay - send comments, likes and unlikes to our conversants
524 diaspora_send_relay($target_item,$owner,$contact);
528 diaspora_send_status($target_item,$owner,$contact);
535 case NETWORK_FACEBOOK:
536 if(get_config('system','dfrn_only'))
544 // send additional slaps to mentioned remote tags (@foo@example.com)
546 if($slap && count($url_recipients) && ($followup || $top_level) && $notify_hub && (! $expire)) {
547 if(! get_config('system','dfrn_only')) {
548 foreach($url_recipients as $url) {
550 logger('notifier: urldelivery: ' . $url);
551 $deliver_status = slapper($owner,$url,$slap);
552 // TODO: redeliver/queue these items on failure, though there is no contact record
558 if((strlen($hub)) && ($notify_hub)) {
559 $hubs = explode(',', $hub);
561 foreach($hubs as $h) {
565 $params = 'hub.mode=publish&hub.url=' . urlencode($a->get_baseurl() . '/dfrn_poll/' . $owner['nickname'] );
566 post_url($h,$params);
567 logger('pubsub: publish: ' . $h . ' ' . $params . ' returned ' . $a->get_curl_code());
569 sleep(7); // try and avoid multiple hubs responding at precisely the same time
578 * If you have less than 999 dfrn friends and it's a public message,
579 * we'll just go ahead and push them out securely with dfrn/rino.
580 * If you've got more than that, you'll have to rely on PuSH delivery.
584 $max_allowed = ((get_config('system','maxpubdeliver') === false) ? 999 : intval(get_config('system','maxpubdeliver')));
588 * Only get the bare essentials and go back for the full record.
589 * If you've got a lot of friends and we grab all the details at once it could exhaust memory.
593 $r = q("SELECT `id`, `name` FROM `contact`
594 WHERE `network` = '%s' AND `uid` = %d AND `blocked` = 0 AND `pending` = 0
597 intval($owner['uid']),
598 intval(CONTACT_IS_SHARING)
601 if((count($r)) && (($max_allowed == 0) || (count($r) < $max_allowed))) {
603 logger('pubdeliver: ' . print_r($r,true));
607 /* Don't deliver to folks who have already been delivered to */
609 if(! in_array($rr['id'], $conversants)) {
610 $n = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
616 logger('notifier: dfrnpubdelivery: ' . $n[0]['name']);
617 $deliver_status = dfrn_deliver($owner,$n[0],$atom);
621 logger('notifier: dfrnpubdelivery: ignoring ' . $rr['name']);
629 if (array_search(__file__,get_included_files())===0){
630 notifier_run($argv,$argc);