100 lines
5.0 KiB
PHP
100 lines
5.0 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Payment;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\Http\Request;
|
|
use App\Models\CombinedOrder;
|
|
use App\Http\Controllers\CheckoutController;
|
|
use App\Http\Controllers\CustomerPackageController;
|
|
use App\Http\Controllers\WalletController;
|
|
use App\Http\Controllers\SellerPackageController;
|
|
use App\Models\User;
|
|
use Illuminate\Support\Facades\Auth;
|
|
use Razorpay\Api\Api;
|
|
use Session;
|
|
|
|
|
|
class RazorpayController extends Controller
|
|
{
|
|
public function pay(Request $request)
|
|
{
|
|
$payment_track = array();
|
|
$api = new Api(env('RAZOR_KEY'), env('RAZOR_SECRET'));
|
|
if (Session::has('payment_type')) {
|
|
if (Session::get('payment_type') == 'cart_payment') {
|
|
|
|
$combined_order = CombinedOrder::findOrFail(Session::get('combined_order_id'));
|
|
$res = $api->order->create(array('receipt' => '123', 'amount' => round($combined_order->grand_total) * 100, 'currency' => 'INR', 'notes' => array('key1' => 'value3', 'key2' => 'value2')));
|
|
|
|
return view('frontend.razor_wallet.order_payment_Razorpay', compact('combined_order', 'res'));
|
|
} elseif (Session::get('payment_type') == 'wallet_payment') {
|
|
|
|
$res = $api->order->create(array('receipt' => '123', 'amount' => Session::get('payment_data')['amount'] * 100, 'currency' => 'INR', 'notes' => array('key1' => 'value3', 'key2' => 'value2')));
|
|
return view('frontend.razor_wallet.wallet_payment_Razorpay', compact('res'));
|
|
} elseif (Session::get('payment_type') == 'customer_package_payment') {
|
|
|
|
$customer_package = \App\Models\CustomerPackage::findOrFail(Session::get('payment_data')['customer_package_id']);
|
|
$res = $api->order->create(array('receipt' => '123', 'amount' => $customer_package->amount * 100, 'currency' => 'INR', 'notes' => array('key1' => 'value3', 'key2' => 'value2')));
|
|
|
|
return view('frontend.razor_wallet.customer_package_payment_Razorpay', compact('res'));
|
|
} elseif (Session::get('payment_type') == 'seller_package_payment') {
|
|
|
|
$seller_package = \App\Models\SellerPackage::findOrFail(Session::get('payment_data')['seller_package_id']);
|
|
$res = $api->order->create(array('receipt' => '123', 'amount' => $seller_package->amount * 100, 'currency' => 'INR', 'notes' => array('key1' => 'value3', 'key2' => 'value2')));
|
|
|
|
return view('frontend.razor_wallet.seller_package_payment_Razorpay', compact('res'));
|
|
}
|
|
}
|
|
}
|
|
|
|
public function payment(Request $request)
|
|
{
|
|
|
|
//Input items of form
|
|
$input = $request->all();
|
|
//get API Configuration
|
|
$api = new Api(env('RAZOR_KEY'), env('RAZOR_SECRET'));
|
|
|
|
//Fetch payment information by razorpay_payment_id
|
|
$payment = $api->payment->fetch($input['razorpay_payment_id']);
|
|
if ($payment->notes['user_id']) {
|
|
$user = User::find((int) $payment->notes['user_id']);
|
|
Auth::login($user);
|
|
}
|
|
|
|
if (count($input) && !empty($input['razorpay_payment_id'])) {
|
|
$payment_detalis = null;
|
|
try {
|
|
// Verify Payment Signature
|
|
$attributes = array(
|
|
'razorpay_order_id' => $input['razorpay_order_id'],
|
|
'razorpay_payment_id' => $input['razorpay_payment_id'],
|
|
'razorpay_signature' => $input['razorpay_signature']
|
|
);
|
|
$api->utility->verifyPaymentSignature($attributes);
|
|
//End of Verify Payment Signature
|
|
$response = $api->payment->fetch($input['razorpay_payment_id'])->capture(array('amount' => $payment['amount']));
|
|
$payment_detalis = json_encode(array('id' => $response['id'], 'method' => $response['method'], 'amount' => $response['amount'], 'currency' => $response['currency']));
|
|
} catch (\Exception $e) {
|
|
return $e->getMessage();
|
|
\Session::put('error', $e->getMessage());
|
|
return redirect()->back();
|
|
}
|
|
|
|
// Do something here for store payment details in database...
|
|
if (Session::has('payment_type')) {
|
|
if (Session::get('payment_type') == 'cart_payment') {
|
|
return (new CheckoutController)->checkout_done(Session::get('combined_order_id'), $payment_detalis);
|
|
} elseif (Session::get('payment_type') == 'wallet_payment') {
|
|
return (new WalletController)->wallet_payment_done(Session::get('payment_data'), $payment_detalis);
|
|
} elseif (Session::get('payment_type') == 'customer_package_payment') {
|
|
return (new CustomerPackageController)->purchase_payment_done(Session::get('payment_data'), $payment_detalis);
|
|
} elseif (Session::get('payment_type') == 'seller_package_payment') {
|
|
return (new SellerPackageController)->purchase_payment_done(Session::get('payment_data'), $payment_detalis);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|