1 |
13614
|
aaronmk
|
<?php
|
2 |
|
|
function user2path($user) # multiple @ and nested . OK: a@b.c@url -> url?b.c.a
|
3 |
|
|
{ return implode(".", array_reverse(explode("@", $user))); }
|
4 |
|
|
|
5 |
|
|
if (!isset($_SERVER["PHP_AUTH_USER"])) # browser first omits Authorization
|
6 |
|
|
{
|
7 |
|
|
header('WWW-Authenticate: Basic realm="please leave username/password blank or as filled in"');
|
8 |
|
|
}
|
9 |
|
|
else
|
10 |
|
|
{
|
11 |
13625
|
aaronmk
|
$dest = "";
|
12 |
|
|
if ($_SERVER["PHP_AUTH_USER"] !== "")
|
13 |
|
|
{
|
14 |
|
|
$subpath = "."/*force dotpath*/.user2path($_SERVER["PHP_AUTH_USER"]);
|
15 |
|
|
if ($_SERVER["QUERY_STRING"] !== "") # prepend to query string
|
16 |
|
|
$dest = $_SERVER["SCRIPT_URL"]."?".$subpath
|
17 |
|
|
.ltrim($_SERVER["QUERY_STRING"], "@");
|
18 |
|
|
else $dest = $_SERVER["REQUEST_URI"]/*ends in ? */.$subpath;
|
19 |
|
|
}
|
20 |
|
|
else $dest = rtrim($_SERVER["REQUEST_URI"], "?"); # user empty->display page
|
21 |
|
|
|
22 |
|
|
header("Location: ".$dest);
|
23 |
13614
|
aaronmk
|
}
|
24 |
|
|
?>
|