<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class PayuController extends Controller
{
public function payUMoneyView()
{
$MERCHANT_KEY = env('PAYU_MERCHANT_KEY');
$SALT = env('PAYU_SALT'); // TEST SALT
// $SALT = env('PAYUSALT_TEST'); // TEST SALT
$PAYU_BASE_URL = "https://test.payu.in";
// $PAYU_BASE_URL = "https://secure.payu.in"; // PRODUCATIONs
$name = 'Maanas';
$successURL = route('pay.u.response');
$failURL = route('pay.u.cancel');
$amount = 100;
$productinfo = 'CodeWinthVineetMaaans';
$action = '';
$txnid = substr(hash('sha256', mt_rand() . microtime()), 0, 20);
$input['payment_id'] = $txnid;
$posted = array();
$posted = array(
'key' => $MERCHANT_KEY,
'txnid' => $txnid,
'amount' => $amount,
'firstname' => $name,
'email' => $email,
'productinfo' => $productinfo,
'surl' => $successURL,
'furl' => $failURL,
);
if (empty($posted['txnid'])) {
$txnid = substr(hash('sha256', mt_rand() . microtime()), 0, 20);
} else {
$txnid = $posted['txnid'];
}
$hash = '';
$hashSequence = "key|txnid|amount|productinfo|firstname|email|udf1|udf2|udf3|udf4|udf5|udf6|udf7|udf8|udf9|udf10";
if (empty($posted['hash']) && sizeof($posted) > 0) {
$hashVarsSeq = explode('|', $hashSequence);
$hash_string = '';
foreach ($hashVarsSeq as $hash_var) {
$hash_string .= isset($posted[$hash_var]) ? $posted[$hash_var] : '';
$hash_string .= '|';
}
$hash_string .= $SALT;
$hash = strtolower(hash('sha512', $hash_string));
$action = $PAYU_BASE_URL . '/_payment';
} elseif (!empty($posted['hash'])) {
$hash = $posted['hash'];
$action = $PAYU_BASE_URL . '/_payment';
}
return view('payu',compact('action','hash','MERCHANT_KEY','txnid','successURL','failURL','name','email','amount','productinfo'));
}
public function payUResponse(Request $request)
{
echo"<pre>";print_r($request->all());die();
$txnId = $request['txnid'];
$checkpayment = $this->checkPayuPayment($txnId);
if(isset($checkpayment->status) && $checkpayment->status == 1 && isset($checkpayment->transaction_details) && isset($checkpayment->transaction_details->$txnId) && $checkpayment->transaction_details->$txnId->status == 'success')
{
}
dd('Payment Successfully Done');
}
public function checkPayuPayment($txnid)
{
// $merchantKey = env('PAYUMERCHANT_KEY');
$merchantKey = env('PAYUMERCHANT_KEY_TEST');
// $salt = env('PAYUSALT'); // TEST SALT
$salt = env('PAYUSALT_TEST'); // TEST SALT
// $merchantKey = env('PAYUMERCHANT_KEY');
// $salt = env('PAYUSALT');
$command = "verify_payment";
$txnId = $txnid;
// Generate hash
$hashString = $merchantKey . "|" . $command . "|" . $txnId . "|" . $salt;
$hash = hash('sha512', $hashString);
// Prepare API request
$postData = [
"key" => $merchantKey,
"command" => $command,
"var1" => $txnId,
"hash" => $hash,
];
$url = "https://test.payu.in/merchant/postservice.php?form=2"; //test
// $url = "https://info.payu.in/merchant/postservice.php?form=2";
// cURL request
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($postData));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
// Parse response
$response = json_decode($response);
return $response;
}
public function payUCancel(Request $request)
{
dd($_GET);
dd('Payment Failed');
}
}
0 Comments (Please let us know your query)