Project

General

Profile

1 13614 aaronmk
<?php
2 13694 aaronmk
function login__from_env()
3
{
4
	return $_SERVER["PHP_AUTH_USER"]
5
		.($_SERVER["PHP_AUTH_PW"] !== "" ? ":".$_SERVER["PHP_AUTH_PW"] : "");
6
}
7
8 13614 aaronmk
function user2path($user) # multiple @ and nested . OK: a@b.c@url -> url?b.c.a
9 13695 aaronmk
{
10 13701 aaronmk
	$path = $user;
11
12 13698 aaronmk
	# remove padding used to visually separate elements:__x__@y__@url -> x@y@url
13 13701 aaronmk
	$path = preg_replace('/\b__|__\b/', '', $path);
14
15 13712 aaronmk
	# remove linewraps: x_-_.y@url -> x.y@url
16 13711 aaronmk
	# the _ are needed to work in Google spreadsheets
17
	$path = str_replace('_-_', '', $path);
18
19 13720 aaronmk
	# remove insertion comments: [c]x[d]@url -> x@url
20 13718 aaronmk
	# use [] because in writing, [] denotes insertion
21 13710 aaronmk
	# can't use : for this because Firefox will not update the "password" for
22
	#  the website with the new value after the :
23 13718 aaronmk
	$path = preg_replace('/\[.*?\]/', '', $path);
24 13702 aaronmk
25 13720 aaronmk
	# remove deletion comments: (c_)x(_d)@url -> c_x_d@url
26
	# use () because in editing, () denotes something to remove
27
	# deletion indicates that the semantic meaning of the () portion does not
28
	#  apply, even though it's included in the linked term name
29
	$path = preg_replace('/[()]/', '', $path);
30
31 13695 aaronmk
	# translate reverse @-paths into forward .-paths
32 13701 aaronmk
	$path = implode(".", array_reverse(explode("@", $path)));
33
34
	return $path;
35 13695 aaronmk
}
36 13614 aaronmk
37
if (!isset($_SERVER["PHP_AUTH_USER"])) # browser first omits Authorization
38
{
39
	header('WWW-Authenticate: Basic realm="please leave username/password blank or as filled in"');
40
}
41
else
42
{
43 13668 aaronmk
	$dest = preg_replace('!\b/!', "./", $_SERVER["SCRIPT_URI"])."?";
44
		# append trailing . to host to prevent infinite redirect loop
45 13665 aaronmk
	if ($_SERVER["PHP_AUTH_USER"] !== "") # prepend to query string
46 13694 aaronmk
		$dest .= "."/*force dotpath*/.user2path(login__from_env());
47 13665 aaronmk
	$dest .= $_SERVER["QUERY_STRING"];
48 13625 aaronmk
49
	header("Location: ".$dest);
50 13614 aaronmk
}
51
?>