You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

732 lines
30 KiB

<?php
$transaction_details = pp_get_transation($payment_id);
$setting = pp_get_settings();
$faq_list = pp_get_faq();
$support_links = pp_get_support_links();
$plugin_slug = 'eps';
$plugin_info = pp_get_plugin_info($plugin_slug);
$settings = pp_get_plugin_setting($plugin_slug);
$transaction_amount = convertToDefault($transaction_details['response'][0]['transaction_amount'], $transaction_details['response'][0]['transaction_currency'], $settings['currency']);
$transaction_fee = safeNumber($settings['fixed_charge']) + ($transaction_amount * (safeNumber($settings['percent_charge']) / 100));
$transaction_amount = $transaction_amount+$transaction_fee;
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo $settings['display_name']?> - <?php echo $setting['response'][0]['site_name']?></title>
<link rel="icon" type="image/x-icon" href="<?php if(isset($setting['response'][0]['favicon'])){if($setting['response'][0]['favicon'] == "--"){echo 'https://cdn.piprapay.com/media/favicon.png';}else{echo $setting['response'][0]['favicon'];};}else{echo 'https://cdn.piprapay.com/media/favicon.png';}?>">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<style>
:root {
--secondary: #00cec9;
--success: #00b894;
--danger: #d63031;
--warning: #fdcb6e;
--dark: #2d3436;
--light: #f5f6fa;
--gray: #636e72;
--border: #dfe6e9;
}
body {
font-family: 'Inter', sans-serif;
background-color: #f8f9fa;
color: var(--dark);
line-height: 1.6;
}
.accordion-button:not(.collapsed) {
color: var(--bs-accordion-active-color);
background-color: transparent;
box-shadow: inset 0 calc(-1 * transparent) 0 transparent;
}
.payment-container {
max-width: 600px;
margin: 2rem auto;
background: white;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
overflow: hidden;
}
.payment-header {
display: flex;
background: var(--light);
border-radius: 8px;
padding: 1rem;
align-items: center;
margin-top: 1.5rem;
margin-left: 1.5rem;
color: <?php echo $setting['response'][0]['global_text_color']?>;
margin-right: 1.5rem;
justify-content: space-between;
}
.payment-logo {
font-weight: 700;
font-size: 1.5rem;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.payment-logo img {
height: 30px;
}
.merchant-info {
margin-top: 1rem;
font-size: 0.9rem;
opacity: 0.9;
}
.payment-body {
padding: 1.5rem;
}
/* Updated Payment Amount Section */
.payment-amount {
display: flex;
background: var(--light);
border-radius: 8px;
padding: 1rem;
margin-bottom: 1.5rem;
align-items: center;
position: relative;
}
.merchant-logo {
width: 50px;
height: 50px;
border-radius: 8px;
object-fit: cover;
margin-right: 1rem;
background: white;
padding: 5px;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.merchant-details {
flex: 1;
}
.merchant-name {
font-weight: 600;
margin-bottom: 0.25rem;
}
.amount-value {
font-size: 1.5rem;
font-weight: 700;
color: <?php echo $setting['response'][0]['global_text_color']?>;
}
.amount-label {
font-size: 0.8rem;
color: var(--gray);
}
.payment-actions {
display: flex;
gap: 0.5rem;
position: absolute;
right: 1rem;
bottom: 1rem;
}
.action-btn {
width: 30px;
height: 30px;
border-radius: 50%;
background: white;
border: none;
color: var(--gray);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.2s;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.action-btn:hover {
background: <?php echo $setting['response'][0]['active_tab_color']?>;
color: <?php echo $setting['response'][0]['active_tab_text_color']?>;
transform: translateY(-2px);
}
.action-btn i {
font-size: 0.8rem;
}
.method-tabs {
display: flex;
border-bottom: 1px solid var(--border);
margin-bottom: 1rem;
}
.method-tab {
padding: 0.75rem 1rem;
font-weight: 500;
cursor: pointer;
border-bottom: 2px solid transparent;
transition: all 0.2s;
}
.method-tab.active {
border-bottom-color: <?php echo $setting['response'][0]['active_tab_color']?>;
color: <?php echo $setting['response'][0]['active_tab_color']?>;
}
.method-content {
display: none;
}
.method-content.active {
display: block;
}
.card-form .form-group {
margin-bottom: 1rem;
}
.form-label {
font-size: 0.85rem;
font-weight: 500;
margin-bottom: 0.5rem;
display: block;
}
.form-control {
width: 100%;
padding: 0.75rem 1rem;
border: 1px solid var(--border);
border-radius: 8px;
font-size: 1rem;
transition: all 0.2s;
}
.form-control:focus {
border-color: <?php echo $setting['response'][0]['global_text_color']?>;
box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
outline: none;
}
.card-icons {
display: flex;
gap: 0.5rem;
margin-top: 0.5rem;
}
.card-icon {
width: 40px;
height: 25px;
object-fit: contain;
opacity: 0.3;
transition: opacity 0.2s;
}
.card-icon.active {
opacity: 1;
}
.row {
display: flex;
gap: 1rem;
}
.col {
flex: 1;
}
.btn-pay {
width: 100%;
padding: 1rem;
background: <?php echo $setting['response'][0]['primary_button_color']?>;
color: <?php echo $setting['response'][0]['button_text_color']?>;
border: none;
border-radius: 8px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.2s;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}
.btn-pay:hover {
background: <?php echo $setting['response'][0]['button_hover_color']?>;
color: <?php echo $setting['response'][0]['button_hover_text_color']?>;
transform: translateY(-1px);
}
.btn-pay:active {
transform: translateY(0);
}
.upi-form {
text-align: center;
}
.upi-id {
background: var(--light);
border-radius: 8px;
padding: 1rem;
font-weight: 500;
margin-bottom: 1rem;
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}
.qr-code {
width: 200px;
height: 200px;
margin: 1rem auto;
background: #f0f0f0;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: var(--gray);
}
.netbanking-form select {
width: 100%;
padding: 0.75rem 1rem;
border: 1px solid var(--border);
border-radius: 8px;
font-size: 1rem;
margin-bottom: 1rem;
}
.payment-footer {
padding: 1rem 1.5rem;
border-top: 1px solid var(--border);
font-size: 0.8rem;
color: var(--gray);
text-align: center;
}
.secure-badge {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
margin-top: 0.5rem;
}
.processing {
display: none;
text-align: center;
padding: 2rem;
}
.spinner {
width: 40px;
height: 40px;
border: 4px solid rgba(0, 0, 0, 0.1);
border-left-color: <?php echo $setting['response'][0]['global_text_color']?>;
border-radius: 50%;
animation: spin 1s linear infinite;
margin: 0 auto 1rem;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
@media (max-width: 576px) {
.payment-container {
margin: 0;
border-radius: 0;
min-height: 100vh;
}
.payment-amount {
flex-direction: column;
align-items: flex-start;
}
.merchant-logo {
margin-right: 0;
margin-bottom: 1rem;
}
.payment-actions {
position: static;
margin-top: 1rem;
align-self: flex-end;
}
}
.custom-contact-grid {
display: flex;
flex-wrap: wrap;
gap: 16px;
}
.contact-box {
flex: 1 1 calc(50% - 8px);
text-decoration: none;
}
.contact-inner {
display: flex;
align-items: center;
padding: 16px;
background: #f8f9fa;
border-radius: 12px;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
transition: 0.3s;
}
.contact-inner:hover {
background-color: #e2e6ea;
}
.contact-inner img {
width: 28px;
height: 28px;
margin-right: 12px;
}
.contact-inner span {
font-size: 14px;
color: #212529;
}
@media (max-width: 767px) {
.contact-box {
flex: 1 1 100%;
}
}
.list-unstyled{
border: 1px solid #dddddd;
border-radius: 8px;
padding: 19px;
}
.list-unstyled li{
height: 40px;
font-size: 15px;
align-items: center;
}
.list-unstyled li button{
font-size: 10px;
}
.bg-primary{
background-color: <?php echo hexToRgba($setting['response'][0]['global_text_color'], 0.1);?> !important;
}
.text-primary{
color: <?php echo $setting['response'][0]['global_text_color']?> !important;
}
.btn-primary{
background-color: <?php echo $setting['response'][0]['primary_button_color'];?> !important;
border: 1px solid <?php echo $setting['response'][0]['primary_button_color'];?> !important;
color: <?php echo $setting['response'][0]['button_text_color'];?> !important;
}
</style>
</head>
<body>
<div class="payment-container">
<div class="payment-header">
<i class="fas fa-arrow-left" style=" cursor: pointer; " onclick="location.href='<?php echo pp_get_paymentlink($payment_id)?>'"></i>
</div>
<div class="payment-body">
<!-- Updated Payment Amount Section -->
<center><img src="<?php echo pp_get_site_url().'/pp-content/plugins/'.$plugin_info['plugin_dir'].'/'.$plugin_slug.'/assets/icon.png';?>" style=" height: 50px; margin-bottom: 20px; "></center>
<div class="payment-amount">
<img src="<?php if(isset($setting['response'][0]['favicon'])){if($setting['response'][0]['favicon'] == "--"){echo 'https://cdn.piprapay.com/media/favicon.png';}else{echo $setting['response'][0]['favicon'];};}else{echo 'https://cdn.piprapay.com/media/favicon.png';}?>" alt="Merchant Logo" class="merchant-logo">
<div class="merchant-details">
<div class="merchant-name"><?php echo $setting['response'][0]['site_name']?></div>
<div class="amount-value"><?php echo number_format($transaction_amount,2).' '.$settings['currency']?></div>
</div>
</div>
<div class="payment-form">
<?php
if ($settings['store_mode'] == "sandbox") {
$base_url = "https://sandboxpgapi.eps.com.bd";
}else{
$base_url = "https://pgapi.eps.com.bd";
}
if(isset($_GET['ppstatus'])){
$ppstatus = $_GET['ppstatus'] ?? '';
if($ppstatus == "success"){
$Status = $_GET['Status'] ?? '';
if($Status == "Success"){
$username = $settings['username'];
$password = $settings['password'];
$hashKey = $settings['hash_key']; // DO NOT decode!
// Generate HMAC SHA512 using raw key (not base64-decoded)
$hmac = hash_hmac('sha512', $username, $hashKey, true);
$xHash = base64_encode($hmac);
$url = $base_url."/v1/Auth/GetToken";
$requestData = [
"userName" => $username,
"password" => $password
];
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($requestData));
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Content-Type: application/json",
"x-hash: $xHash"
]);
$response = curl_exec($ch);
curl_close($ch);
$responseData = json_decode($response, true);
if($responseData['token'] == null){
?>
<div class="alert alert-danger" role="alert">
<?php echo $response?>
</div>
<?php
}else{
$merchantTransactionId = $_GET['MerchantTransactionId'] ?? ''; // use the same one from your Initialize Payment
$hashKey = $settings['hash_key']; // raw string, not base64 decoded
$token = $responseData['token']; // replace with valid EPS token
// Step 1: Create HMACSHA512 hash using merchantTransactionId
$hmac = hash_hmac('sha512', $merchantTransactionId, $hashKey, true);
$xHash = base64_encode($hmac);
// Step 2: Build API URL
$url = $base_url."/v1/EPSEngine/CheckMerchantTransactionStatus?merchantTransactionId=$merchantTransactionId";
// Step 3: cURL Setup
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"x-hash: $xHash",
"Authorization: Bearer $token"
]);
$response = curl_exec($ch);
curl_close($ch);
// Step 4: Show parsed response
$responseData = json_decode($response, true);
if (isset($responseData['Status']) && strtolower($responseData['Status']) === 'success' && !empty($responseData['EPSTransactionId']) && !empty($responseData['TotalAmount']) && is_numeric($responseData['TotalAmount'])) {
$check_transactionid = pp_check_transaction_exits($responseData['EPSTransactionId']);
if($check_transactionid['status'] == false){
if(pp_set_transaction_byid($responseData['ValueA'], $plugin_slug, $plugin_info['plugin_name'], $responseData['FinancialEntity'], $responseData['EPSTransactionId'], 'completed')){
echo '<script>location.href="'.pp_get_paymentlink($responseData['ValueA']).'";</script>';
}
}else{
?>
<div class="alert alert-danger" role="alert">
Transaction ID already exits
</div>
<?php
}
}else{
?>
<div class="alert alert-danger" role="alert">
Invalid Transaction
</div>
<?php
}
}
}else{
?>
<div class="alert alert-danger" role="alert">
Transaction <?php echo $Status?>
</div>
<?php
}
}else{
?>
<div class="alert alert-danger" role="alert">
Transaction <?php echo $ppstatus?>
</div>
<?php
}
}else{
$username = $settings['username'];
$password = $settings['password'];
$hashKey = $settings['hash_key']; // DO NOT decode!
// Generate HMAC SHA512 using raw key (not base64-decoded)
$hmac = hash_hmac('sha512', $username, $hashKey, true);
$xHash = base64_encode($hmac);
$url = $base_url."/v1/Auth/GetToken";
$requestData = [
"userName" => $username,
"password" => $password
];
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($requestData));
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Content-Type: application/json",
"x-hash: $xHash"
]);
$response = curl_exec($ch);
curl_close($ch);
$responseData = json_decode($response, true);
if($responseData['token'] == null){
?>
<div class="alert alert-danger" role="alert">
<?php echo $response?>
</div>
<?php
}else{
$separator = (strpos(getCurrentUrl(), '?') !== false) ? '&' : '?';
$tran_id = rand();
if (filter_var($transaction_details['response'][0]['c_email_mobile'], FILTER_VALIDATE_EMAIL)) {
$cust_phone = $setting['response'][0]['support_phone_number'];
$cust_email = $transaction_details['response'][0]['c_email_mobile'];
}else{
$cust_phone = $transaction_details['response'][0]['c_email_mobile'];
$cust_email = $setting['response'][0]['support_email_address'];
}
$merchantId = $settings['merchant_id'];
$storeId = $settings['store_id'];
$hashKey = $settings['hash_key']; // use as raw string, NOT decoded
$token = $responseData['token']; // Replace this with the real token
// Dynamic Transaction IDs
$customerOrderId = "ORDER" . rand(10000, 99999);
$merchantTransactionId = "MTID" . rand(1000000, 9999999);
// Step 1: Create HMACSHA512 from merchantTransactionId
$hmac = hash_hmac('sha512', $merchantTransactionId, $hashKey, true);
$xHash = base64_encode($hmac);
// Step 2: Prepare payment data
$payload = [
"storeId" => $storeId,
"CustomerOrderId" => $customerOrderId,
"merchantTransactionId" => $merchantTransactionId,
"transactionTypeId" => 1, // 1 = Web
"financialEntityId" => 0,
"transitionStatusId" => 0,
"totalAmount" => $transaction_amount,
"ipAddress" => $_SERVER['REMOTE_ADDR'],
"version" => "1",
"successUrl" => getCurrentUrl() . $separator . "ppstatus=success",
"failUrl" => getCurrentUrl() . $separator . "ppstatus=cancel",
"cancelUrl" => getCurrentUrl() . $separator . "ppstatus=cancel",
"customerName" => $transaction_details['response'][0]['c_name'],
"customerEmail" => $cust_email,
"CustomerAddress" => "Uttara, Dhaka-1230",
"CustomerAddress2" => "Uttara, Khulna-123011",
"CustomerCity" => "Khulna",
"CustomerState" => "Khulna",
"CustomerPostcode" => "12301",
"CustomerCountry" => "BD",
"CustomerPhone" => $cust_phone,
"ShipmentName" => "ABC",
"ShipmentAddress" => "Address",
"ShipmentAddress2" => "Address",
"ShipmentCity" => "City Name",
"ShipmentState" => "State Name",
"ShipmentPostcode" => "1230",
"ShipmentCountry" => "BD",
"ValueA" => $payment_id,
"ValueB" => "",
"ValueC" => "",
"ValueD" => "",
"ShippingMethod" => "NO",
"NoOfItem" => "1",
"ProductName" => "Candy",
"ProductProfile" => "general",
"ProductCategory" => "Demo",
"ProductList" => [
[
"ProductName" => "Productname1",
"NoOfItem" => "2",
"ProductProfile" => "ProductProfile1",
"ProductCategory" => "ProductImageURl",
"ProductPrice" => "105"
]
]
];
// Step 3: Send POST request to EPS Initialize API
$url = $base_url."/v1/EPSEngine/InitializeEPS";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($payload));
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Content-Type: application/json",
"x-hash: $xHash",
"Authorization: Bearer $token"
]);
$response = curl_exec($ch);
curl_close($ch);
// Parse and show result
$responseData = json_decode($response, true);
// Optional: Redirect to payment page
if (!empty($responseData['RedirectURL'])) {
echo '<script>location.href="'.$responseData['RedirectURL'].'"</script>';
}else{
?>
<div class="alert alert-danger" role="alert">
<?php echo $response?>
</div>
<?php
}
}
}
?>
</div>
</div>
<div class="payment-footer">
<div>Your payment is secured with 256-bit encryption</div>
<div class="secure-badge">
<span>Powered by <a href="https://piprapay.com/" target="blank" style="color: <?php echo $setting['response'][0]['global_text_color']?>; text-decoration: none"><strong style="cursor: pointer">PipraPay</strong></a></span>
</div>
</div>
</div>
<!-- Bootstrap JS Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>