]> git.mxchange.org Git - friendica.git/commitdiff
some cleanup of obsolete code
authorZach Prezkuta <fermion@gmx.com>
Sat, 16 Jun 2012 16:41:25 +0000 (10:41 -0600)
committerZach Prezkuta <fermion@gmx.com>
Sat, 16 Jun 2012 16:41:25 +0000 (10:41 -0600)
include/diaspora.php

index ecf1fd7a9808a6c01da73aea604e3c7841965dc0..5be09a7acc50a74b5e2f4bd305c28d3fab60473a 100755 (executable)
@@ -1094,21 +1094,6 @@ function diaspora_comment($importer,$xml,$msg) {
                // our post, so he/she must be a contact of ours and his/her public key
                // should be in $msg['key']
 
-/*             if(strcasecmp($diaspora_handle,$msg['author']) == 0) {
-                       $person = $contact;
-                       $key = $msg['key'];
-               }
-               else {
-                       $person = find_diaspora_person_by_handle($diaspora_handle);     
-
-                       if(is_array($person) && x($person,'pubkey'))
-                               $key = $person['pubkey'];
-                       else {
-                               logger('diaspora_comment: unable to find author details');
-                               return;
-                       }
-               }*/
-
                $author_signature = base64_decode($author_signature);
 
                if(! rsa_verify($signed_data,$author_signature,$key,'sha256')) {
@@ -1119,7 +1104,9 @@ function diaspora_comment($importer,$xml,$msg) {
 
        // Phew! Everything checks out. Now create an item.
 
-       // Find the original comment author information
+       // Find the original comment author information.
+       // We need this to make sure we display the comment author
+       // information (name and avatar) correctly.
        if(strcasecmp($diaspora_handle,$msg['author']) == 0)
                $person = $contact;
        else {
@@ -1692,20 +1679,6 @@ function diaspora_like($importer,$xml,$msg) {
                // our post, so he/she must be a contact of ours and his/her public key
                // should be in $msg['key']
 
-/*             if(strcasecmp($diaspora_handle,$msg['author']) == 0) {
-                       $person = $contact;
-                       $key = $msg['key'];
-               }
-               else {
-                       $person = find_diaspora_person_by_handle($diaspora_handle);     
-                       if(is_array($person) && x($person,'pubkey'))
-                               $key = $person['pubkey'];
-                       else {
-                               logger('diaspora_like: unable to find author details');
-                               return;
-                       }
-               }*/
-
                $author_signature = base64_decode($author_signature);
 
                if(! rsa_verify($signed_data,$author_signature,$key,'sha256')) {
@@ -1716,7 +1689,9 @@ function diaspora_like($importer,$xml,$msg) {
 
        // Phew! Everything checks out. Now create an item.
 
-       // Find the original like author information
+       // Find the original comment author information.
+       // We need this to make sure we display the comment author
+       // information (name and avatar) correctly.
        if(strcasecmp($diaspora_handle,$msg['author']) == 0)
                $person = $contact;
        else {