aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-05-28 22:58:59 -0700
committerfriendica <info@friendica.com>2013-05-28 22:58:59 -0700
commit2a6d3e1f940af1819182be5710eb6a1f45de1929 (patch)
treed2c6b52e3feb4628eae162bc405fb115c101fef7 /mod
parentb25783b9b6a3977df45c0b51c666c9271c8fdc98 (diff)
downloadvolse-hubzilla-2a6d3e1f940af1819182be5710eb6a1f45de1929.tar.gz
volse-hubzilla-2a6d3e1f940af1819182be5710eb6a1f45de1929.tar.bz2
volse-hubzilla-2a6d3e1f940af1819182be5710eb6a1f45de1929.zip
make sure we get the correct URL. Also redirect back again (essentially perform a no-op) when using reverse magic auth and we can't find a channel.
Diffstat (limited to 'mod')
-rw-r--r--mod/magic.php19
1 files changed, 10 insertions, 9 deletions
diff --git a/mod/magic.php b/mod/magic.php
index faa62850b..09a2e8a51 100644
--- a/mod/magic.php
+++ b/mod/magic.php
@@ -7,6 +7,7 @@ function magic_init(&$a) {
$addr = ((x($_REQUEST,'addr')) ? $_REQUEST['addr'] : '');
$hash = ((x($_REQUEST,'hash')) ? $_REQUEST['hash'] : '');
$dest = ((x($_REQUEST,'dest')) ? $_REQUEST['dest'] : '');
+ $rev = ((x($_REQUEST,'rev')) ? intval($_REQUEST['rev']) : 0);
if($hash) {
$x = q("select xchan.xchan_url, hubloc.* from xchan left join hubloc on xchan_hash = hubloc_hash
@@ -25,18 +26,14 @@ function magic_init(&$a) {
else {
// See if we know anybody at the dest site that will unlock the door for us
$b = explode('/',$dest);
- $u = '';
- if(count($b) >= 2)
+
+ if(count($b) >= 2) {
$u = $b[0] . '//' . $b[2];
- logger('mod_magic: fallback: ' . $b . ' -> ' . $u);
-
- if($u) {
$x = q("select xchan.xchan_url, hubloc.* from xchan left join hubloc on xchan_hash = hubloc_hash
where hubloc_url = '%s' order by hubloc_id desc limit 1",
dbesc($u)
);
}
-
}
if(! $x) {
@@ -59,9 +56,13 @@ function magic_init(&$a) {
}
if(! $x) {
- logger('mod_magic: channel not found.' . print_r($_REQUEST,true));
- notice( t('Channel not found.') . EOL);
- return;
+ if($rev)
+ goaway($dest);
+ else {
+ logger('mod_magic: channel not found.' . print_r($_REQUEST,true));
+ notice( t('Channel not found.') . EOL);
+ return;
+ }
}
// This is ready-made for a plugin that provides a blacklist or "ask me" before blindly authenticating.