|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/erp.theinteractive.co.in/app/Http/Controllers/ |
Upload File : |
<?php
namespace App\Http\Controllers;
use App\Models\Customer;
use App\Models\Invoice;
use App\Models\InvoicePayment;
use Illuminate\Http\Request;
use App\Models\Coupon;
use App\Models\Order;
use App\Models\Plan;
use App\Models\Utility;
use App\Models\UserCoupon;
use App\Models\User;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Crypt;
use PhpParser\Node\Stmt\TryCatch;
class CashfreeController extends Controller
{
public function paymentConfig()
{
if(\Auth::check()){
$payment_setting = Utility::getAdminPaymentSetting();
config(
[
'services.cashfree.key' => isset($payment_setting['cashfree_api_key']) ? $payment_setting['cashfree_api_key'] : '',
'services.cashfree.secret' => isset($payment_setting['cashfree_secret_key']) ? $payment_setting['cashfree_secret_key'] : '',
'services.cashfree.currency' =>!empty($payment_setting['currency']) ? $payment_setting['currency'] : 'USD'
]
);
}
}
public function cashfreePaymentStore(Request $request)
{
$planID = \Illuminate\Support\Facades\Crypt::decrypt($request->plan_id);
$plan = Plan::find($planID);
$user = \Auth::user();
$this->paymentConfig();
$url = config('services.cashfree.url');
if ($plan) {
$get_amount = $plan->price;
try {
if (!empty($request->coupon)) {
$coupons = Coupon::where('code', strtoupper($request->coupon))->where('is_active', '1')->first();
if (!empty($coupons)) {
$usedCoupun = $coupons->used_coupon();
$discount_value = ($plan->price / 100) * $coupons->discount;
$get_amount = $plan->price - $discount_value;
if ($coupons->limit == $usedCoupun) {
return redirect()->back()->with('error', __('This coupon code has expired.'));
}
if ($get_amount <= 0) {
$authuser = \Auth::user();
$authuser->plan = $plan->id;
$authuser->save();
$assignPlan = $authuser->assignPlan($plan->id);
if ($assignPlan['is_success'] == true && !empty($plan)) {
if (!empty($authuser->payment_subscription_id) && $authuser->payment_subscription_id != '') {
try {
$authuser->cancel_subscription($authuser->id);
} catch (\Exception $exception) {
\Log::debug($exception->getMessage());
}
}
$orderID = strtoupper(str_replace('.', '', uniqid('', true)));
$userCoupon = new UserCoupon();
$userCoupon->user = $authuser->id;
$userCoupon->coupon = $coupons->id;
$userCoupon->order = $orderID;
$userCoupon->save();
Order::create(
[
'order_id' => $orderID,
'name' => null,
'email' => null,
'card_number' => null,
'card_exp_month' => null,
'card_exp_year' => null,
'plan_name' => $plan->name,
'plan_id' => $plan->id,
'price' => $get_amount == null ? 0 : $get_amount,
'price_currency' => config('services.cashfree.currency'),
'txn_id' => '',
'payment_type' => 'Cashfree',
'payment_status' => 'success',
'receipt' => null,
'user_id' => $authuser->id,
]
);
$assignPlan = $authuser->assignPlan($plan->id);
return redirect()->route('plans.index')->with('success', __('Plan Successfully Activated'));
}
}
} else {
return redirect()->back()->with('error', __('This coupon code is invalid or has expired.'));
}
}
$coupon = (empty($request->coupon)) ? "0" : $request->coupon;
$orderID = strtoupper(str_replace('.', '', uniqid('', true)));
$headers = array(
"Content-Type: application/json",
"x-api-version: 2022-01-01",
"x-client-id: " . config('services.cashfree.key'),
"x-client-secret: " . config('services.cashfree.secret')
);
$data = json_encode([
'order_id' => $orderID,
'order_amount' => $get_amount,
"order_currency" => config('services.cashfree.currency'),
"order_name" => $plan->name,
"customer_details" => [
"customer_id" => 'customer_' . $user->id,
"customer_name" => $user->name,
"customer_email" => $user->email,
"customer_phone" => '1234567890',
],
"order_meta" => [
"return_url" => route('cashfreePayment.success') . '?order_id={order_id}&order_token={order_token}&plan_id=' . $plan->id . '&amount=' . $get_amount . '&coupon=' . $coupon . ''
]
]);
try {
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
$resp = curl_exec($curl);
curl_close($curl);
return redirect()->to(json_decode($resp)->payment_link);
} catch (\Throwable $th) {
return redirect()->back()->with('error', 'Currency Not Supported.Contact To Your Site Admin');
}
} catch (\Exception $e) {
return redirect()->back()->with('error', $e);
}
} else {
return redirect()->route('plans.index')->with('error', __('Plan is deleted.'));
}
}
public function cashfreePaymentSuccess(Request $request)
{
$this->paymentConfig();
$user = \Auth::user();
$plan = Plan::find($request->plan_id);
$couponCode = $request->coupon;
$getAmount = $request->amount;
$orderID = strtoupper(str_replace('.', '', uniqid('', true)));
if ($couponCode != 0) {
$coupons = Coupon::where('code', strtoupper($couponCode))->where('is_active', '1')->first();
$request['coupon_id'] = $coupons->id;
} else {
$coupons = null;
}
try {
$client = new \GuzzleHttp\Client();
$response = $client->request('GET', config('services.cashfree.url') . '/' . $request->get('order_id') . '/settlements', [
'headers' => [
'accept' => 'application/json',
'x-api-version' => '2022-09-01',
"x-client-id" => config('services.cashfree.key'),
"x-client-secret" => config('services.cashfree.secret')
],
]);
$respons = json_decode($response->getBody());
if ($respons->order_id && $respons->cf_payment_id != NULL) {
$response = $client->request('GET', config('services.cashfree.url') . '/' . $respons->order_id . '/payments/' . $respons->cf_payment_id . '', [
'headers' => [
'accept' => 'application/json',
'x-api-version' => '2022-09-01',
'x-client-id' => config('services.cashfree.key'),
'x-client-secret' => config('services.cashfree.secret'),
],
]);
$info = json_decode($response->getBody());
if ($info->payment_status == "SUCCESS") {
$order = new Order();
$order->order_id = $orderID;
$order->name = $user->name;
$order->card_number = '';
$order->card_exp_month = '';
$order->card_exp_year = '';
$order->plan_name = $plan->name;
$order->plan_id = $plan->id;
$order->price = $getAmount;
$order->price_currency = !empty($payment_setting['currency']) ? $payment_setting['currency'] : 'USD';
$order->payment_type = __('Cashfree');
$order->payment_status = 'success';
$order->txn_id = '';
$order->receipt = '';
$order->user_id = $user->id;
$order->save();
$assignPlan = $user->assignPlan($plan->id);
$coupons = Coupon::find($request->coupon_id);
if (!empty($request->coupon_id)) {
if (!empty($coupons)) {
$userCoupon = new UserCoupon();
$userCoupon->user = $user->id;
$userCoupon->coupon = $coupons->id;
$userCoupon->order = $orderID;
$userCoupon->save();
$usedCoupun = $coupons->used_coupon();
if ($coupons->limit <= $usedCoupun) {
$coupons->is_active = 0;
$coupons->save();
}
}
}
if ($assignPlan['is_success']) {
return redirect()->route('plans.index')->with('success', __('Plan activated Successfully.'));
} else {
return redirect()->route('plans.index')->with('error', __($assignPlan['error']));
}
} else {
return redirect()->route('plans.index')->with('error', __('Your Transaction is fail please try again'));
}
} else {
return redirect()->route('plans.index')->with('error', 'Payment Failed.');
}
return redirect()->route('plans.index')->with('success', 'Plan activated Successfully.');
} catch (\Exception $e) {
return redirect()->route('plans.index')->with('error', __($e->getMessage()));
}
}
public function invoicepaywithcashfree(Request $request)
{
$invoice_id = \Illuminate\Support\Facades\Crypt::decrypt($request->invoice_id);
$invoice = Invoice::find($invoice_id);
$this->invoiceData = $invoice;
try {
$user = User::find($invoice->created_by);
$settings= Utility::settingsById($invoice->created_by);
$companyPaymentSettings = Utility::getCompanyPaymentSetting($user->id);
config(
[
'services.cashfree.key' => isset($companyPaymentSettings['cashfree_api_key']) ? $companyPaymentSettings['cashfree_api_key'] : '',
'services.cashfree.secret' => isset($companyPaymentSettings['cashfree_secret_key']) ? $companyPaymentSettings['cashfree_secret_key'] : '',
]
);
$url = config('services.cashfree.url');
if (\Auth::check()) {
$user = Auth::user();
} else {
$user = User::where('id', $invoice->created_by)->first();
}
$get_amount = $request->amount;
$orderID = strtoupper(str_replace('.', '', uniqid('', true)));
if ($invoice && $get_amount != 0) {
if ($get_amount > $invoice->getDue())
{
return redirect()->back()->with('error', __('Invalid amount.'));
}
$headers = array(
"Content-Type: application/json",
"x-api-version: 2022-01-01",
"x-client-id: " . config('services.cashfree.key'),
"x-client-secret: " . config('services.cashfree.secret')
);
$data = json_encode([
'order_id' => $orderID,
'order_amount' => $get_amount,
"order_currency" => 'INR',
"order_name" => $invoice->name,
"customer_details" => [
"customer_id" => 'customer_' . $user->id,
"customer_name" => $user->name,
"customer_email" => $user->email,
"customer_phone" => '1234567890',
],
"order_meta" => [
"return_url" => route('invoice.cashfreePayment.success') . '?order_id={order_id}&invoice_id=' . $invoice_id . '&amount=' . $get_amount
]
]);
try {
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
$resp = curl_exec($curl);
curl_close($curl);
return redirect()->to(json_decode($resp)->payment_link);
} catch (\Throwable $th) {
return redirect()->back()->with('error', 'Currency Not Supported.Contact To Your Site Admin');
}
}
} catch (\Throwable $e) {
return redirect()->back()->with('error', __($e->getMessage()));
}
}
public function getInvoicePaymentStatus(Request $request)
{
$invoice = Invoice::find($request->invoice_id);
$orderID = strtoupper(str_replace('.', '', uniqid('', true)));
$user = User::find($invoice->created_by);
$settings= Utility::settingsById($invoice->created_by);
$companyPaymentSettings = Utility::getCompanyPaymentSetting($user->id);
config(
[
'services.cashfree.key' => isset($companyPaymentSettings['cashfree_api_key']) ? $companyPaymentSettings['cashfree_api_key'] : '',
'services.cashfree.secret' => isset($companyPaymentSettings['cashfree_secret_key']) ? $companyPaymentSettings['cashfree_secret_key'] : '',
]
);
$client = new \GuzzleHttp\Client();
$response = $client->request('GET', config('services.cashfree.url') . '/' . $request->get('order_id') . '/settlements', [
'headers' => [
'accept' => 'application/json',
'x-api-version' => '2022-09-01',
"x-client-id" => config('services.cashfree.key'),
"x-client-secret" => config('services.cashfree.secret')
],
]);
$respons = json_decode($response->getBody());
if ($respons->order_id && $respons->cf_payment_id != NULL) {
$response = $client->request('GET', config('services.cashfree.url') . '/' . $respons->order_id . '/payments/' . $respons->cf_payment_id . '', [
'headers' => [
'accept' => 'application/json',
'x-api-version' => '2022-09-01',
'x-client-id' => config('services.cashfree.key'),
'x-client-secret' => config('services.cashfree.secret'),
],
]);
$info = json_decode($response->getBody());
try {
if ($info->payment_status == "SUCCESS") {
$invoice_payment = new InvoicePayment();
$invoice_payment->invoice_id = $request->invoice_id;
$invoice_payment->date = Date('Y-m-d');
$invoice_payment->amount = $request->has('amount') ? $request->amount : 0;
$invoice_payment->account_id = 0;
$invoice_payment->payment_method = 0;
$invoice_payment->order_id =$orderID;
$invoice_payment->payment_type = 'Cashfree';
$invoice_payment->receipt = '';
$invoice_payment->reference = '';
$invoice_payment->description = 'Invoice ' . Utility::invoiceNumberFormat($settings, $invoice->invoice_id);
$invoice_payment->save();
if($invoice->getDue() <= 0)
{
$invoice->status = 4;
$invoice->save();
}
elseif(($invoice->getDue() - $invoice_payment->amount) == 0)
{
$invoice->status = 4;
$invoice->save();
}
else
{
$invoice->status = 3;
$invoice->save();
}
//For Notification
$setting = Utility::settingsById($invoice->created_by);
$customer = Customer::find($invoice->customer_id);
$notificationArr = [
'payment_price' => $request->amount,
'invoice_payment_type' => 'Cashfree',
'customer_name' => $customer->name,
];
//Slack Notification
if(isset($setting['payment_notification']) && $setting['payment_notification'] ==1)
{
Utility::send_slack_msg('new_invoice_payment', $notificationArr,$invoice->created_by);
}
//Telegram Notification
if(isset($setting['telegram_payment_notification']) && $setting['telegram_payment_notification'] == 1)
{
Utility::send_telegram_msg('new_invoice_payment', $notificationArr,$invoice->created_by);
}
//Twilio Notification
if(isset($setting['twilio_payment_notification']) && $setting['twilio_payment_notification'] ==1)
{
Utility::send_twilio_msg($customer->contact,'new_invoice_payment', $notificationArr,$invoice->created_by);
}
//webhook
$module ='New Invoice Payment';
$webhook= Utility::webhookSetting($module,$invoice->created_by);
if($webhook)
{
$parameter = json_encode($invoice_payment);
$status = Utility::WebhookCall($webhook['url'],$parameter,$webhook['method']);
if($status == true)
{
return redirect()->route('invoice.link.copy', \Crypt::encrypt($invoice->id))->with('error', __('Transaction has been failed.'));
}
else
{
return redirect()->back()->with('error', __('Webhook call failed.'));
}
}
//for customer balance update
Utility::updateUserBalance('customer', $invoice->customer_id, $request->amount, 'debit');
$request->session()->forget('invoice_data');
return redirect()->route('invoice.link.copy', \Crypt::encrypt($invoice->id))->with('success', __('Invoice paid Successfully!'));
} else {
return redirect()->route('invoice.link.copy', \Crypt::encrypt($invoice->id))->with('error', __('Transaction fail'));
}
} catch (\Exception $e) {
return redirect()->route('invoice.link.copy', \Crypt::encrypt($invoice->id))->with('error', $e->getMessage());
}
} else {
return redirect()->route('invoice.link.copy', \Crypt::encrypt($invoice->id))->with('error', 'Payment Failed.');
}
}
}