diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-12-22 16:35:58 +0100 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-12-22 16:35:58 +0100 |
commit | 0dce36bdbce7482329105e2c1ef4f3c8b3043803 (patch) | |
tree | d3ecce88412a2b528561f05ef202542707aeb3bd /include/diaspora.php | |
parent | 2ef2d0b79f4024174292faa45840cee065b464a3 (diff) | |
parent | e764990ce49880ba6d5113410eab86ff44bb6647 (diff) | |
download | volse-hubzilla-0dce36bdbce7482329105e2c1ef4f3c8b3043803.tar.gz volse-hubzilla-0dce36bdbce7482329105e2c1ef4f3c8b3043803.tar.bz2 volse-hubzilla-0dce36bdbce7482329105e2c1ef4f3c8b3043803.zip |
Merge remote-tracking branch 'friendica/master'
Diffstat (limited to 'include/diaspora.php')
-rw-r--r-- | include/diaspora.php | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/include/diaspora.php b/include/diaspora.php index fdf756610..d1e975a89 100644 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -69,7 +69,7 @@ function diaspora_dispatch($importer,$msg) { $ret = diaspora_retraction($importer,$xmlbase->retraction,$msg); } elseif($xmlbase->signed_retraction) { - $ret = diaspora_signed_retraction($importer,$xmlbase->retraction,$msg); + $ret = diaspora_signed_retraction($importer,$xmlbase->signed_retraction,$msg); } elseif($xmlbase->photo) { $ret = diaspora_photo($importer,$xmlbase->photo,$msg); @@ -1569,6 +1569,7 @@ EOT; function diaspora_retraction($importer,$xml) { + $guid = notags(unxmlify($xml->guid)); $diaspora_handle = notags(unxmlify($xml->diaspora_handle)); $type = notags(unxmlify($xml->type)); @@ -1600,7 +1601,8 @@ function diaspora_retraction($importer,$xml) { // NOTREACHED } -function diaspora_signed_retraction($importer,$xml) { +function diaspora_signed_retraction($importer,$xml,$msg) { + $guid = notags(unxmlify($xml->target_guid)); $diaspora_handle = notags(unxmlify($xml->sender_handle)); @@ -1608,8 +1610,10 @@ function diaspora_signed_retraction($importer,$xml) { $sig = notags(unxmlify($xml->target_author_signature)); $contact = diaspora_get_contact_by_handle($importer['uid'],$diaspora_handle); - if(! $contact) + if(! $contact) { + logger('diaspora_signed_retraction: no contact'); return; + } // this may not yet work for comments. Need to see how the relaying works // and figure out who signs it. @@ -1628,7 +1632,7 @@ function diaspora_signed_retraction($importer,$xml) { if($type === 'StatusMessage') { $r = q("select * from item where guid = '%s' and uid = %d limit 1", - dbesc('guid'), + dbesc($guid), intval($importer['uid']) ); if(count($r)) { @@ -1640,6 +1644,8 @@ function diaspora_signed_retraction($importer,$xml) { } } } + else + logger('diaspora_signed_retraction: unknown type: ' . $type); return 202; // NOTREACHED |