dbfdg plan_id); $plan = Plan::find($planID); 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' => !empty($admin_payment_setting['currency']) ? $admin_payment_setting['currency'] : 'BHD', 'txn_id' => '', 'payment_type' => 'Benefit', '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))); $userData = [ "amount" => $get_amount, "currency" => !empty($admin_payment_setting['currency']) ? $admin_payment_setting['currency'] : 'BHD', "customer_initiated" => true, "threeDSecure" => true, "save_card" => false, "description" => " Plan - " . $plan->name, "metadata" => ["udf1" => "Metadata 1"], "reference" => ["transaction" => "txn_01", "order" => "ord_01"], "receipt" => ["email" => true, "sms" => true], "customer" => ["first_name" => $objUser->name, "middle_name" => "", "last_name" => "", "email" => $objUser->email, "phone" => ["country_code" => 965, "number" => 51234567]], "source" => ["id" => "src_bh.benefit"], "post" => ["url" => "https://webhook.site/fd8b0712-d70a-4280-8d6f-9f14407b3bbd"], "redirect" => ["url" => route('benefit.call_back', ['plan_id' => $plan->id, 'amount' => $get_amount, 'coupon' => $coupon])], ]; $responseData = json_encode($userData); $client = new Client(); try { $response = $client->request('POST', 'https://api.tap.company/v2/charges', [ 'body' => $responseData, 'headers' => [ 'Authorization' => 'Bearer ' . $secret_key, 'accept' => 'application/json', 'content-type' => 'application/json', ], ]); } catch (\Throwable $th) { return redirect()->back()->with('error','Currency Not Supported.Contact To Your Site Admin'); } $data = $response->getBody(); $res = json_decode($data); return redirect($res->transaction->url); } catch (\Exception $e) { return redirect()->back()->with('error', $e); } } else { return redirect()->route('plans.index')->with('error', __('Plan is deleted.')); } } public function call_back(Request $request) { $admin_payment_setting = Utility::getAdminPaymentSetting(); $secret_key = $admin_payment_setting['benefit_secret_key']; $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 { $post = $request->all(); $client = new Client(); $response = $client->request('GET', 'https://api.tap.company/v2/charges/' . $post['tap_id'], [ 'headers' => [ 'Authorization' => 'Bearer ' . $secret_key, 'accept' => 'application/json', ], ]); $json = $response->getBody(); $data = json_decode($json); $status_code = $data->gateway->response->code; $settings= Utility::settings(); if ($status_code == '00') { Utility::referralTransaction($plan); $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($admin_payment_setting['currency']) ? $admin_payment_setting['currency'] : 'BHD'; $order->payment_type = __('Benefit'); $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')); } } catch (\Exception $e) { return redirect()->route('plans.index')->with('error', __($e->getMessage())); } } public function invoicePayWithbenefit(Request $request) { $invoiceID = \Illuminate\Support\Facades\Crypt::decrypt($request->invoice_id); $invoice = Invoice::find($invoiceID); $this->invoiceData = $invoice; $user = User::find($invoice->created_by); $settings= Utility::settingsById($invoice->created_by); $companyPaymentSettings = Utility::getCompanyPaymentSetting($user->id); $secret_key = $companyPaymentSettings['benefit_secret_key']; if (\Auth::check()) { $user = Auth::user(); } else { $user = User::where('id', $invoice->created_by)->first(); } try { $get_amount = $request->amount; if ($invoice && $get_amount != 0) { if ($get_amount > $invoice->getDue()) { return redirect()->back()->with('error', __('Invalid amount.')); } $userData = [ "amount" => $get_amount, "currency" => !empty($settings['site_currency']) ? $settings['site_currency'] : 'BHD', "customer_initiated" => true, "threeDSecure" => true, "save_card" => false, "description" => $invoice['invoice_id'], "metadata" => ["udf1" => "Metadata 1"], "reference" => ["transaction" => "txn_01", "order" => "ord_01"], "receipt" => ["email" => true, "sms" => true], "customer" => ["first_name" => $user['name'], "middle_name" => "", "last_name" => "", "email" => $user['email'], "phone" => ["country_code" => 965, "number" => 51234567]], "source" => ["id" => "src_bh.benefit"], "post" => ["url" => "https://webhook.site/fd8b0712-d70a-4280-8d6f-9f14407b3bbd"], "redirect" => ["url" => route('invoice.benefit.call_back', ['invoice_id' => $invoiceID, 'amount' => $get_amount])], ]; $responseData = json_encode($userData); $client = new Client(); try { $response = $client->request('POST', 'https://api.tap.company/v2/charges', [ 'body' => $responseData, 'headers' => [ 'Authorization' => 'Bearer ' . $secret_key, 'accept' => 'application/json', 'content-type' => 'application/json', ], ]); } catch (\Throwable $th) { return redirect()->back()->with('error', 'Currency Not Supported.Contact To Your Site Admin'); } $data = $response->getBody(); $res = json_decode($data); return redirect($res->transaction->url); } } catch (\Throwable $e) { return redirect()->back()->with('error', __($e->getMessage())); } } public function getInvoicePaymentStatus(Request $request, $invoice_id, $amount) { $invoice = Invoice::find($invoice_id); $orderID = strtoupper(str_replace('.', '', uniqid('', true))); $user = User::find($invoice->created_by); $companyPaymentSettings = Utility::getCompanyPaymentSetting($user->id); $secret_key = $companyPaymentSettings['benefit_secret_key']; try { $post = $request->all(); $client = new Client(); $response = $client->request('GET', 'https://api.tap.company/v2/charges/' . $post['tap_id'], [ 'headers' => [ 'Authorization' => 'Bearer ' . $secret_key, 'accept' => 'application/json', ], ]); $json = $response->getBody(); $data = json_decode($json); $status_code = $data->gateway->response->code; $settings = Utility::settingsById($invoice->created_by); if ($status_code == '00') { $invoice_payment = new InvoicePayment(); $invoice_payment->invoice_id = $invoice_id; $invoice_payment->date = Date('Y-m-d'); $invoice_payment->amount = $amount; $invoice_payment->account_id = 0; $invoice_payment->payment_method = 0; $invoice_payment->order_id = $orderID; $invoice_payment->payment_type = 'Benefit'; $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 customer balance update Utility::updateUserBalance('customer', $invoice->customer_id,$amount, 'debit'); //For Notification $setting = Utility::settingsById($invoice->created_by); $customer = Customer::find($invoice->customer_id); $notificationArr = [ 'payment_price' => $request->amount, 'invoice_payment_type' => 'Benefit', '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.')); } } 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()->back()->with('error', __($e)); } } }