aboutsummaryrefslogtreecommitdiffstats
path: root/include/zot.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-12-30 15:28:13 -0800
committerfriendica <info@friendica.com>2012-12-30 15:28:13 -0800
commit8eee37e1fabc1bdfbc287e9fbd50cdf89a254f20 (patch)
tree7462a4ef586558e73f6ff50081f68ff126c88341 /include/zot.php
parenta8e16c48b199fc767ef990d171bf0778e9cdc3bc (diff)
downloadvolse-hubzilla-8eee37e1fabc1bdfbc287e9fbd50cdf89a254f20.tar.gz
volse-hubzilla-8eee37e1fabc1bdfbc287e9fbd50cdf89a254f20.tar.bz2
volse-hubzilla-8eee37e1fabc1bdfbc287e9fbd50cdf89a254f20.zip
more logging, some debugging of group membership page
Diffstat (limited to 'include/zot.php')
-rw-r--r--include/zot.php13
1 files changed, 10 insertions, 3 deletions
diff --git a/include/zot.php b/include/zot.php
index 7915132fe..0f444be15 100644
--- a/include/zot.php
+++ b/include/zot.php
@@ -179,6 +179,9 @@ function zot_finger($webbie,$channel) {
function zot_refresh($them,$channel = null) {
+ logger('zot_refresh: them: ' . print_r($them,true), LOGGER_DATA);
+ logger('zot_refresh: channel: ' . print_r($channel,true), LOGGER_DATA);
+
if($them['hubloc_url'])
$url = $them['hubloc_url'];
else {
@@ -189,8 +192,10 @@ function zot_refresh($them,$channel = null) {
if($r)
$url = $r[0]['hubloc_url'];
}
- if(! $url)
+ if(! $url) {
+ logger('zot_refresh: no url');
return;
+ }
$postvars = array();
@@ -495,7 +500,7 @@ function import_xchan($arr) {
$import_photos = false;
if(! rsa_verify($arr['guid'],base64url_decode($arr['guid_sig']),$arr['key'])) {
- logger('import_xchan_from_json: Unable to verify channel signature for ' . $arr['address']);
+ logger('import_xchan: Unable to verify channel signature for ' . $arr['address']);
$ret['message'] = t('Unable to verify channel signature');
return $ret;
}
@@ -556,7 +561,7 @@ function import_xchan($arr) {
if($arr['locations']) {
foreach($arr['locations'] as $location) {
if(! rsa_verify($location['url'],base64url_decode($location['url_sig']),$arr['key'])) {
- logger('import_xchan_from_json: Unable to verify site signature for ' . $location['url']);
+ logger('import_xchan: Unable to verify site signature for ' . $location['url']);
$ret['message'] .= sprintf( t('Unable to verify site signature for %s'), $location['url']) . EOL;
continue;
}
@@ -597,6 +602,8 @@ function import_xchan($arr) {
$ret['success'] = true;
$ret['hash'] = $xchan_hash;
}
+
+ logger('import_xchan: result: ' . print_r($ret,true), LOGGER_DATA);
return $ret;
}