118 lines
4.8 KiB
PHP
118 lines
4.8 KiB
PHP
<?php
|
|
namespace App\Models\payment_gateway;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class Aamarpay extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
public static function payment_status($identifier, $transaction_keys = [])
|
|
{
|
|
|
|
$payment_gateway = DB::table('payment_gateways')->where('identifier', $identifier)->first();
|
|
$keys = json_decode($payment_gateway->keys, true);
|
|
|
|
if (is_array($_POST) && $_POST['pay_status'] == "Successful") {
|
|
$transaction_keys = $_POST['mer_txnid'];
|
|
$store_id = $keys['store_id'];
|
|
$signature_key = $keys['signature_key'];
|
|
|
|
if ($payment_gateway->test_mode == 1) {
|
|
$url = "https://sandbox.aamarpay.com/api/v1/trxcheck/request.php?request_id=$transaction_keys&store_id=$store_id&signature_key=$signature_key&type=json"; //sandbox
|
|
} else {
|
|
$url = "https://secure.aamarpay.com/api/v1/trxcheck/request.php?request_id=$transaction_keys&store_id=$store_id&signature_key=$signature_key&type=json"; //live url
|
|
}
|
|
|
|
$curl_handle = curl_init();
|
|
curl_setopt($curl_handle, CURLOPT_URL, $url);
|
|
curl_setopt($curl_handle, CURLOPT_VERBOSE, true);
|
|
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, true);
|
|
curl_setopt($curl_handle, CURLOPT_SSL_VERIFYPEER, false);
|
|
$buffer = curl_exec($curl_handle);
|
|
curl_close($curl_handle);
|
|
$arr = json_decode($buffer, true);
|
|
|
|
if (is_array($arr) && $arr['pay_status'] == "Successful") {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
} else {
|
|
return true;
|
|
}
|
|
|
|
}
|
|
|
|
public static function payment_create($identifier)
|
|
{
|
|
$payment_gateway = DB::table('payment_gateways')->where('identifier', $identifier)->first();
|
|
$payment_details = session('payment_details');
|
|
$user = DB::table('users')->where('id', auth()->user()->id)->first();
|
|
$keys = json_decode($payment_gateway->keys, true);
|
|
|
|
$products_name = '';
|
|
foreach ($payment_details['items'] as $key => $value):
|
|
if ($key == 0) {
|
|
$products_name .= $value['title'];
|
|
} else {
|
|
$products_name .= ', ' . $value['title'];
|
|
}
|
|
endforeach;
|
|
|
|
if ($payment_gateway->test_mode == 1):
|
|
$store_id = $keys['store_id'];
|
|
$signature_key = $keys['signature_key'];
|
|
$payment_url = 'https://sandbox.aamarpay.com/index.php';
|
|
else:
|
|
$store_id = $keys['signature_key'];
|
|
$signature_key = $keys['signature_live_key'];
|
|
$payment_url = 'https://secure.aamarpay.com/index.php';
|
|
endif;
|
|
|
|
$curl = curl_init();
|
|
|
|
curl_setopt_array($curl, array(
|
|
CURLOPT_URL => $payment_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 => array('store_id' => $store_id,
|
|
'signature_key' => $signature_key,
|
|
'cus_name' => $user->name,
|
|
'cus_email' => $user->email,
|
|
'cus_city' => $user->address,
|
|
'cus_phone' => $user->phone,
|
|
'amount' => round($payment_details['payable_amount']),
|
|
'currency' => $payment_gateway->currency,
|
|
'tran_id' => "AAMAR_TXN_" . uniqid(),
|
|
'desc' => $identifier,
|
|
'success_url' => $payment_details['success_url'] . '/' . $payment_gateway->identifier,
|
|
'fail_url' => $payment_details['cancel_url'],
|
|
'cancel_url' => $payment_details['cancel_url'],
|
|
'type' => 'json'),
|
|
));
|
|
|
|
$response = curl_exec($curl);
|
|
|
|
curl_close($curl);
|
|
|
|
$responseObj = json_decode($response);
|
|
|
|
if (isset($responseObj->payment_url) && ! empty($responseObj->payment_url)) {
|
|
$paymentUrl = $responseObj->payment_url;
|
|
|
|
return $paymentUrl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|