Packet-Fence/admin/user/password_function.php
2025-06-28 06:23:17 +05:30

105 lines
3.2 KiB
PHP

<?php
session_start();
$activePage = 'User';
include("../master.php");
include("../elements/functions.php");
if (isset($_SESSION['token'])) {
$token = $_SESSION['token'];
$pid= $_SESSION['pid'];
$valid= $_SESSION['valid'];
$expire=$_SESSION['expire'];
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
//-------------------API CALL--------------------------------//
$jsonFilePath = __DIR__ . '/../urls/api_endpoints.json';
$jsonData = file_get_contents($jsonFilePath);
$endpoints = json_decode($jsonData, true);
$url = $endpoints['password_function'] . $pid . "/password?";
//-----------------ENDS HERE-------------------------------------//
$data = [
"access_level" => $_SESSION['acess'],
"password" => $_POST['password'],
"pid" => $pid,
"expiration" =>$expire,
"valid_from" => $valid, //------------------ on work-------------------------//
"category" => $_SESSION['role_id'],
"access_duration" => $_SESSION['access_duration'],
"unregdate" => $_SESSION['unregdate']
];
$response = make_post_request($url, $data);
if ($response === FALSE) {
$response = json_encode(['status' => 'error', 'message' => 'An error occurred']);
}
$response_data = json_decode($response, true);
if ($response_data['status'] === 201) {
//echo '<script>window.location.href = "../user/userlist.php";</script>';
$_SESSION['message']="User Created Successfully";
$redirect_page="../user/userlist.php";
} elseif ($response_data['status'] === 409) {
$_SESSION['message'] = 'User not created . User already exists';
$redirect_page="../user/createuser.php";
}
else{
$_SESSION['message'] = $data["access_level"];
$redirect_page="../user/createuser.php";
}
} else {
header('Location: ../index.php');
exit();
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Create User</title>
<link rel="stylesheet" href="/admin/css/create_user.css" type="text/css">
</head>
<body>
<div id="popup" class="popup">
<div class="popup-user-create-meg">
<p id="popup-message"></p>
</div>
</div>
<script>
<?php if (isset($_SESSION['message'])): ?>
var popup = document.getElementById("popup");
var popupMessage = document.getElementById("popup-message");
popupMessage.textContent = "<?php echo $_SESSION['message']; ?>";
popup.style.display = "block";
setTimeout(function() {
popup.style.display = "none";
window.location.href = "<?php echo $redirect_page; ?>";// Redirect after 3 seconds
}, 2000); // Automatically close the popup after 3 seconds
<?php unset($_SESSION['message']); // Clear the message after displaying ?>
<?php endif; ?>
</script>
</body>
</html>