From: Zach Prezkuta <fermion@gmx.com>
Date: Sat, 16 Jun 2012 16:41:25 +0000 (-0600)
Subject: some cleanup of obsolete code
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=577cfdd314259ea490c1bef89ff847bbc8e168c2;p=friendica.git

some cleanup of obsolete code
---

diff --git a/include/diaspora.php b/include/diaspora.php
index ecf1fd7a98..5be09a7acc 100755
--- a/include/diaspora.php
+++ b/include/diaspora.php
@@ -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 {