diff options
author | friendica <info@friendica.com> | 2012-09-25 17:57:20 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-09-25 17:57:20 -0700 |
commit | fbafd92f7f7b96b215b98f30de9a1ccbdb3479be (patch) | |
tree | f1f6739d513ac297fbd14162b8377cc4cf84c784 /mod/zfinger.php | |
parent | dd5725c2725b742473ce285dce8573da37fb8053 (diff) | |
download | volse-hubzilla-fbafd92f7f7b96b215b98f30de9a1ccbdb3479be.tar.gz volse-hubzilla-fbafd92f7f7b96b215b98f30de9a1ccbdb3479be.tar.bz2 volse-hubzilla-fbafd92f7f7b96b215b98f30de9a1ccbdb3479be.zip |
moving a lot of structure around. 'entity' is now 'channel'
Diffstat (limited to 'mod/zfinger.php')
-rw-r--r-- | mod/zfinger.php | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/mod/zfinger.php b/mod/zfinger.php index 66dcb16f6..95c17ecd8 100644 --- a/mod/zfinger.php +++ b/mod/zfinger.php @@ -13,12 +13,12 @@ function zfinger_init(&$a) { $r = null; if(strlen($zguid)) { - $r = q("select * from entity where entity_global_id = '%s' limit 1", + $r = q("select * from channel where channel_global_id = '%s' limit 1", dbesc($zguid) ); } elseif(strlen($zaddr)) { - $r = q("select * from entity where entity_address = '%s' limit 1", + $r = q("select * from channel where channel_address = '%s' limit 1", dbesc($zaddr) ); } @@ -34,7 +34,7 @@ function zfinger_init(&$a) { $e = $r[0]; - $id = $e['entity_id']; + $id = $e['channel_id']; $r = q("select contact.*, profile.* from contact left join profile on contact.uid = profile.uid where contact.uid = %d && contact.self = 1 and profile.is_default = 1 limit 1", @@ -49,18 +49,18 @@ function zfinger_init(&$a) { // Communication details - $ret['guid'] = $e['entity_global_id']; - $ret['guid_sig'] = base64url_encode(rsa_sign($e['entity_global_id'],$e['entity_prvkey'])); - $ret['key'] = $e['entity_pubkey']; - $ret['name'] = $e['entity_name']; - $ret['address'] = $e['entity_address']; + $ret['guid'] = $e['channel_global_id']; + $ret['guid_sig'] = base64url_encode(rsa_sign($e['channel_global_id'],$e['channel_prvkey'])); + $ret['key'] = $e['channel_pubkey']; + $ret['name'] = $e['channel_name']; + $ret['address'] = $e['channel_address']; $ret['profile'] = $profile; - // array of (verified) hubs this entity uses + // array of (verified) hubs this channel uses $ret['hubs'] = array(); - $x = zot_get_hubloc(array($e['entity_global_id'])); + $x = zot_get_hubloc(array($e['channel_global_id'])); if($x && count($x)) { foreach($x as $hub) { if(! ($hub['hubloc_flags'] & HUBLOC_FLAGS_UNVERIFIED)) { @@ -68,7 +68,7 @@ function zfinger_init(&$a) { 'primary' => (($hub['hubloc_flags'] & HUBLOC_FLAGS_PRIMARY) ? true : false), 'url' => $hub['hubloc_url'], /// hmmm we probably shouldn't sign somebody else's hub. FIXME - 'url_sig' => base64url_encode(rsa_sign($hub['hubloc_url'],$e['entity_prvkey'])), + 'url_sig' => base64url_encode(rsa_sign($hub['hubloc_url'],$e['channel_prvkey'])), 'callback' => $hub['hubloc_callback'], 'sitekey' => $hub['hubloc_sitekey'] ); |