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.

671 lines
27 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 = 'nagad-merchant';
$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;
if(isset($_POST['nagad-merchant'])){
if($_POST['trxid'] == ""){
echo json_encode(["status" => "false", "message" => "Invalid Transaction ID", "numberbox" => "false"]);
}else{
$check_transactionid = pp_check_transaction_exits($_POST['trxid']);
if($check_transactionid['status'] == false){
$verify_status = pp_verify_transaction($payment_id, $plugin_slug, 'Nagad', $_POST['trxid']);
if($verify_status['status'] == true){
if(pp_set_transaction_byid($payment_id, $plugin_slug, $plugin_info['plugin_name'], $verify_status['response'][0]['mobile_number'], $verify_status['response'][0]['transaction_id'], 'completed', $verify_status['response'][0]['id'])){
echo json_encode(["status" => "true", "message" => "Initialize Transaction ID"]);
}
}else{
if($settings['pending_payment'] == "enable"){
$isnumber_show = true;
if(isset($_POST['number'])){
$number = $_POST['number'];
$isnumber_show = false;
if($number == ""){
echo json_encode(["status" => "false", "message" => "Enter mobile number", "numberbox" => "true"]);
exit();
}
}
if($isnumber_show == false){
if(pp_set_transaction_byid($payment_id, $plugin_slug, $plugin_info['plugin_name'], $number, $_POST['trxid'], 'pending')){
echo json_encode(["status" => "true", "message" => "Initialize Transaction ID"]);
}
}else{
echo json_encode(["status" => "false", "message" => "Enter mobile number", "numberbox" => "true"]);
}
}else{
echo json_encode(["status" => "false", "message" => "Invalid Transaction ID", "numberbox" => "false"]);
}
}
}else{
echo json_encode(["status" => "false", "message" => "Transaction ID already exits", "numberbox" => "false"]);
}
}
exit();
}
?>
<!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">
<ul class="list-unstyled">
<!-- Step 1 -->
<li class="d-flex">
<div class="rounded-circle bg-primary bg-opacity-10 text-primary d-flex align-items-center justify-content-center me-3" style="width: 24px; height: 24px; flex-shrink: 0;">1</div>
<p class="mb-0">
Dial <span class="text-primary fw-semibold">*167#</span> or open the <span class="text-primary fw-semibold">Nagad</span> app.
</p>
</li>
<hr class="my-2">
<!-- Step 2 -->
<li class="d-flex">
<div class="rounded-circle bg-primary bg-opacity-10 text-primary d-flex align-items-center justify-content-center me-3" style="width: 24px; height: 24px; flex-shrink: 0;">2</div>
<p class="mb-0">
Choose: <span class="text-primary fw-semibold">Make Payment</span>
</p>
</li>
<hr class="my-2">
<!-- Step 3 -->
<li class="d-flex">
<div class="rounded-circle bg-primary bg-opacity-10 text-primary d-flex align-items-center justify-content-center me-3" style="width: 24px; height: 24px; flex-shrink: 0;">3</div>
<p class="mb-0">
Enter the Number:
<span class="text-primary fw-semibold bg-primary bg-opacity-10 px-2 py-1 rounded"><?php echo $settings['payment_number']?></span>
<button class="btn btn-primary btn-sm ms-2 px-2 py-1 d-inline-flex align-items-center btn-number-copy" onclick="copyText('<?php echo $settings['payment_number']?>', 'btn-number-copy')">
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="currentColor" class="bi bi-files me-1" viewBox="0 0 16 16">
<path d="M13 0H6a2 2 0 0 0-2 2 2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2 2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 13V4a2 2 0 0 0-2-2H5a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1zM3 4a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4z"/>
</svg>
Copy
</button>
</p>
</li>
<hr class="my-2">
<!-- Step 4 -->
<li class="d-flex">
<div class="rounded-circle bg-primary bg-opacity-10 text-primary d-flex align-items-center justify-content-center me-3" style="width: 24px; height: 24px; flex-shrink: 0;">4</div>
<p class="mb-0">
Enter the Amount:
<span class="text-primary fw-semibold bg-primary bg-opacity-10 px-2 py-1 rounded"><?php echo number_format($transaction_amount,2).' '.$settings['currency']?></span>
<button class="btn btn-primary btn-sm ms-2 px-2 py-1 d-inline-flex align-items-center btn-amount-copy" onclick="copyText('<?php echo $transaction_amount;?>', 'btn-amount-copy')">
<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="currentColor" class="bi bi-files me-1" viewBox="0 0 16 16">
<path d="M13 0H6a2 2 0 0 0-2 2 2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2 2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 13V4a2 2 0 0 0-2-2H5a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1zM3 4a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4z"/>
</svg>
Copy
</button>
</p>
</li>
<hr class="my-2">
<!-- Step 5 -->
<li class="d-flex">
<div class="rounded-circle bg-primary bg-opacity-10 text-primary d-flex align-items-center justify-content-center me-3" style="width: 24px; height: 24px; flex-shrink: 0;">5</div>
<p class="mb-0">
Now enter your <span class="text-primary fw-semibold">Nagad</span> PIN to confirm.
</p>
</li>
<hr class="my-2">
<!-- Step 6 -->
<li class="d-flex">
<div class="rounded-circle bg-primary bg-opacity-10 text-primary d-flex align-items-center justify-content-center me-3" style="width: 24px; height: 24px; flex-shrink: 0;">6</div>
<p class="mb-0">
Put the <span class="text-primary fw-semibold">Transaction ID</span> in the box below and press <span class="text-primary fw-semibold">Verify</span>
</p>
</li>
</ul>
<div class="mb-3 mobile-number-box" style="display: none">
<label class="form-label">Mobile Number</label>
<input type="text" class="form-control mobile-number" placeholder="Enter mobile number">
</div>
<div class="mb-3">
<label class="form-label">Transaction ID</label>
<input type="text" class="form-control transaction-id" placeholder="Enter Transaction ID">
</div>
<span class="response"></span>
<button class="btn-pay">Verify</button>
</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>
<script>
function copyText(text, clas) {
if (navigator.clipboard && window.isSecureContext) {
// ✅ Modern secure context (https://)
navigator.clipboard.writeText(text).then(() => {
document.querySelector("."+clas).innerHTML = '<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="currentColor" class="bi bi-files me-1" viewBox="0 0 16 16"><path d="M13 0H6a2 2 0 0 0-2 2 2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2 2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 13V4a2 2 0 0 0-2-2H5a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1zM3 4a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4z"/></svg>Copied';
}).catch(err => {
document.querySelector("."+clas).innerHTML = '<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="currentColor" class="bi bi-files me-1" viewBox="0 0 16 16"><path d="M13 0H6a2 2 0 0 0-2 2 2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2 2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 13V4a2 2 0 0 0-2-2H5a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1zM3 4a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4z"/></svg>Copied';
});
} else {
// 🔄 Fallback for older mobile/PC browsers
const textarea = document.createElement("textarea");
textarea.value = text;
textarea.style.position = "fixed"; // avoid scrolling to bottom
textarea.style.left = "-9999px";
document.body.appendChild(textarea);
textarea.focus();
textarea.select();
try {
document.execCommand("copy");
document.querySelector("."+clas).innerHTML = '<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="currentColor" class="bi bi-files me-1" viewBox="0 0 16 16"><path d="M13 0H6a2 2 0 0 0-2 2 2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2 2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 13V4a2 2 0 0 0-2-2H5a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1zM3 4a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4z"/></svg>Copied';
} catch (err) {
document.querySelector("."+clas).innerHTML = '<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="currentColor" class="bi bi-files me-1" viewBox="0 0 16 16"><path d="M13 0H6a2 2 0 0 0-2 2 2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2 2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 13V4a2 2 0 0 0-2-2H5a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1zM3 4a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4z"/></svg>Copied';
}
document.body.removeChild(textarea);
}
}
document.querySelector('.btn-pay').addEventListener('click', function() {
var trxid = document.querySelector(".transaction-id").value;
var number = document.querySelector(".mobile-number").value;
if(trxid == ""){
document.querySelector(".response").innerHTML = '<div class="alert alert-danger" style="margin-top:10px;margin-bottom:10px"> <i class="fa fa-info-circle me-2"></i> Enter transaction ID</div>';
}else{
document.querySelector(".btn-pay").innerHTML = '<div class="spinner-border spinner-border-sm text-white" role="status"> <span class="visually-hidden">Loading...</span> </div>';
$.ajax
({
type: "POST",
url: "<?php echo pp_get_paymentlink($payment_id)?>?method=nagad-merchant",
data: { "nagad-merchant": "<?php echo $payment_id?>", "trxid": trxid, "number": number },
success: function (data) {
console.log(data);
document.querySelector(".btn-pay").innerHTML = 'Verify';
var dedata = JSON.parse(data);
if(dedata.status == "false"){
if(dedata.numberbox == "true"){
document.querySelector(".mobile-number-box").style.display = "block";
document.querySelector(".response").innerHTML = '<div class="alert alert-danger" style="margin-top:10px;margin-bottom:10px"> <i class="fa fa-info-circle me-2"></i> Enter mobile number</div>';
}else{
document.querySelector(".response").innerHTML = '<div class="alert alert-danger" style="margin-top:10px;margin-bottom:10px"> <i class="fa fa-info-circle me-2"></i> '+dedata.message+'</div>';
}
}else{
location.href = "<?php echo pp_get_paymentlink($payment_id)?>";
}
}
});
}
});
</script>
</body>
</html>