File manager - Edit - /home/linknsbh/restawy.online/app/Http/Controllers/Payment/StripeController.php
Back
<?php namespace App\Http\Controllers\Payment; use Illuminate\Http\Request; use App\Http\Controllers\Controller; use App\Http\Controllers\Front\CheckoutController; use App\Http\Controllers\User\UserCheckoutController; use App\Http\Helpers\MegaMailer; use App\Http\Helpers\UserPermissionHelper; use App\Models\Language; use App\Models\Package; use Illuminate\Support\Facades\Config; use Illuminate\Support\Facades\Session; use Cartalyst\Stripe\Laravel\Facades\Stripe; use App\Models\PaymentGateway; use Carbon\Carbon; class StripeController extends Controller { private $stripe_token; private $information; public function __construct() { //Set Spripe Keys $data = PaymentGateway::findOrFail(14); $this->information = $data->information; if (!is_null($data->information)) { $stripeConf = json_decode($data->information, true); Config::set('services.stripe.key', $stripeConf["key"]); Config::set('services.stripe.secret', $stripeConf["secret"]); } else { session()->flash('error', 'Credentials are not set yet'); return back(); } } public function paymentProcess(Request $request, $_amount, $_title, $_success_url, $_cancel_url) { if (is_null($this->information)) { session()->flash('error', 'Credentials are not set yet'); return redirect()->back(); } $this->stripe_token = $request->stripeToken; $title = $_title; $price = $_amount; $price = round($price, 2); $cancel_url = $_cancel_url; Session::put('request', $request->all()); $stripe = Stripe::make(Config::get('services.stripe.secret')); try { if (!isset($request->stripeToken)) { return back()->with('error', 'Token Problem With Your Token.'); } $charge = $stripe->charges()->create([ 'card' => $request->stripeToken, 'receipt_email' => $request->email, 'currency' => "USD", 'amount' => $price, 'description' => $title, 'metadata' => [ 'customer_name' => $request->username, ] ]); if ($charge['status'] == 'succeeded') { $paymentFor = Session::get('paymentFor'); $package = Package::find($request->package_id); $transaction_id = UserPermissionHelper::uniqueId(8); $transaction_details = json_encode($charge); $currentLang = session()->has('lang') ? (Language::where('code', session()->get('lang'))->first()) : (Language::where('is_default', 1)->first()); $be = $currentLang->basic_extended; $bs = $currentLang->basic_setting; if ($paymentFor == "membership") { $amount = $request->price; $password = $request->password; $checkout = new CheckoutController(); $user = $checkout->store($request, $transaction_id, $transaction_details, $amount, $be, $password); $lastMemb = $user->memberships()->orderBy('id', 'DESC')->first(); $activation = Carbon::parse($lastMemb->start_date); $expire = Carbon::parse($lastMemb->expire_date); $file_name = $this->makeInvoice($request, "membership", $user, $password, $amount, "Stripe", $request['phone'], $be->base_currency_symbol_position, $be->base_currency_symbol, $be->base_currency_text, $transaction_id, $package->title, $lastMemb); $mailer = new MegaMailer(); $data = [ 'toMail' => $user->email, 'toName' => $user->first_name . ' ' . $user->last_name, 'username' => $user->username, 'package_title' => $package->title, 'package_price' => ($be->base_currency_text_position == 'left' ? $be->base_currency_text . ' ' : '') . $package->price . ($be->base_currency_text_position == 'right' ? ' ' . $be->base_currency_text : ''), 'discount' => ($be->base_currency_text_position == 'left' ? $be->base_currency_text . ' ' : '') . $lastMemb->discount . ($be->base_currency_text_position == 'right' ? ' ' . $be->base_currency_text : ''), 'total' => ($be->base_currency_text_position == 'left' ? $be->base_currency_text . ' ' : '') . $lastMemb->price . ($be->base_currency_text_position == 'right' ? ' ' . $be->base_currency_text : ''), 'activation_date' => $activation->toFormattedDateString(), 'expire_date' => Carbon::parse($expire->toFormattedDateString())->format('Y') == '9999' ? 'Lifetime' : $expire->toFormattedDateString(), 'membership_invoice' => $file_name, 'website_title' => $bs->website_title, 'templateType' => 'registration_with_premium_package', 'type' => 'registrationWithPremiumPackage' ]; $mailer->mailFromAdmin($data); session()->flash('success', __('successful_payment')); Session::forget('request'); Session::forget('paymentFor'); return redirect()->route('success.page'); } elseif ($paymentFor == "extend") { $amount = $request['price']; $password = uniqid('qrcode'); $checkout = new UserCheckoutController(); $user = $checkout->store($request, $transaction_id, $transaction_details, $amount, $be, $password); $lastMemb = $user->memberships()->orderBy('id', 'DESC')->first(); $activation = Carbon::parse($lastMemb->start_date); $expire = Carbon::parse($lastMemb->expire_date); $file_name = $this->makeInvoice($request, "extend", $user, $password, $amount, $request["payment_method"], $user->phone, $be->base_currency_symbol_position, $be->base_currency_symbol, $be->base_currency_text, $transaction_id, $package->title, $lastMemb); $mailer = new MegaMailer(); $data = [ 'toMail' => $user->email, 'toName' => $user->fname, 'username' => $user->username, 'package_title' => $package->title, 'package_price' => ($be->base_currency_text_position == 'left' ? $be->base_currency_text . ' ' : '') . $package->price . ($be->base_currency_text_position == 'right' ? ' ' . $be->base_currency_text : ''), 'activation_date' => $activation->toFormattedDateString(), 'expire_date' => Carbon::parse($expire->toFormattedDateString())->format('Y') == '9999' ? 'Lifetime' : $expire->toFormattedDateString(), 'membership_invoice' => $file_name, 'website_title' => $bs->website_title, 'templateType' => 'membership_extend', 'type' => 'membershipExtend' ]; $mailer->mailFromAdmin($data); session()->flash('success', __('successful_payment')); Session::forget('request'); Session::forget('paymentFor'); return redirect()->route('success.page'); } } } catch (\Exception $e) { return redirect($cancel_url)->with('error', $e->getMessage()); } catch (\Cartalyst\Stripe\Exception\CardErrorException $e) { return redirect($cancel_url)->with('error', $e->getMessage()); } catch (\Cartalyst\Stripe\Exception\MissingParameterException $e) { return redirect($cancel_url)->with('error', $e->getMessage()); } return redirect($cancel_url)->with('error', 'Please Enter Valid Credit Card Informations.'); } public function cancelPayment() { $requestData = Session::get('request'); $paymentFor = Session::get('paymentFor'); session()->flash('error', __('cancel_payment')); if ($paymentFor == "membership") { return redirect()->route('front.register.view', ['status' => $requestData['package_type'], 'id' => $requestData['package_id']])->withInput($requestData); } else { return redirect()->route('user.plan.extend.checkout', ['package_id' => $requestData['package_id']])->withInput($requestData); } } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 0.13 |
proxy
|
phpinfo
|
Settings