mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
This adds a URL mapping library that can be used to implement virtual paths. Also, "web/html/index.php" is moved to "web/html/home.php" and "web/html/index.php" becomes a routing front end that maps virtual paths to corresponding files. To enable the virtual path feature, all requests need to be redirected to the "index.php" routing script. If you use lighttpd, following rewrite rule can be used: url.rewrite = ( "^(.*)$" => "/index.php/$1" ) A similar rule can be used for Apache (using mod_rewrite). Note that the current routing front end only works if PATH_INFO is provided. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
39 lines
698 B
PHP
39 lines
698 B
PHP
<?php
|
|
|
|
$ROUTES = array(
|
|
'' => 'home.php',
|
|
'/index.php' => 'home.php',
|
|
'/packages' => 'packages.php',
|
|
'/register' => 'account.php',
|
|
'/accounts' => 'account.php',
|
|
'/login' => 'login.php',
|
|
'/logout' => 'logout.php',
|
|
'/passreset' => 'passreset.php',
|
|
'/rpc' => 'rpc.php',
|
|
'/rss' => 'rss.php',
|
|
'/submit' => 'pkgsubmit.php',
|
|
'/tu' => 'tu.php',
|
|
'/voters' => 'voters.php',
|
|
'/addvote' => 'addvote.php',
|
|
);
|
|
|
|
function get_route($path) {
|
|
global $ROUTES;
|
|
|
|
if (isset($ROUTES[$path])) {
|
|
return $ROUTES[$path];
|
|
} else {
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
function get_uri($path) {
|
|
global $USE_VIRTUAL_URLS;
|
|
global $ROUTES;
|
|
|
|
if ($USE_VIRTUAL_URLS) {
|
|
return $path;
|
|
} else {
|
|
return get_route($path);
|
|
}
|
|
}
|