]> git.mxchange.org Git - friendica.git/blobdiff - include/notifier.php
Merge branch 'master' of git://github.com/friendika/friendika
[friendica.git] / include / notifier.php
index f22917e4ffd4d0d56b9a8b91f7fee31f3b913a86..39640e51a3f98d4dbad7abe98bfd3cc05fb84ec9 100644 (file)
@@ -20,6 +20,8 @@
 
        $a->set_baseurl(get_config('system','url'));
 
+       logger('notifier: invoked: ' . print_r($argv,true));
+
        $cmd = $argv[1];
 
        switch($cmd) {
 
                        logger('notifier: url_recipients' . print_r($url_recipients,true));
 
-                       $conversants = array_unique($conversants,SORT_NUMERIC);
+                       $conversants = array_unique($conversants);
 
 
-                       $recipients = array_unique(array_merge($recipients,$allow_people,$allow_groups),SORT_NUMERIC);
-                       $deny = array_unique(array_merge($deny_people,$deny_groups),SORT_NUMERIC);
+                       $recipients = array_unique(array_merge($recipients,$allow_people,$allow_groups));
+                       $deny = array_unique(array_merge($deny_people,$deny_groups));
                        $recipients = array_diff($recipients,$deny);
 
                        $conversant_str = dbesc(implode(', ',$conversants));
        }
 
        $atom .= replace_macros($feed_template, array(
+                       '$version'      => xmlify(FRIENDIKA_VERSION),
                        '$feed_id'      => xmlify($a->get_baseurl() . '/profile/' . $owner['nickname'] ),
                        '$feed_title'   => xmlify($owner['name']),
                        '$feed_updated' => xmlify(datetime_convert('UTC', 'UTC', $updated . '+00:00' , ATOM_TIME)) ,
                        '$hub'          => $hubxml,
-                       '$salmon'       => '',   // private feed, we don't use salmon here
+                       '$salmon'       => '',  // private feed, we don't use salmon here
                        '$name'         => xmlify($owner['name']),
                        '$profile_page' => xmlify($owner['url']),
                        '$photo'        => xmlify($owner['photo']),
                        '$thumb'        => xmlify($owner['thumb']),
                        '$picdate'      => xmlify(datetime_convert('UTC','UTC',$owner['avatar-date'] . '+00:00' , ATOM_TIME)) ,
                        '$uridate'      => xmlify(datetime_convert('UTC','UTC',$owner['uri-date']    . '+00:00' , ATOM_TIME)) ,
-                       '$namdate'      => xmlify(datetime_convert('UTC','UTC',$owner['name-date']   . '+00:00' , ATOM_TIME))
+                       '$namdate'      => xmlify(datetime_convert('UTC','UTC',$owner['name-date']   . '+00:00' , ATOM_TIME)) ,
+                       '$birthday'     => ''
        ));
 
        if($cmd === 'mail') {
                ));
        }
        else {
-
                if($followup) {
                        foreach($items as $item) {  // there is only one item
                                if($item['id'] == $item_id) {
+                                       logger('notifier: followup: item: ' . print_r($item,true), LOGGER_DATA);
                                        $slap  = atom_entry($item,'html',$owner,$owner,false);
                                        $atom .= atom_entry($item,'text',$owner,$owner,false);
                                }
                                        continue;
 
                                $atom   .= atom_entry($item,'text',$contact,$owner,true);
-                               $slaps[] = atom_entry($item,'html',$contact,$owner,true);
+
+                               // There's a problem here - we *were* going to use salmon to provide semi-authenticated
+                               // communication to OStatus, but unless we're the item author they won't verify.
+                               // commented out for now, though we'll still send local replies (and any mentions 
+                               // that they contain) upstream. Rethinking the problem space.
+//                             $slaps[] = atom_entry($item,'html',$contact,$owner,true);
                        }
                }
        }
 
        logger('notifier: ' . $atom, LOGGER_DATA);
 
-       logger('notifier: slaps: ' . print_r($slaps,true), LOGGER_DATA);
+//     logger('notifier: slaps: ' . print_r($slaps,true), LOGGER_DATA);
 
        if($followup)
                $recip_str = $parent['contact-id'];
                        case 'dfrn':
                                logger('notifier: dfrndelivery: ' . $contact['name']);
                                $deliver_status = dfrn_deliver($owner,$contact,$atom);
+
+                               logger('notifier: dfrn_delivery returns ' . $deliver_status);
+
+                               if($deliver_status == (-1)) {
+                                       logger('notifier: delivery failed: queuing message');
+                                       // queue message for redelivery
+                                       q("INSERT INTO `queue` ( `cid`, `created`, `last`, `content`)
+                                               VALUES ( %d, '%s', '%s', '%s') ",
+                                               intval($contact['id']),
+                                               dbesc(datetime_convert()),
+                                               dbesc(datetime_convert()),
+                                               dbesc($atom)
+                                       );
+                               }
                                break;
                        default:
                                if($followup && $contact['notify']) {
-                                       slapper($owner,$contact['notify'],$slap);
+                                       logger('notifier: slapdelivery: ' . $contact['name']);
+                                       $deliver_status = slapper($owner,$contact['notify'],$slap);
+
+                                       if($deliver_status == (-1)) {
+                                               // queue message for redelivery
+                                               q("INSERT INTO `queue` ( `cid`, `created`, `last`, `content`)
+                                                       VALUES ( %d, '%s', '%s', '%s') ",
+                                                       intval($contact['id']),
+                                                       dbesc(datetime_convert()),
+                                                       dbesc(datetime_convert()),
+                                                       dbesc($slap)
+                                               );
+
+                                       }
+
+
                                }
                                else {
 
                                                logger('notifier: slapdelivery: ' . $contact['name']);
                                                foreach($slaps as $slappy) {
                                                        if($contact['notify']) {
-                                                               slapper($owner,$contact['notify'],$slappy);
+                                                               $deliver_status = slapper($owner,$contact['notify'],$slappy);
+                                                               if($deliver_status == (-1)) {
+                                                                       // queue message for redelivery
+                                                                       q("INSERT INTO `queue` ( `cid`, `created`, `last`, `content`)
+                                                                               VALUES ( %d, '%s', '%s', '%s') ",
+                                                                               intval($contact['id']),
+                                                                               dbesc(datetime_convert()),
+                                                                               dbesc(datetime_convert()),
+                                                                               dbesc($slappy)
+                                                                       );                                                              
+                                                               }
                                                        }
                                                }
                                        }
                                }
                                break;
                }
-
-               if(($cmd === 'mail') && ($deliver_status == 0)) {
-                       $r = q("UPDATE `mail` SET `delivered` = 1 WHERE `id` = %d LIMIT 1",
-                               intval($item_id)
-                       );
-               }
-
        }
                
        // send additional slaps to mentioned remote tags (@foo@example.com)
 
-       if(count($slaps) && count($url_recipients) && $notify_hub) {
+       if($slap && count($url_recipients) && $followup && $notify_hub) {
                foreach($url_recipients as $url) {
-                       logger('notifier: urldelivery: ' . $url);
-                       foreach($slaps as $slappy) {
-                               if($url) {
-                                       slapper($owner,$url,$slappy);
-                               }
+                       if($url) {
+                               logger('notifier: urldelivery: ' . $url);
+                               $deliver_status = slapper($owner,$url,$slap);
+                               // TODO: redeliver/queue these items on failure, though there is no contact record
                        }
                }
        }