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.
597 lines
22 KiB
597 lines
22 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 = 'paystation';
|
|
$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['merchant_mode'] == "sandbox") {
|
|
$base_url = "https://sandbox.paystation.com.bd";
|
|
}else{
|
|
$base_url = "https://api.paystation.com.bd";
|
|
}
|
|
|
|
if(isset($_GET['status'])){
|
|
if($_GET['status'] == "Successful"){
|
|
$header=array('merchantId:'.$settings['merchant_id']);
|
|
$body=array('invoice_number' => $_GET['invoice_number']);
|
|
|
|
$url = curl_init($base_url.'/transaction-status');
|
|
curl_setopt($url,CURLOPT_HTTPHEADER, $header);
|
|
curl_setopt($url,CURLOPT_CUSTOMREQUEST, "POST");
|
|
curl_setopt($url,CURLOPT_RETURNTRANSFER, true);
|
|
curl_setopt($url,CURLOPT_SSL_VERIFYPEER, false);
|
|
curl_setopt($url,CURLOPT_POSTFIELDS, $body);
|
|
curl_setopt($url,CURLOPT_FOLLOWLOCATION, 1);
|
|
$responseData=curl_exec($url);
|
|
curl_close($url);
|
|
|
|
$decode_response = json_decode($responseData, true);
|
|
|
|
if($decode_response['status_code'] == "200" && $decode_response['status'] == "success"){
|
|
if($decode_response['data']['trx_status'] == "successful" || $decode_response['data']['trx_status'] == "Success"){
|
|
$verified_order_id = $decode_response['data']['invoice_number'];
|
|
$verified_trx_id = $decode_response['data']['trx_id'];
|
|
$payer_mobile_no = $decode_response['data']['payer_mobile_no'];
|
|
|
|
$check_transactionid = pp_check_transaction_exits($verified_trx_id);
|
|
if($check_transactionid['status'] == false){
|
|
if(pp_set_transaction_byid($payment_id, $plugin_slug, $plugin_info['plugin_name'], $payer_mobile_no, $verified_trx_id, 'completed')){
|
|
echo '<script>location.href="'.pp_get_paymentlink($payment_id).'";</script>';
|
|
}
|
|
}else{
|
|
?>
|
|
<div class="alert alert-danger" role="alert">
|
|
Transaction ID already exits
|
|
</div>
|
|
<?php
|
|
}
|
|
}else{
|
|
?>
|
|
<div class="alert alert-danger" role="alert">
|
|
<?php echo $responseData?>
|
|
</div>
|
|
<?php
|
|
}
|
|
}else{
|
|
?>
|
|
<div class="alert alert-danger" role="alert">
|
|
<?php echo $responseData?>
|
|
</div>
|
|
<?php
|
|
}
|
|
}else{
|
|
?>
|
|
<div class="alert alert-danger" role="alert">
|
|
Transaction <?php echo $_GET['status']?>
|
|
</div>
|
|
<?php
|
|
}
|
|
}else{
|
|
$url = $base_url."/initiate-payment";
|
|
|
|
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'];
|
|
}
|
|
|
|
$curl = curl_init();
|
|
|
|
$postFields = array(
|
|
'invoice_number' => rand(),
|
|
'currency' => 'BDT',
|
|
'payment_amount' => $transaction_amount,
|
|
'reference' => $payment_id,
|
|
'cust_name' => $transaction_details['response'][0]['c_name'],
|
|
'cust_phone' => $cust_phone,
|
|
'cust_email' => $cust_email,
|
|
'cust_address' => "Bangladesh",
|
|
'pay_with_charge' => $settings['pay_with_charge'],
|
|
'callback_url' => getCurrentUrl(),
|
|
|
|
'checkout_items' => $settings['checkout_items'],
|
|
|
|
'merchantId' => $settings['merchant_id'],
|
|
'password' => $settings['merchant_password']
|
|
);
|
|
|
|
curl_setopt_array($curl, array(
|
|
CURLOPT_URL => $url,
|
|
CURLOPT_RETURNTRANSFER => true,
|
|
CURLOPT_ENCODING => '',
|
|
CURLOPT_MAXREDIRS => 10,
|
|
CURLOPT_TIMEOUT => 0,
|
|
CURLOPT_FOLLOWLOCATION => true,
|
|
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
|
|
CURLOPT_CUSTOMREQUEST => 'POST',
|
|
CURLOPT_POSTFIELDS => $postFields,
|
|
));
|
|
|
|
$response = curl_exec($curl);
|
|
curl_close($curl);
|
|
|
|
$response_curl = json_decode($response, true);
|
|
|
|
if(isset($response_curl['payment_url'])){
|
|
echo '<script>location.href="'.$response_curl['payment_url'].'"</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>
|