aboutsummaryrefslogtreecommitdiffstats
path: root/mod/zperms.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-09-09 21:26:36 -0700
committerfriendica <info@friendica.com>2012-09-09 21:26:36 -0700
commite4f3e96b657e4ce33c06701653eaba9574152c9a (patch)
treec0cabbe859ded25737e39d4e74bcc83a63647fa3 /mod/zperms.php
parent3ebb4a3dc7a369e7a716ab93d02b44b20522080f (diff)
downloadvolse-hubzilla-e4f3e96b657e4ce33c06701653eaba9574152c9a.tar.gz
volse-hubzilla-e4f3e96b657e4ce33c06701653eaba9574152c9a.tar.bz2
volse-hubzilla-e4f3e96b657e4ce33c06701653eaba9574152c9a.zip
remove targeted windows
Diffstat (limited to 'mod/zperms.php')
-rw-r--r--mod/zperms.php81
1 files changed, 81 insertions, 0 deletions
diff --git a/mod/zperms.php b/mod/zperms.php
new file mode 100644
index 000000000..c15f4dccf
--- /dev/null
+++ b/mod/zperms.php
@@ -0,0 +1,81 @@
+<?php
+
+function zperms_init(&$a) {
+
+ require_once('include/zot.php');
+
+ $ret = array('success' => false);
+
+ $zguid = ((x($_REQUEST,'guid')) ? $_REQUEST['guid'] : '');
+ $zaddr = ((x($_REQUEST,'address')) ? $_REQUEST['address'] : '');
+ $ztarget = ((x($_REQUEST,'target')) ? $_REQUEST['target'] : '');
+
+ $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);
+ }
+
+ if(! ($r && count($r))) {
+ $ret['message'] = 'Item not found.';
+ json_return_and_die($ret);
+ }
+
+
+ $e = $r[0];
+
+ $id = $e['entity_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",
+ intval($id)
+ );
+ if($r && count($r)) {
+ $profile = $r[0];
+ }
+
+
+ $ret['success'] = true;
+
+ // 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['profile'] = $profile;
+
+ // 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(rsa_sign($hub['hubloc_url'],$e['entity_prvkey'])),
+ 'callback' => $hub['hubloc_callback'],
+ 'sitekey' => $hub['hubloc_sitekey']
+ );
+ }
+ }
+ }
+
+ json_return_and_die($ret);
+
+} \ No newline at end of file