|
@@ -4,13 +4,10 @@ namespace App\Http\Controllers\Admin;
|
|
|
|
|
|
use App\Events\UserUpdateCreditsEvent;
|
|
|
use App\Http\Controllers\Controller;
|
|
|
-use App\Models\InvoiceSettings;
|
|
|
+use App\Models\PartnerDiscount;
|
|
|
use App\Models\Payment;
|
|
|
-use App\Models\ShopProduct;
|
|
|
-use App\Models\Settings;
|
|
|
use App\Models\User;
|
|
|
-use App\Notifications\InvoiceNotification;
|
|
|
-use App\Notifications\ConfirmPaymentNotification;
|
|
|
+use App\Models\ShopProduct;
|
|
|
use Exception;
|
|
|
use Illuminate\Contracts\Foundation\Application;
|
|
|
use Illuminate\Contracts\View\Factory;
|
|
@@ -19,633 +16,124 @@ use Illuminate\Http\JsonResponse;
|
|
|
use Illuminate\Http\RedirectResponse;
|
|
|
use Illuminate\Http\Request;
|
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
-use Illuminate\Support\Facades\DB;
|
|
|
-use Illuminate\Support\Facades\Log;
|
|
|
-use Illuminate\Support\Facades\Storage;
|
|
|
-use LaravelDaily\Invoices\Classes\Buyer;
|
|
|
-use LaravelDaily\Invoices\Classes\InvoiceItem;
|
|
|
-use LaravelDaily\Invoices\Classes\Party;
|
|
|
-use LaravelDaily\Invoices\Invoice;
|
|
|
-use PayPalCheckoutSdk\Core\PayPalHttpClient;
|
|
|
-use PayPalCheckoutSdk\Core\ProductionEnvironment;
|
|
|
-use PayPalCheckoutSdk\Core\SandboxEnvironment;
|
|
|
-use PayPalCheckoutSdk\Orders\OrdersCaptureRequest;
|
|
|
-use PayPalCheckoutSdk\Orders\OrdersCreateRequest;
|
|
|
-use PayPalHttp\HttpException;
|
|
|
-use Stripe\Stripe;
|
|
|
-use Symfony\Component\Intl\Currencies;
|
|
|
+use App\Helpers\ExtensionHelper;
|
|
|
|
|
|
|
|
|
class PaymentController extends Controller
|
|
|
{
|
|
|
-
|
|
|
/**
|
|
|
* @return Application|Factory|View
|
|
|
*/
|
|
|
public function index()
|
|
|
{
|
|
|
return view('admin.payments.index')->with([
|
|
|
- 'payments' => Payment::paginate(15)
|
|
|
+ 'payments' => Payment::paginate(15),
|
|
|
]);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * @param Request $request
|
|
|
- * @param ShopProduct $shopProduct
|
|
|
+ * @param Request $request
|
|
|
+ * @param ShopProduct $shopProduct
|
|
|
* @return Application|Factory|View
|
|
|
*/
|
|
|
- public function checkOut(Request $request, ShopProduct $shopProduct)
|
|
|
- {
|
|
|
- return view('store.checkout')->with([
|
|
|
- 'product' => $shopProduct,
|
|
|
- 'taxvalue' => $shopProduct->getTaxValue(),
|
|
|
- 'taxpercent' => $shopProduct->getTaxPercent(),
|
|
|
- 'total' => $shopProduct->getTotalPrice()
|
|
|
- ]);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @param Request $request
|
|
|
- * @param ShopProduct $shopProduct
|
|
|
- * @return RedirectResponse
|
|
|
- */
|
|
|
- public function PaypalPay(Request $request, ShopProduct $shopProduct)
|
|
|
- {
|
|
|
- $request = new OrdersCreateRequest();
|
|
|
- $request->prefer('return=representation');
|
|
|
- $request->body = [
|
|
|
- "intent" => "CAPTURE",
|
|
|
- "purchase_units" => [
|
|
|
- [
|
|
|
- "reference_id" => uniqid(),
|
|
|
- "description" => $shopProduct->description,
|
|
|
- "amount" => [
|
|
|
- "value" => $shopProduct->getTotalPrice(),
|
|
|
- 'currency_code' => strtoupper($shopProduct->currency_code),
|
|
|
- 'breakdown' => [
|
|
|
- 'item_total' =>
|
|
|
- [
|
|
|
- 'currency_code' => strtoupper($shopProduct->currency_code),
|
|
|
- 'value' => $shopProduct->price,
|
|
|
- ],
|
|
|
- 'tax_total' =>
|
|
|
- [
|
|
|
- 'currency_code' => strtoupper($shopProduct->currency_code),
|
|
|
- 'value' => $shopProduct->getTaxValue(),
|
|
|
- ]
|
|
|
- ]
|
|
|
- ]
|
|
|
- ]
|
|
|
- ],
|
|
|
- "application_context" => [
|
|
|
- "cancel_url" => route('payment.Cancel'),
|
|
|
- "return_url" => route('payment.PaypalSuccess', ['product' => $shopProduct->id]),
|
|
|
- 'brand_name' => config('app.name', 'Laravel'),
|
|
|
- 'shipping_preference' => 'NO_SHIPPING'
|
|
|
- ]
|
|
|
-
|
|
|
-
|
|
|
- ];
|
|
|
-
|
|
|
-
|
|
|
- try {
|
|
|
- // Call API with your client and get a response for your call
|
|
|
- $response = $this->getPayPalClient()->execute($request);
|
|
|
- return redirect()->away($response->result->links[1]->href);
|
|
|
-
|
|
|
- // If call returns body in response, you can get the deserialized version from the result attribute of the response
|
|
|
- } catch (HttpException $ex) {
|
|
|
- echo $ex->statusCode;
|
|
|
- dd(json_decode($ex->getMessage()));
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @return PayPalHttpClient
|
|
|
- */
|
|
|
- protected function getPayPalClient()
|
|
|
- {
|
|
|
- $environment = env('APP_ENV') == 'local'
|
|
|
- ? new SandboxEnvironment($this->getPaypalClientId(), $this->getPaypalClientSecret())
|
|
|
- : new ProductionEnvironment($this->getPaypalClientId(), $this->getPaypalClientSecret());
|
|
|
-
|
|
|
- return new PayPalHttpClient($environment);
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @return string
|
|
|
- */
|
|
|
- protected function getPaypalClientId()
|
|
|
- {
|
|
|
- return env('APP_ENV') == 'local' ? config("SETTINGS::PAYMENTS:PAYPAL:SANDBOX_CLIENT_ID") : config("SETTINGS::PAYMENTS:PAYPAL:CLIENT_ID");
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @return string
|
|
|
- */
|
|
|
- protected function getPaypalClientSecret()
|
|
|
- {
|
|
|
- return env('APP_ENV') == 'local' ? config("SETTINGS::PAYMENTS:PAYPAL:SANDBOX_SECRET") : config("SETTINGS::PAYMENTS:PAYPAL:SECRET");
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @param Request $laravelRequest
|
|
|
- */
|
|
|
- public function PaypalSuccess(Request $laravelRequest)
|
|
|
+ public function checkOut(ShopProduct $shopProduct)
|
|
|
{
|
|
|
- /** @var ShopProduct $shopProduct */
|
|
|
- $shopProduct = ShopProduct::findOrFail($laravelRequest->input('product'));
|
|
|
-
|
|
|
- /** @var User $user */
|
|
|
- $user = Auth::user();
|
|
|
-
|
|
|
- $request = new OrdersCaptureRequest($laravelRequest->input('token'));
|
|
|
- $request->prefer('return=representation');
|
|
|
- try {
|
|
|
- // Call API with your client and get a response for your call
|
|
|
- $response = $this->getPayPalClient()->execute($request);
|
|
|
- if ($response->statusCode == 201 || $response->statusCode == 200) {
|
|
|
-
|
|
|
- //update server limit
|
|
|
- if (config('SETTINGS::USER:SERVER_LIMIT_AFTER_IRL_PURCHASE') !== 0) {
|
|
|
- if ($user->server_limit < config('SETTINGS::USER:SERVER_LIMIT_AFTER_IRL_PURCHASE')) {
|
|
|
- $user->update(['server_limit' => config('SETTINGS::USER:SERVER_LIMIT_AFTER_IRL_PURCHASE')]);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- //update User with bought item
|
|
|
- if ($shopProduct->type=="Credits") {
|
|
|
- $user->increment('credits', $shopProduct->quantity);
|
|
|
- }elseif ($shopProduct->type=="Server slots"){
|
|
|
- $user->increment('server_limit', $shopProduct->quantity);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- //update role give Referral-reward
|
|
|
- if ($user->role == 'member') {
|
|
|
- $user->update(['role' => 'client']);
|
|
|
-
|
|
|
- if((config("SETTINGS::REFERRAL:MODE") == "commission" || config("SETTINGS::REFERRAL:MODE") == "both") && $shopProduct->type=="Credits"){
|
|
|
- if($ref_user = DB::table("user_referrals")->where('registered_user_id', '=', $user->id)->first()){
|
|
|
- $ref_user = User::findOrFail($ref_user->referral_id);
|
|
|
- $increment = number_format($shopProduct->quantity/100*config("SETTINGS::REFERRAL:PERCENTAGE"),0,"","");
|
|
|
- $ref_user->increment('credits', $increment);
|
|
|
-
|
|
|
- //LOGS REFERRALS IN THE ACTIVITY LOG
|
|
|
- activity()
|
|
|
- ->performedOn($user)
|
|
|
- ->causedBy($ref_user)
|
|
|
- ->log('gained '. $increment.' '.config("SETTINGS::SYSTEM:CREDITS_DISPLAY_NAME").' for commission-referral of '.$user->name.' (ID:'.$user->id.')');
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- //store payment
|
|
|
- $payment = Payment::create([
|
|
|
- 'user_id' => $user->id,
|
|
|
- 'payment_id' => $response->result->id,
|
|
|
- 'payment_method' => 'paypal',
|
|
|
- 'type' => $shopProduct->type,
|
|
|
- 'status' => 'paid',
|
|
|
- 'amount' => $shopProduct->quantity,
|
|
|
- 'price' => $shopProduct->price,
|
|
|
- '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));
|
|
|
-
|
|
|
- //only create invoice if SETTINGS::INVOICE:ENABLED is true
|
|
|
- if (config('SETTINGS::INVOICE:ENABLED') == 'true') {
|
|
|
- $this->createInvoice($user, $payment, 'paid', $shopProduct->currency_code);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- //redirect back to home
|
|
|
- return redirect()->route('home')->with('success', __('Your credit balance has been increased!'));
|
|
|
- }
|
|
|
+ $extensions = ExtensionHelper::getAllExtensionsByNamespace('PaymentGateways');
|
|
|
|
|
|
-
|
|
|
- // If call returns body in response, you can get the deserialized version from the result attribute of the response
|
|
|
- if (env('APP_ENV') == 'local') {
|
|
|
- dd($response);
|
|
|
- } else {
|
|
|
- abort(500);
|
|
|
- }
|
|
|
- } catch (HttpException $ex) {
|
|
|
- if (env('APP_ENV') == 'local') {
|
|
|
- echo $ex->statusCode;
|
|
|
- dd($ex->getMessage());
|
|
|
- } else {
|
|
|
- abort(422);
|
|
|
- }
|
|
|
+ // 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
|
|
|
+ $paymentGateways = [];
|
|
|
+ foreach ($extensions as $extension) {
|
|
|
+ $extensionName = basename($extension);
|
|
|
+ $payment = new \stdClass();
|
|
|
+ $payment->name = ExtensionHelper::getExtensionConfig($extensionName, 'name');
|
|
|
+ $payment->image = asset('images/Extensions/PaymentGateways/' . strtolower($extensionName) . '_logo.png');
|
|
|
+ $paymentGateways[] = $payment;
|
|
|
}
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- /**
|
|
|
- * @param Request $request
|
|
|
- */
|
|
|
- public function Cancel(Request $request)
|
|
|
- {
|
|
|
- return redirect()->route('store.index')->with('success', 'Payment was Canceled');
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @param Request $request
|
|
|
- * @param ShopProduct $shopProduct
|
|
|
- * @return RedirectResponse
|
|
|
- */
|
|
|
- public function StripePay(Request $request, ShopProduct $shopProduct)
|
|
|
- {
|
|
|
- $stripeClient = $this->getStripeClient();
|
|
|
|
|
|
+ $discount = PartnerDiscount::getDiscount();
|
|
|
|
|
|
- $request = $stripeClient->checkout->sessions->create([
|
|
|
- 'line_items' => [
|
|
|
- [
|
|
|
- 'price_data' => [
|
|
|
- 'currency' => $shopProduct->currency_code,
|
|
|
- 'product_data' => [
|
|
|
- 'name' => $shopProduct->display,
|
|
|
- 'description' => $shopProduct->description,
|
|
|
- ],
|
|
|
- 'unit_amount_decimal' => round($shopProduct->price * 100, 2),
|
|
|
- ],
|
|
|
- 'quantity' => 1,
|
|
|
- ],
|
|
|
- [
|
|
|
- 'price_data' => [
|
|
|
- 'currency' => $shopProduct->currency_code,
|
|
|
- 'product_data' => [
|
|
|
- 'name' => 'Product Tax',
|
|
|
- 'description' => $shopProduct->getTaxPercent() . "%",
|
|
|
- ],
|
|
|
- 'unit_amount_decimal' => round($shopProduct->getTaxValue(), 2) * 100,
|
|
|
- ],
|
|
|
- 'quantity' => 1,
|
|
|
- ]
|
|
|
- ],
|
|
|
-
|
|
|
- 'mode' => 'payment',
|
|
|
- "payment_method_types" => str_getcsv(config("SETTINGS::PAYMENTS:STRIPE:METHODS")),
|
|
|
- 'success_url' => route('payment.StripeSuccess', ['product' => $shopProduct->id]) . '&session_id={CHECKOUT_SESSION_ID}',
|
|
|
- 'cancel_url' => route('payment.Cancel'),
|
|
|
+ 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,
|
|
|
]);
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- return redirect($request->url, 303);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * @param Request $request
|
|
|
+ * @param Request $request
|
|
|
+ * @param ShopProduct $shopProduct
|
|
|
+ * @return RedirectResponse
|
|
|
*/
|
|
|
- public function StripeSuccess(Request $request)
|
|
|
+ public function FreePay(ShopProduct $shopProduct)
|
|
|
{
|
|
|
- /** @var ShopProduct $shopProduct */
|
|
|
- $shopProduct = ShopProduct::findOrFail($request->input('product'));
|
|
|
+ //check if the product is really free or the discount is 100%
|
|
|
+ if ($shopProduct->getTotalPrice() > 0) return redirect()->route('home')->with('error', __('An error ocured. Please try again.'));
|
|
|
|
|
|
+ //give product
|
|
|
/** @var User $user */
|
|
|
$user = Auth::user();
|
|
|
|
|
|
- $stripeClient = $this->getStripeClient();
|
|
|
-
|
|
|
- try {
|
|
|
- //get stripe data
|
|
|
- $paymentSession = $stripeClient->checkout->sessions->retrieve($request->input('session_id'));
|
|
|
- $paymentIntent = $stripeClient->paymentIntents->retrieve($paymentSession->payment_intent);
|
|
|
-
|
|
|
- //get DB entry of this payment ID if existing
|
|
|
- $paymentDbEntry = Payment::where('payment_id', $paymentSession->payment_intent)->count();
|
|
|
-
|
|
|
- // check if payment is 100% completed and payment does not exist in db already
|
|
|
- if ($paymentSession->status == "complete" && $paymentIntent->status == "succeeded" && $paymentDbEntry == 0) {
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- //update server limit
|
|
|
- if (config('SETTINGS::USER:SERVER_LIMIT_AFTER_IRL_PURCHASE') !== 0) {
|
|
|
- if ($user->server_limit < config('SETTINGS::USER:SERVER_LIMIT_AFTER_IRL_PURCHASE')) {
|
|
|
- $user->update(['server_limit' => config('SETTINGS::USER:SERVER_LIMIT_AFTER_IRL_PURCHASE')]);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- //update User with bought item
|
|
|
- if ($shopProduct->type=="Credits") {
|
|
|
- $user->increment('credits', $shopProduct->quantity);
|
|
|
- }elseif ($shopProduct->type=="Server slots"){
|
|
|
- $user->increment('server_limit', $shopProduct->quantity);
|
|
|
- }
|
|
|
-
|
|
|
- //update role give Referral-reward
|
|
|
- if ($user->role == 'member') {
|
|
|
- $user->update(['role' => 'client']);
|
|
|
-
|
|
|
- if((config("SETTINGS::REFERRAL:MODE") == "commission" || config("SETTINGS::REFERRAL:MODE") == "both") && $shopProduct->type=="Credits"){
|
|
|
- if($ref_user = DB::table("user_referrals")->where('registered_user_id', '=', $user->id)->first()){
|
|
|
- $ref_user = User::findOrFail($ref_user->referral_id);
|
|
|
- $increment = number_format($shopProduct->quantity/100*config("SETTINGS::REFERRAL:PERCENTAGE"),0,"","");
|
|
|
- $ref_user->increment('credits', $increment);
|
|
|
-
|
|
|
- //LOGS REFERRALS IN THE ACTIVITY LOG
|
|
|
- activity()
|
|
|
- ->performedOn($user)
|
|
|
- ->causedBy($ref_user)
|
|
|
- ->log('gained '. $increment.' '.config("SETTINGS::SYSTEM:CREDITS_DISPLAY_NAME").' for commission-referral of '.$user->name.' (ID:'.$user->id.')');
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- //store paid payment
|
|
|
- $payment = Payment::create([
|
|
|
- 'user_id' => $user->id,
|
|
|
- 'payment_id' => $paymentSession->payment_intent,
|
|
|
- 'payment_method' => 'stripe',
|
|
|
- 'type' => $shopProduct->type,
|
|
|
- 'status' => 'paid',
|
|
|
- 'amount' => $shopProduct->quantity,
|
|
|
- 'price' => $shopProduct->price,
|
|
|
- 'tax_value' => $shopProduct->getTaxValue(),
|
|
|
- 'total_price' => $shopProduct->getTotalPrice(),
|
|
|
- 'tax_percent' => $shopProduct->getTaxPercent(),
|
|
|
- 'currency_code' => $shopProduct->currency_code,
|
|
|
- 'shop_item_product_id' => $shopProduct->id,
|
|
|
- ]);
|
|
|
-
|
|
|
- //payment notification
|
|
|
- $user->notify(new ConfirmPaymentNotification($payment));
|
|
|
-
|
|
|
- event(new UserUpdateCreditsEvent($user));
|
|
|
-
|
|
|
- //only create invoice if SETTINGS::INVOICE:ENABLED is true
|
|
|
- if (config('SETTINGS::INVOICE:ENABLED') == 'true') {
|
|
|
- $this->createInvoice($user, $payment, 'paid', $shopProduct->currency_code);
|
|
|
- }
|
|
|
-
|
|
|
- //redirect back to home
|
|
|
- return redirect()->route('home')->with('success', __('Your credit balance has been increased!'));
|
|
|
- } else {
|
|
|
- if ($paymentIntent->status == "processing") {
|
|
|
-
|
|
|
- //store processing payment
|
|
|
- $payment = Payment::create([
|
|
|
- 'user_id' => $user->id,
|
|
|
- 'payment_id' => $paymentSession->payment_intent,
|
|
|
- 'payment_method' => 'stripe',
|
|
|
- 'type' => $shopProduct->type,
|
|
|
- 'status' => 'processing',
|
|
|
- 'amount' => $shopProduct->quantity,
|
|
|
- 'price' => $shopProduct->price,
|
|
|
- 'tax_value' => $shopProduct->getTaxValue(),
|
|
|
- 'total_price' => $shopProduct->getTotalPrice(),
|
|
|
- 'tax_percent' => $shopProduct->getTaxPercent(),
|
|
|
- 'currency_code' => $shopProduct->currency_code,
|
|
|
- 'shop_item_product_id' => $shopProduct->id,
|
|
|
- ]);
|
|
|
-
|
|
|
- //only create invoice if SETTINGS::INVOICE:ENABLED is true
|
|
|
- if (config('SETTINGS::INVOICE:ENABLED') == 'true') {
|
|
|
- $this->createInvoice($user, $payment, 'paid', $shopProduct->currency_code);
|
|
|
- }
|
|
|
-
|
|
|
- //redirect back to home
|
|
|
- return redirect()->route('home')->with('success', __('Your payment is being processed!'));
|
|
|
- }
|
|
|
- if ($paymentDbEntry == 0 && $paymentIntent->status != "processing") {
|
|
|
- $stripeClient->paymentIntents->cancel($paymentIntent->id);
|
|
|
-
|
|
|
- //redirect back to home
|
|
|
- return redirect()->route('home')->with('success', __('Your payment has been canceled!'));
|
|
|
- } else {
|
|
|
- abort(402);
|
|
|
- }
|
|
|
- }
|
|
|
- } catch (HttpException $ex) {
|
|
|
- if (env('APP_ENV') == 'local') {
|
|
|
- echo $ex->statusCode;
|
|
|
- dd($ex->getMessage());
|
|
|
- } else {
|
|
|
- abort(422);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @param Request $request
|
|
|
- */
|
|
|
- protected function handleStripePaymentSuccessHook($paymentIntent)
|
|
|
- {
|
|
|
- try {
|
|
|
- // Get payment db entry
|
|
|
- $payment = Payment::where('payment_id', $paymentIntent->id)->first();
|
|
|
- $user = User::where('id', $payment->user_id)->first();
|
|
|
-
|
|
|
- if ($paymentIntent->status == 'succeeded' && $payment->status == 'processing') {
|
|
|
-
|
|
|
-
|
|
|
- //update server limit
|
|
|
- if (config('SETTINGS::USER:SERVER_LIMIT_AFTER_IRL_PURCHASE') !== 0) {
|
|
|
- if ($user->server_limit < config('SETTINGS::USER:SERVER_LIMIT_AFTER_IRL_PURCHASE')) {
|
|
|
- $user->update(['server_limit' => config('SETTINGS::USER:SERVER_LIMIT_AFTER_IRL_PURCHASE')]);
|
|
|
- }
|
|
|
- }
|
|
|
- //update User with bought item
|
|
|
- if ($shopProduct->type=="Credits") {
|
|
|
- $user->increment('credits', $shopProduct->quantity);
|
|
|
- }elseif ($shopProduct->type=="Server slots"){
|
|
|
- $user->increment('server_limit', $shopProduct->quantity);
|
|
|
- }
|
|
|
-
|
|
|
- //update role give Referral-reward
|
|
|
- if ($user->role == 'member') {
|
|
|
- $user->update(['role' => 'client']);
|
|
|
-
|
|
|
- if((config("SETTINGS::REFERRAL:MODE") == "commission" || config("SETTINGS::REFERRAL:MODE") == "both")&& $shopProduct->type=="Credits"){
|
|
|
- if($ref_user = DB::table("user_referrals")->where('registered_user_id', '=', $user->id)->first()){
|
|
|
- $ref_user = User::findOrFail($ref_user->referral_id);
|
|
|
- $increment = number_format($shopProduct->quantity/100*config("SETTINGS::REFERRAL:PERCENTAGE"),0,"","");
|
|
|
- $ref_user->increment('credits', $increment);
|
|
|
-
|
|
|
- //LOGS REFERRALS IN THE ACTIVITY LOG
|
|
|
- activity()
|
|
|
- ->performedOn($user)
|
|
|
- ->causedBy($ref_user)
|
|
|
- ->log('gained '. $increment.' '.config("SETTINGS::SYSTEM:CREDITS_DISPLAY_NAME").' for commission-referral of '.$user->name.' (ID:'.$user->id.')');
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
+ //not updating server limit
|
|
|
|
|
|
- //update payment db entry status
|
|
|
- $payment->update(['status' => 'paid']);
|
|
|
-
|
|
|
- //payment notification
|
|
|
- $user->notify(new ConfirmPaymentNotification($payment));
|
|
|
- event(new UserUpdateCreditsEvent($user));
|
|
|
-
|
|
|
- //only create invoice if SETTINGS::INVOICE:ENABLED is true
|
|
|
- if (config('SETTINGS::INVOICE:ENABLED') == 'true') {
|
|
|
- $this->createInvoice($user, $payment, 'paid', strtoupper($paymentIntent->currency));
|
|
|
- }
|
|
|
- }
|
|
|
- } catch (HttpException $ex) {
|
|
|
- abort(422);
|
|
|
+ //update User with bought item
|
|
|
+ if ($shopProduct->type == "Credits") {
|
|
|
+ $user->increment('credits', $shopProduct->quantity);
|
|
|
+ } elseif ($shopProduct->type == "Server slots") {
|
|
|
+ $user->increment('server_limit', $shopProduct->quantity);
|
|
|
}
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * @param Request $request
|
|
|
- */
|
|
|
- public function StripeWebhooks(Request $request)
|
|
|
- {
|
|
|
- \Stripe\Stripe::setApiKey($this->getStripeSecret());
|
|
|
|
|
|
- try {
|
|
|
- $payload = @file_get_contents('php://input');
|
|
|
- $sig_header = $request->header('Stripe-Signature');
|
|
|
- $event = null;
|
|
|
- $event = \Stripe\Webhook::constructEvent(
|
|
|
- $payload,
|
|
|
- $sig_header,
|
|
|
- $this->getStripeEndpointSecret()
|
|
|
- );
|
|
|
- } catch (\UnexpectedValueException $e) {
|
|
|
- // Invalid payload
|
|
|
+ //skipped the referral commission, because the user did not pay anything.
|
|
|
+
|
|
|
+ //not giving client role
|
|
|
+
|
|
|
+ //store 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,
|
|
|
+ ]);
|
|
|
|
|
|
- abort(400);
|
|
|
- } catch (\Stripe\Exception\SignatureVerificationException $e) {
|
|
|
- // Invalid signature
|
|
|
+ event(new UserUpdateCreditsEvent($user));
|
|
|
|
|
|
- abort(400);
|
|
|
- }
|
|
|
+ //not sending an invoice
|
|
|
|
|
|
- // Handle the event
|
|
|
- switch ($event->type) {
|
|
|
- case 'payment_intent.succeeded':
|
|
|
- $paymentIntent = $event->data->object; // contains a \Stripe\PaymentIntent
|
|
|
- $this->handleStripePaymentSuccessHook($paymentIntent);
|
|
|
- break;
|
|
|
- default:
|
|
|
- echo 'Received unknown event type ' . $event->type;
|
|
|
- }
|
|
|
+ //redirect back to home
|
|
|
+ return redirect()->route('home')->with('success', __('Your credit balance has been increased!'));
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * @return \Stripe\StripeClient
|
|
|
- */
|
|
|
- protected function getStripeClient()
|
|
|
+ public function pay(Request $request)
|
|
|
{
|
|
|
- return new \Stripe\StripeClient($this->getStripeSecret());
|
|
|
- }
|
|
|
+ $product = ShopProduct::find($request->product_id);
|
|
|
+ $paymentGateway = $request->payment_method;
|
|
|
|
|
|
- /**
|
|
|
- * @return string
|
|
|
- */
|
|
|
- protected function getStripeSecret()
|
|
|
- {
|
|
|
- return env('APP_ENV') == 'local'
|
|
|
- ? config("SETTINGS::PAYMENTS:STRIPE:TEST_SECRET")
|
|
|
- : config("SETTINGS::PAYMENTS:STRIPE:SECRET");
|
|
|
+ return redirect()->route('payment.' . $paymentGateway . 'Pay', ['shopProduct' => $product->id]);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * @return string
|
|
|
+ * @param Request $request
|
|
|
*/
|
|
|
- protected function getStripeEndpointSecret()
|
|
|
- {
|
|
|
- return env('APP_ENV') == 'local'
|
|
|
- ? config("SETTINGS::PAYMENTS:STRIPE:ENDPOINT_TEST_SECRET")
|
|
|
- : config("SETTINGS::PAYMENTS:STRIPE:ENDPOINT_SECRET");
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- protected function createInvoice($user, $payment, $paymentStatus, $currencyCode)
|
|
|
+ public function Cancel(Request $request)
|
|
|
{
|
|
|
- $shopProduct = ShopProduct::where('id', $payment->shop_item_product_id)->first();
|
|
|
- //create invoice
|
|
|
- $lastInvoiceID = \App\Models\Invoice::where("invoice_name", "like", "%" . now()->format('mY') . "%")->count("id");
|
|
|
- $newInvoiceID = $lastInvoiceID + 1;
|
|
|
- $logoPath = storage_path('app/public/logo.png');
|
|
|
-
|
|
|
- $seller = new Party([
|
|
|
- 'name' => config("SETTINGS::INVOICE:COMPANY_NAME"),
|
|
|
- 'phone' => config("SETTINGS::INVOICE:COMPANY_PHONE"),
|
|
|
- 'address' => config("SETTINGS::INVOICE:COMPANY_ADDRESS"),
|
|
|
- 'vat' => config("SETTINGS::INVOICE:COMPANY_VAT"),
|
|
|
- 'custom_fields' => [
|
|
|
- 'E-Mail' => config("SETTINGS::INVOICE:COMPANY_MAIL"),
|
|
|
- "Web" => config("SETTINGS::INVOICE:COMPANY_WEBSITE")
|
|
|
- ],
|
|
|
- ]);
|
|
|
-
|
|
|
-
|
|
|
- $customer = new Buyer([
|
|
|
- 'name' => $user->name,
|
|
|
- 'custom_fields' => [
|
|
|
- 'E-Mail' => $user->email,
|
|
|
- 'Client ID' => $user->id,
|
|
|
- ],
|
|
|
- ]);
|
|
|
- $item = (new InvoiceItem())
|
|
|
- ->title($shopProduct->description)
|
|
|
- ->pricePerUnit($shopProduct->price);
|
|
|
-
|
|
|
- $notes = [
|
|
|
- __("Payment method") . ": " . $payment->payment_method,
|
|
|
- ];
|
|
|
- $notes = implode("<br>", $notes);
|
|
|
-
|
|
|
-
|
|
|
- $invoice = Invoice::make()
|
|
|
- ->template('controlpanel')
|
|
|
- ->name(__("Invoice"))
|
|
|
- ->buyer($customer)
|
|
|
- ->seller($seller)
|
|
|
- ->discountByPercent(0)
|
|
|
- ->taxRate(floatval($shopProduct->getTaxPercent()))
|
|
|
- ->shipping(0)
|
|
|
- ->addItem($item)
|
|
|
- ->status(__($paymentStatus))
|
|
|
- ->series(now()->format('mY'))
|
|
|
- ->delimiter("-")
|
|
|
- ->sequence($newInvoiceID)
|
|
|
- ->serialNumberFormat(config("SETTINGS::INVOICE:PREFIX") . '{DELIMITER}{SERIES}{SEQUENCE}')
|
|
|
- ->currencyCode($currencyCode)
|
|
|
- ->currencySymbol(Currencies::getSymbol($currencyCode))
|
|
|
- ->notes($notes);
|
|
|
-
|
|
|
- if (file_exists($logoPath)) {
|
|
|
- $invoice->logo($logoPath);
|
|
|
- }
|
|
|
-
|
|
|
- //Save the invoice in "storage\app\invoice\USER_ID\YEAR"
|
|
|
- $invoice->filename = $invoice->getSerialNumber() . '.pdf';
|
|
|
- $invoice->render();
|
|
|
- Storage::disk("local")->put("invoice/" . $user->id . "/" . now()->format('Y') . "/" . $invoice->filename, $invoice->output);
|
|
|
-
|
|
|
-
|
|
|
- \App\Models\Invoice::create([
|
|
|
- 'invoice_user' => $user->id,
|
|
|
- 'invoice_name' => $invoice->getSerialNumber(),
|
|
|
- 'payment_id' => $payment->payment_id,
|
|
|
- ]);
|
|
|
-
|
|
|
- //Send Invoice per Mail
|
|
|
- $user->notify(new InvoiceNotification($invoice, $user, $payment));
|
|
|
+ return redirect()->route('store.index')->with('info', 'Payment was Canceled');
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* @return JsonResponse|mixed
|
|
|
+ *
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
public function dataTable()
|
|
@@ -653,8 +141,9 @@ class PaymentController extends Controller
|
|
|
$query = Payment::with('user');
|
|
|
|
|
|
return datatables($query)
|
|
|
- ->editColumn('user', function (Payment $payment) {
|
|
|
- return $payment->user->name;
|
|
|
+
|
|
|
+ ->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);
|
|
@@ -670,12 +159,15 @@ class PaymentController extends Controller
|
|
|
})
|
|
|
|
|
|
->editColumn('created_at', function (Payment $payment) {
|
|
|
- return $payment->created_at ? $payment->created_at->diffForHumans() : '';
|
|
|
+ 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>';
|
|
|
+ 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'])
|
|
|
+ ->rawColumns(['actions', 'user'])
|
|
|
->make(true);
|
|
|
}
|
|
|
}
|