Fixed forum authentication

This commit is contained in:
WolverinDEV 2018-10-31 22:12:54 +01:00
parent b5252faad7
commit e3cafc5e72
2 changed files with 44 additions and 3 deletions

View file

@ -144,7 +144,48 @@
"path" => "./",
"local-path" => "./web/html/"
]
],
/* special web.teaspeak.de only auth files */
[ /* login page and api */
"web-only" => true,
"type" => "html",
"search-pattern" => "/.*\.(php|html)/",
"build-target" => "dev|rel",
"search-depth" => 1,
"path" => "./",
"local-path" => "./auth/"
],
[ /* javascript */
"web-only" => true,
"type" => "js",
"search-pattern" => "/.*\.js$/",
"build-target" => "dev|rel",
"path" => "js/",
"local-path" => "./auth/js/"
],
[ /* web css files */
"web-only" => true,
"type" => "css",
"search-pattern" => "/.*\.css$/",
"build-target" => "dev|rel",
"path" => "css/",
"local-path" => "./auth/css/"
],
[ /* certificates */
"web-only" => true,
"type" => "pem",
"search-pattern" => "/.*\.pem$/",
"build-target" => "dev|rel",
"path" => "certs/",
"local-path" => "./auth/certs/"
],
];
function list_dir($base_dir, $match = null, $depth = -1, &$results = array(), $dir = "") {

View file

@ -156,9 +156,9 @@
<div style=\"align-self: center; position: fixed; right: 5px;\">";
if (logged_in()) {
$TAG = $TAG . "<a href=\"" . "x" . "auth.php?type=logout\">logout</a>";
$TAG = $TAG . "<a href=\"" . authPath() . "auth.php?type=logout\">logout</a>";
} else {
$TAG = $TAG . "<a href=\"" . "y" . "login.php\">Login</a> via the TeaSpeak forum.";
$TAG = $TAG . "<a href=\"" . authPath() . "login.php\">Login</a> via the TeaSpeak forum.";
}
echo $TAG . "</div>