Merge pull request #7674 from annando/fix-magic-again
Fix magic auth for redirects with non profile paths
This commit is contained in:
commit
4d8ca5c9c2
2 changed files with 4 additions and 7 deletions
|
@ -192,7 +192,7 @@ function redir_magic($a, $cid, $url)
|
||||||
$serverret = Network::curl($basepath . '/magic');
|
$serverret = Network::curl($basepath . '/magic');
|
||||||
if ($serverret->isSuccess()) {
|
if ($serverret->isSuccess()) {
|
||||||
$separator = strpos($target_url, '?') ? '&' : '?';
|
$separator = strpos($target_url, '?') ? '&' : '?';
|
||||||
$target_url .= $separator . 'zrl=' . urlencode($visitor);
|
$target_url .= $separator . 'zrl=' . urlencode($visitor) . '&addr=' . urlencode($contact_url);
|
||||||
|
|
||||||
Logger::info('Redirecting with magic', ['target' => $target_url, 'visitor' => $visitor, 'contact' => $contact_url]);
|
Logger::info('Redirecting with magic', ['target' => $target_url, 'visitor' => $visitor, 'contact' => $contact_url]);
|
||||||
$a->redirect($target_url);
|
$a->redirect($target_url);
|
||||||
|
|
|
@ -33,13 +33,10 @@ class Magic extends BaseModule
|
||||||
$test = (!empty($_REQUEST['test']) ? intval($_REQUEST['test']) : 0);
|
$test = (!empty($_REQUEST['test']) ? intval($_REQUEST['test']) : 0);
|
||||||
$owa = (!empty($_REQUEST['owa']) ? intval($_REQUEST['owa']) : 0);
|
$owa = (!empty($_REQUEST['owa']) ? intval($_REQUEST['owa']) : 0);
|
||||||
|
|
||||||
// NOTE: I guess $dest isn't just the profile url (could be also
|
if (!empty($addr)) {
|
||||||
// other profile pages e.g. photo). We need to find a solution
|
|
||||||
// to be able to redirct to other pages than the contact profile.
|
|
||||||
$cid = Contact::getIdForURL($dest);
|
|
||||||
|
|
||||||
if (!$cid && !empty($addr)) {
|
|
||||||
$cid = Contact::getIdForURL($addr);
|
$cid = Contact::getIdForURL($addr);
|
||||||
|
} else {
|
||||||
|
$cid = Contact::getIdForURL($dest);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$cid) {
|
if (!$cid) {
|
||||||
|
|
Loading…
Reference in a new issue