This commit is contained in:
David Kalemi 2025-06-30 10:37:32 +02:00
commit 36ea386e04

View File

@ -20,7 +20,7 @@ class UserController
public function loginUser() public function loginUser()
{ {
$erg = array(); $erg = array();
$erg = $this->userModel->loginUser($_POST["username"], $_POST["password"]); $erg = $this->userModel->loginUser($this->sanitize($_POST["username"]), $this->sanitize($_POST["password"]) );
if ($erg["success"] == true) { if ($erg["success"] == true) {
header("Location: ?controller=Welcome&do=showWelcome"); header("Location: ?controller=Welcome&do=showWelcome");
exit(); exit();
@ -43,7 +43,7 @@ class UserController
public function registerUser() public function registerUser()
{ {
$erg = array(); $erg = array();
$erg = $this->userModel->registerUser($_POST["username"], $_POST["password"]); $erg = $this->userModel->registerUser($this->sanitize($_POST["username"]), $this->sanitize($_POST["password"]) );
if ($erg["success"] == true) { if ($erg["success"] == true) {
header("Location: ?controller=User&do=showUserLoginForm"); header("Location: ?controller=User&do=showUserLoginForm");
exit(); exit();
@ -51,10 +51,10 @@ class UserController
else { else {
$this->view->setDoMethodName("showUserRegisterForm"); $this->view->setDoMethodName("showUserRegisterForm");
$message = $erg['message']; $message = $this->sanitize($erg['message']);
echo "<script type='text/javascript'>alert(\"$message\");</script>"; echo "<script type='text/javascript'>alert(\"$message\");</script>";
$this->view->setVars([ $this->view->setVars([
"errmsg" => $erg["message"] "errmsg" => $message
]); ]);
$this->showUserRegisterForm(); $this->showUserRegisterForm();
} }
@ -69,4 +69,8 @@ class UserController
{ {
} }
function sanitize($data, $flags = ENT_QUOTES, $encoding = 'UTF-8') {
return htmlspecialchars((string)$data, $flags, $encoding);
}
} }