diff options
Diffstat (limited to 'pages/api/reauthenticate.php')
-rw-r--r-- | pages/api/reauthenticate.php | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/pages/api/reauthenticate.php b/pages/api/reauthenticate.php deleted file mode 100644 index b194098..0000000 --- a/pages/api/reauthenticate.php +++ /dev/null @@ -1,49 +0,0 @@ -<?php - -require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/functions.inc"; -require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/session.inc"; global $isLoggedIn; global $isLowerLoggedIn; global $_PROFILE; - -header("Content-Type: text/plain"); - -if (!$isLoggedIn || $isLowerLoggedIn) { - header("Location: /-/login"); - die(); -} - -$newToken = generateToken(); - -if (isset($_COOKIE['PEH2_SESSION_TOKEN']) && $isLoggedIn) { - $old = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/tokens/" . $_COOKIE['PEH2_SESSION_TOKEN']), true); - - if (!isset($_GET["plain"])) { - $old["name"] = base64_decode($_GET["name"] ?? "LQo="); - } else { - $old["name"] = $_GET["name"] ?? "-"; - } - - $old["created"] = time(); - $old["addresses"] = []; - $old["last"] = time(); - $old["profile"] = $_PROFILE; - - file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/sessions/" . $newToken, json_encode($old)); - file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/tokens/" . $newToken, json_encode($_PROFILE)); -} else if (isset($_COOKIE['PEH2_SESSION_TOKEN']) && $isLowerLoggedIn) { - $old = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/sessions/" . $_COOKIE['PEH2_SESSION_TOKEN']), true); - - if (!isset($_GET["plain"])) { - $old["name"] = base64_decode($_GET["name"] ?? "LQo="); - } else { - $old["name"] = $_GET["name"] ?? "-"; - } - - $old["created"] = time(); - $old["addresses"] = []; - $old["last"] = time(); - $old["profile"] = $_PROFILE; - - file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/sessions/" . $newToken, json_encode($old)); - file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/lowertokens/" . $newToken, json_encode($_PROFILE)); -} - -die($newToken);
\ No newline at end of file |