Files
elcaribe/desarrollo2/app/Http/Controllers/Payment/InstamojoController.php
2023-08-23 17:33:44 -04:00

179 lines
8.0 KiB
PHP

<?php
namespace App\Http\Controllers\Payment;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use App\Models\CombinedOrder;
use App\Models\BusinessSetting;
use App\Models\CustomerPackage;
use App\Models\SellerPackage;
use App\Http\Controllers\CustomerPackageController;
use App\Http\Controllers\SellerPackageController;
use App\Http\Controllers\WalletController;
use App\Http\Controllers\CheckoutController;
use Session;
use Auth;
class InstamojoController extends Controller
{
public function pay(){
if(Session::has('payment_type')){
if(BusinessSetting::where('type', 'instamojo_sandbox')->first()->value == 1){
// testing_url
$endPoint = 'https://test.instamojo.com/api/1.1/';
}
else{
// live_url
$endPoint = 'https://www.instamojo.com/api/1.1/';
}
$api = new \Instamojo\Instamojo(
env('IM_API_KEY'),
env('IM_AUTH_TOKEN'),
$endPoint
);
if(Session::get('payment_type') == 'cart_payment'){
$combined_order = CombinedOrder::findOrFail(Session::get('combined_order_id'));
if(preg_match_all('/^(?:(?:\+|0{0,2})91(\s*[\ -]\s*)?|[0]?)?[789]\d{9}|(\d[ -]?){10}\d$/im', Auth::user()->phone)) {
try {
$response = $api->paymentRequestCreate(array(
"purpose" => ucfirst(str_replace('_', ' ', Session::get('payment_type'))),
"amount" => round($combined_order->grand_total),
"send_email" => false,
"email" => Auth::user()->email,
"phone" => Auth::user()->phone,
"redirect_url" => url('instamojo/payment/pay-success')
));
return redirect($response['longurl']);
} catch (\Exception $e) {
print('Error: ' . $e->getMessage());
}
} else {
flash(translate('Please add phone number to your profile'))->warning();
return redirect()->route('profile');
}
}
elseif (Session::get('payment_type') == 'wallet_payment') {
if (preg_match_all('/^(?:(?:\+|0{0,2})91(\s*[\ -]\s*)?|[0]?)?[789]\d{9}|(\d[ -]?){10}\d$/im', Auth::user()->phone)) {
try {
$response = $api->paymentRequestCreate(array(
"purpose" => ucfirst(str_replace('_', ' ', Session::get('payment_type'))),
"amount" => round(Session::get('payment_data')['amount']),
"send_email" => false,
"email" => Auth::user()->email,
"phone" => Auth::user()->phone,
"redirect_url" => url('instamojo/payment/pay-success')
));
return redirect($response['longurl']);
// dd($response);
} catch (\Exception $e) {
return back();
}
} else {
flash(translate('Please add phone number to your profile'))->warning();
return redirect()->route('profile');
}
}
elseif (Session::get('payment_type') == 'customer_package_payment') {
$customer_package = CustomerPackage::findOrFail(Session::get('payment_data')['customer_package_id']);
if (preg_match_all('/^(?:(?:\+|0{0,2})91(\s*[\ -]\s*)?|[0]?)?[789]\d{9}|(\d[ -]?){10}\d$/im', Auth::user()->phone)) {
try {
$response = $api->paymentRequestCreate(array(
"purpose" => ucfirst(str_replace('_', ' ', Session::get('payment_type'))),
"amount" => round($customer_package->amount),
"send_email" => false,
"email" => Auth::user()->email,
"phone" => Auth::user()->phone,
"redirect_url" => url('instamojo/payment/pay-success')
));
return redirect($response['longurl']);
} catch (\Exception $e) {
return back();
}
} else {
flash(translate('Please add phone number to your profile'))->warning();
return redirect()->route('profile');
}
}
elseif (Session::get('payment_type') == 'seller_package_payment') {
$seller_package = SellerPackage::findOrFail(Session::get('payment_data')['seller_package_id']);
if (preg_match_all('/^(?:(?:\+|0{0,2})91(\s*[\ -]\s*)?|[0]?)?[789]\d{9}|(\d[ -]?){10}\d$/im', Auth::user()->phone)) {
try {
$response = $api->paymentRequestCreate(array(
"purpose" => ucfirst(str_replace('_', ' ', Session::get('payment_type'))),
"amount" => round($seller_package->amount),
"send_email" => false,
"email" => Auth::user()->email,
"phone" => Auth::user()->phone,
"redirect_url" => url('instamojo/payment/pay-success')
));
return redirect($response['longurl']);
} catch (\Exception $e) {
return back();
}
} else {
flash(translate('Please add phone number to your profile'))->warning();
return redirect()->route('profile');
}
}
}
}
// success response method.
public function success(Request $request){
try {
if(BusinessSetting::where('type', 'instamojo_sandbox')->first()->value == 1){
$endPoint = 'https://test.instamojo.com/api/1.1/';
}
else{
$endPoint = 'https://www.instamojo.com/api/1.1/';
}
$api = new \Instamojo\Instamojo(
env('IM_API_KEY'),
env('IM_AUTH_TOKEN'),
$endPoint
);
$response = $api->paymentRequestStatus(request('payment_request_id'));
if(!isset($response['payments'][0]['status']) ) {
flash(translate('Payment Failed'))->error();
return redirect()->route('home');
} else if($response['payments'][0]['status'] != 'Credit') {
flash(translate('Payment Failed'))->error();
return redirect()->route('home');
}
}catch (\Exception $e) {
flash(translate('Payment Failed'))->error();
return redirect()->route('home');
}
$payment = json_encode($response);
if(Session::has('payment_type')){
if(Session::get('payment_type') == 'cart_payment'){
return (new CheckoutController)->checkout_done(Session::get('combined_order_id'), $payment);
}
elseif (Session::get('payment_type') == 'wallet_payment') {
return (new WalletController)->wallet_payment_done($request->session()->get('payment_data'), $payment);
}
elseif ($request->session()->get('payment_type') == 'customer_package_payment') {
return (new CustomerPackageController)->purchase_payment_done($request->session()->get('payment_data'), $payment);
}
elseif ($request->session()->get('payment_type') == 'seller_package_payment') {
return (new SellerPackageController)->purchase_payment_done($request->session()->get('payment_data'), $payment);
}
}
}
}