aboutsummaryrefslogtreecommitdiffstats
path: root/mod/zfinger.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-08-26 23:05:00 -0700
committerfriendica <info@friendica.com>2012-08-26 23:05:00 -0700
commit5ff6e9348b41bc87b03bafc4d9df73b383af074e (patch)
treec26b1b26cd38f7ec78e83905266053618a3e1db4 /mod/zfinger.php
parentf0e299a97a8c46fd66bbc47e5b84d4b76d763154 (diff)
downloadvolse-hubzilla-5ff6e9348b41bc87b03bafc4d9df73b383af074e.tar.gz
volse-hubzilla-5ff6e9348b41bc87b03bafc4d9df73b383af074e.tar.bz2
volse-hubzilla-5ff6e9348b41bc87b03bafc4d9df73b383af074e.zip
a few minor changes
Diffstat (limited to 'mod/zfinger.php')
-rw-r--r--mod/zfinger.php89
1 files changed, 50 insertions, 39 deletions
diff --git a/mod/zfinger.php b/mod/zfinger.php
index 77d9555d3..5b02d4695 100644
--- a/mod/zfinger.php
+++ b/mod/zfinger.php
@@ -4,55 +4,66 @@ function zfinger_init(&$a) {
require_once('include/zot.php');
- $ret = array('success' => false, 'message' => '');
- if(argc() > 1) {
- $zguid = argv(1);
+ $ret = array('success' => false);
+
+ $zguid = ((x($_REQUEST,'guid')) ? $_REQUEST['guid'] : '');
+ $zaddr = ((x($_REQUEST,'address')) ? $_REQUEST['address'] : '');
- if(strlen($zguid)) {
- $r = q("select * from entity where entity_global_id = '%s' limit 1",
- dbesc($zguid)
- );
- if(! ($r && count($r))) {
- $ret['message'] = 'Item not found.';
- json_return_and_die($ret);
- }
- }
- else {
- $ret['message'] = 'Invalid request';
- json_return_and_die($ret);
- }
- $e = $r[0];
+ $r = null;
+
+ if(strlen($zguid)) {
+ $r = q("select * from entity where entity_global_id = '%s' limit 1",
+ dbesc($zguid)
+ );
+ }
+ elseif(strlen($zaddr)) {
+ $r = q("select * from entity where entity_address = '%s' limit 1",
+ dbesc($zaddr)
+ );
+ }
+ else {
+ $ret['message'] = 'Invalid request';
+ json_return_and_die($ret);
+ }
- $ret['success'] = true;
+ if(! ($r && count($r))) {
+ $ret['message'] = 'Item not found.';
+ json_return_and_die($ret);
+ }
+
+ $e = $r[0];
- // Communication details
+ $ret['success'] = true;
- $ret['guid'] = $e['entity_global_id'];
- $ret['key'] = $e['pubkey'];
+ // Communication details
- // array of (verified) hubs this entity uses
+ $ret['guid'] = $e['entity_global_id'];
+ $ret['guid_sig'] = base64url_encode($e['entity_global_id'],$e['entity_prvkey']);
+ $ret['key'] = $e['entity_pubkey'];
+ $ret['name'] = $e['entity_name'];
+ $ret['address'] = $e['entity_address'];
- $ret['hubs'] = array();
- $x = zot_get_hubloc(array($e['entity_global_id']));
- if($x && count($x)) {
- foreach($x as $hub) {
- if(! ($hub['hubloc_flags'] & HUBLOC_FLAGS_UNVERIFIED)) {
- $ret['hubs'][] = array(
- 'primary' => (($hub['hubloc_flags'] & HUBLOC_FLAGS_PRIMARY) ? true : false),
- 'url' => $hub['hubloc_url'],
- 'callback' => $hub['hubloc_callback'],
- 'sitekey' => $hub['hubloc_sitekey']
- );
- }
+ // array of (verified) hubs this entity uses
+
+ $ret['hubs'] = array();
+ $x = zot_get_hubloc(array($e['entity_global_id']));
+ if($x && count($x)) {
+ foreach($x as $hub) {
+ if(! ($hub['hubloc_flags'] & HUBLOC_FLAGS_UNVERIFIED)) {
+ $ret['hubs'][] = array(
+ 'primary' => (($hub['hubloc_flags'] & HUBLOC_FLAGS_PRIMARY) ? true : false),
+ 'url' => $hub['hubloc_url'],
+ 'url_sig' => base64url_encode($hub['hubloc_url'],$e['entity_prvkey']),
+ 'callback' => $hub['hubloc_callback'],
+ 'sitekey' => $hub['hubloc_sitekey']
+ );
}
}
+ }
- // more stuff, e.g. the basic public profile
-
- json_return_and_die($ret);
+ // more stuff, e.g. the basic public profile
- }
- $ret['message'] = 'Item not found.';
json_return_and_die($ret);
+
} \ No newline at end of file