started working on moving hard-coded things to config
parent
2c91728544
commit
03e8a27a7d
|
@ -11,7 +11,5 @@ A short description of what the variables do and where they should go:
|
|||
* `%CONTENT_DIR%` (anywhere in code) → the path to the ThreadR directory (without domain name)
|
||||
* `%STYLESHEET%` (in HTML) → adds the tag linking the stylesheet
|
||||
* `%REQUIRE_LOGIN%` (in PHP code, before any non-header data is sent to client) → sends users to the login page if they are not logged in
|
||||
### [navbar.template](./navbar.template), [banner_cookies.template](./banner_cookies.template)
|
||||
file templates for variables from the code variable replacement system
|
||||
### [README.md](./README.md)
|
||||
this file
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"NAVBAR":["file","macros/templates/navbar.template"],
|
||||
"BANNER_COOKIES":["file","macros/templates/banner_cookies.template"]
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"STYLESHEET":"<link rel=\"stylesheet\" type=\"text\/css\" href=\"%CONTENT_DIR%\/style.css\">",
|
||||
"REQUIRE_LOGIN":"if (!$login) { header(\"Location: https:\/\/%DOMAIN_NAME%%CONTENT_DIR%\/login\/\\?error=session\"); die(); }"
|
||||
}
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
"CONTENT_DIR":"/threadr",
|
||||
"NO_CHEAP_SESSION_STEALING":"if (isset($_SESSION['user_id'])) {if ($_SESSION['user_ip']!=$_SERVER['REMOTE_ADDR'] || $_SESSION['user_http_user_agent']!=$_SERVER['HTTP_USER_AGENT']){ $_SESSION = array(); if (ini_get(\"session.use_cookies\")){ $params = session_get_cookie_params(); setcookie(session_name(), '', time() - 42000, $params[\"path\"], $params[\"domain\"], $params[\"secure\"], $params[\"httponly\"]); } session_destroy(); header(\"Location: https://threadr.lostcave.ddnss.de/threadr/login/\\?error=session\"); die();}}",
|
||||
"NO_CHEAP_SESSION_STEALING":"if (isset($_SESSION['user_id'])) {if ($_SESSION['user_ip']!=$_SERVER['REMOTE_ADDR'] || $_SESSION['user_http_user_agent']!=$_SERVER['HTTP_USER_AGENT']){ $_SESSION = array(); if (ini_get(\"session.use_cookies\")){ $params = session_get_cookie_params(); setcookie(session_name(), '', time() - 42000, $params[\"path\"], $params[\"domain\"], $params[\"secure\"], $params[\"httponly\"]); } session_destroy(); header(\"Location: https://%DOMAIN_NAME%%CONTENT_DIR%/login/\\?error=session\"); die();}}",
|
||||
"SET_LOGIN_VARIABLE":"if (isset($_SESSION['user_id'])) { $login = true; } else { $login = false; }",
|
||||
"PLEAZE_NO_CACHE":"header('Cache-Control: no-cache, no-store, must-revalidate');header('Pragma: no-cache');header('Expires: 0');",
|
||||
"FORCE_LOGOUT":"$_SESSION = array(); if (ini_get('session.use_cookies')) { $params = session_get_cookie_params(); setcookie(session_name(), '', time() - 42000, $params['path'], $params['domain'], $params['secure'], $params['httponly']);} session_destroy();",
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"DOMAIN_NAME":["exec","sed --quiet "/domain_name=/s/.*=//p" config/names.conf"],
|
||||
"CONTENT_DIR":["exec","sed --quiet "/threadr_home=/s/.*=//p" config/names.conf"]
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"ABOUT_PAGE":["file","config/templates/about.template"]
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
# Files
|
||||
### [navbar.template](./navbar.template)
|
||||
contains the navbar, depends on a variable in PHP to determine which field on the navbar should be highlighted
|
||||
### [banner_cookies.template](./banner_cookies.template)
|
||||
contains the cookie banner
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"NAVBAR":["file","macros/navbar.template"],
|
||||
"BANNER_COOKIES":["file","macros/banner_cookies.template"],
|
||||
"ABOUT_PAGE":["file","config/about.template"]
|
||||
}
|
|
@ -1,4 +0,0 @@
|
|||
{
|
||||
"STYLESHEET":"<link rel=\"stylesheet\" type=\"text\/css\" href=\"%CONTENT_DIR%\/style.css\">",
|
||||
"REQUIRE_LOGIN":"if (!$login) { header(\"Location: https:\/\/threadr.lostcave.ddnss.de%CONTENT_DIR%\/login\/\\?error=session\"); die(); }"
|
||||
}
|
Loading…
Reference in New Issue