123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198 |
- <?php
- namespace App\Http\Controllers\Admin;
- use App\Events\PaymentEvent;
- use App\Events\UserUpdateCreditsEvent;
- use App\Http\Controllers\Controller;
- use App\Models\PartnerDiscount;
- use App\Models\Payment;
- use App\Models\User;
- use App\Models\ShopProduct;
- use App\Models\Coupon;
- use App\Traits\Coupon as CouponTrait;
- use Exception;
- use Illuminate\Contracts\Foundation\Application;
- use Illuminate\Contracts\View\Factory;
- use Illuminate\Contracts\View\View;
- use Illuminate\Http\JsonResponse;
- use Illuminate\Http\RedirectResponse;
- use Illuminate\Http\Request;
- use Illuminate\Support\Facades\Auth;
- use App\Helpers\ExtensionHelper;
- use App\Settings\GeneralSettings;
- use App\Settings\LocaleSettings;
- use Carbon\Carbon;
- use Illuminate\Support\Str;
- class PaymentController extends Controller
- {
- const BUY_PERMISSION = 'user.shop.buy';
- const VIEW_PERMISSION = "admin.payments.read";
- use CouponTrait;
- /**
- * @return Application|Factory|View
- */
- public function index(LocaleSettings $locale_settings)
- {
- $this->checkPermission(self::VIEW_PERMISSION);
- return view('admin.payments.index')->with([
- 'payments' => Payment::paginate(15),
- 'locale_datatables' => $locale_settings->datatables
- ]);
- }
- /**
- * @param Request $request
- * @param ShopProduct $shopProduct
- * @return Application|Factory|View
- */
- public function checkOut(ShopProduct $shopProduct, GeneralSettings $general_settings)
- {
- $this->checkPermission(self::BUY_PERMISSION);
- $discount = PartnerDiscount::getDiscount();
- $price = $shopProduct->price - ($shopProduct->price * $discount / 100);
- $paymentGateways = [];
- if ($price > 0) {
- $extensions = ExtensionHelper::getAllExtensionsByNamespace('PaymentGateways');
- // build a paymentgateways array that contains the routes for the payment gateways and the image path for the payment gateway which lays in public/images/Extensions/PaymentGateways with the extensionname in lowercase
- foreach ($extensions as $extension) {
- $extensionName = basename($extension);
- $extensionSettings = ExtensionHelper::getExtensionSettings($extensionName);
- if ($extensionSettings->enabled == false) continue;
- $payment = new \stdClass();
- $payment->name = ExtensionHelper::getExtensionConfig($extensionName, 'name');
- $payment->image = asset('images/Extensions/PaymentGateways/' . strtolower($extensionName) . '_logo.png');
- $paymentGateways[] = $payment;
- }
- }
- return view('store.checkout')->with([
- 'product' => $shopProduct,
- 'discountpercent' => $discount,
- 'discountvalue' => $discount * $shopProduct->price / 100,
- 'discountedprice' => $shopProduct->getPriceAfterDiscount(),
- 'taxvalue' => $shopProduct->getTaxValue(),
- 'taxpercent' => $shopProduct->getTaxPercent(),
- 'total' => $shopProduct->getTotalPrice(),
- 'paymentGateways' => $paymentGateways,
- 'productIsFree' => $price <= 0,
- 'credits_display_name' => $general_settings->credits_display_name
- ]);
- }
- /**
- * @param Request $request
- * @param ShopProduct $shopProduct
- * @return RedirectResponse
- */
- public function handleFreeProduct(ShopProduct $shopProduct)
- {
- /** @var User $user */
- $user = Auth::user();
- //create a payment
- $payment = Payment::create([
- 'user_id' => $user->id,
- 'payment_id' => uniqid(),
- 'payment_method' => 'free',
- 'type' => $shopProduct->type,
- 'status' => 'paid',
- 'amount' => $shopProduct->quantity,
- 'price' => $shopProduct->price - ($shopProduct->price * PartnerDiscount::getDiscount() / 100),
- 'tax_value' => $shopProduct->getTaxValue(),
- 'tax_percent' => $shopProduct->getTaxPercent(),
- 'total_price' => $shopProduct->getTotalPrice(),
- 'currency_code' => $shopProduct->currency_code,
- 'shop_item_product_id' => $shopProduct->id,
- ]);
- event(new UserUpdateCreditsEvent($user));
- event(new PaymentEvent($user, $payment, $shopProduct));
- //not sending an invoice
- //redirect back to home
- return redirect()->route('home')->with('success', __('Your credit balance has been increased!'));
- }
- public function pay(Request $request)
- {
- $product = ShopProduct::find($request->product_id);
- $paymentGateway = $request->payment_method;
- $coupon_code = $request->coupon_code;
- // on free products, we don't need to use a payment gateway
- $realPrice = $product->price - ($product->price * PartnerDiscount::getDiscount() / 100);
- if ($realPrice <= 0) {
- return $this->handleFreeProduct($product);
- }
- if ($coupon_code) {
- return redirect()->route('payment.' . $paymentGateway . 'Pay', [
- 'shopProduct' => $product->id,
- 'couponCode' => $coupon_code
- ]);
- }
- return redirect()->route('payment.' . $paymentGateway . 'Pay', ['shopProduct' => $product->id]);
- }
- /**
- * @param Request $request
- */
- public function Cancel(Request $request)
- {
- return redirect()->route('store.index')->with('info', 'Payment was Canceled');
- }
- /**
- * @return JsonResponse|mixed
- *
- * @throws Exception
- */
- public function dataTable()
- {
- $query = Payment::with('user');
- return datatables($query)
- ->addColumn('user', function (Payment $payment) {
- return ($payment->user) ? '<a href="' . route('admin.users.show', $payment->user->id) . '">' . $payment->user->name . '</a>' : __('Unknown user');
- })
- ->editColumn('price', function (Payment $payment) {
- return $payment->formatToCurrency($payment->price);
- })
- ->editColumn('tax_value', function (Payment $payment) {
- return $payment->formatToCurrency($payment->tax_value);
- })
- ->editColumn('tax_percent', function (Payment $payment) {
- return $payment->tax_percent . ' %';
- })
- ->editColumn('total_price', function (Payment $payment) {
- return $payment->formatToCurrency($payment->total_price);
- })
- ->editColumn('created_at', function (Payment $payment) {
- return [
- 'display' => $payment->created_at ? $payment->created_at->diffForHumans() : '',
- 'raw' => $payment->created_at ? strtotime($payment->created_at) : ''
- ];
- })
- ->addColumn('actions', function (Payment $payment) {
- return '<a data-content="' . __('Download') . '" data-toggle="popover" data-trigger="hover" data-placement="top" href="' . route('admin.invoices.downloadSingleInvoice', 'id=' . $payment->payment_id) . '" class="btn btn-sm text-white btn-info mr-1"><i class="fas fa-file-download"></i></a>';
- })
- ->rawColumns(['actions', 'user'])
- ->make(true);
- }
- }
|