Fixed forum authentication
This commit is contained in:
parent
b5252faad7
commit
e3cafc5e72
2 changed files with 44 additions and 3 deletions
43
files.php
43
files.php
|
@ -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 = "") {
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue