]> git.mxchange.org Git - friendica.git/blobdiff - mod/dfrn_notify.php
Merge pull request #1880 from annando/1509-performance
[friendica.git] / mod / dfrn_notify.php
index 474d13c4d69cb4b007608b02e256077360d1b0b9..fe7adca4134d69e882da3feef4d4c9de28ae176a 100644 (file)
@@ -93,6 +93,8 @@ function dfrn_notify_post(&$a) {
 
        $importer = $r[0];
 
+       logger("Remote rino version: ".$rino_remote." for ".$importer["url"], LOGGER_DEBUG);
+
        if((($writable != (-1)) && ($writable != $importer['writable'])) || ($importer['forum'] != $forum) || ($importer['prv'] != $prv)) {
                q("UPDATE `contact` SET `writable` = %d, forum = %d, prv = %d WHERE `id` = %d",
                        intval(($writable == (-1)) ? $importer['writable'] : $writable),
@@ -128,10 +130,15 @@ function dfrn_notify_post(&$a) {
 
 
        // If we are setup as a soapbox we aren't accepting input from this person
+       // This behaviour is deactivated since it really doesn't make sense to even disallow comments
+       // The check if someone is a friend or simply a follower is done in a later place so it needn't to be done here
+       //if($importer['page-flags'] == PAGE_SOAPBOX)
+       //      xml_status(0);
 
-       if($importer['page-flags'] == PAGE_SOAPBOX)
-               xml_status(0);
+       $rino = get_config('system','rino_encrypt');
+       $rino = intval($rino);
 
+       logger("Local rino version: ". $rino, LOGGER_DEBUG);
 
        if(strlen($key)) {
 
@@ -273,6 +280,8 @@ function dfrn_notify_content(&$a) {
                if(! count($r))
                        $status = 1;
 
+               logger("Remote rino version: ".$rino_remote." for ".$r[0]["url"], LOGGER_DEBUG);
+
                $challenge = '';
                $encrypted_id = '';
                $id_str = $my_id . '.' . mt_rand(1000,9999);
@@ -299,6 +308,8 @@ function dfrn_notify_content(&$a) {
                $rino = get_config('system','rino_encrypt');
                $rino = intval($rino);
 
+               logger("Local rino version: ". $rino, LOGGER_DEBUG);
+
                // if requested rino is lower than enabled local rino, lower local rino version
                // if requested rino is higher than enabled local rino, reply with local rino
                if ($rino_remote < $rino) $rino = $rino_remote;