refactor: ♻️ Extracted Payment logic to events

This commit is contained in:
IceToast 2023-01-15 00:43:13 +01:00
parent f00a11da0e
commit 45aaac4189

View file

@ -83,19 +83,19 @@ function PaypalPay(Request $request)
]; ];
try { try {
// Call API with your client and get a response for your call // Call API with your client and get a response for your call
$response = getPayPalClient()->execute($request); $response = getPayPalClient()->execute($request);
Redirect::away($response->result->links[1]->href)->send(); Redirect::away($response->result->links[1]->href)->send();
return;
} catch (HttpException $ex) { } catch (HttpException $ex) {
error_log($ex->statusCode); error_log($ex->statusCode);
error_log($ex->getMessage()); error_log($ex->getMessage());
$payment->delete(); $payment->delete();
return Redirect::route('payment.Cancel'); Redirect::route('payment.Cancel');
return;
} }
} }
/** /**
@ -104,6 +104,8 @@ function PaypalPay(Request $request)
function PaypalSuccess(Request $laravelRequest) function PaypalSuccess(Request $laravelRequest)
{ {
$user = Auth::user(); $user = Auth::user();
$user = User::findOrFail($user->id);
$payment = Payment::findOrFail($laravelRequest->payment); $payment = Payment::findOrFail($laravelRequest->payment);
$shopProduct = ShopProduct::findOrFail($payment->shop_item_product_id); $shopProduct = ShopProduct::findOrFail($payment->shop_item_product_id);
@ -114,55 +116,6 @@ function PaypalSuccess(Request $laravelRequest)
// Call API with your client and get a response for your call // Call API with your client and get a response for your call
$response = getPayPalClient()->execute($request); $response = getPayPalClient()->execute($request);
if ($response->statusCode == 201 || $response->statusCode == 200) { 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);
}
//give referral commission always
if((config("SETTINGS::REFERRAL:MODE") == "commission" || config("SETTINGS::REFERRAL:MODE") == "both") && $shopProduct->type=="Credits" && config("SETTINGS::REFERRAL::ALWAYS_GIVE_COMMISSION") == "true"){
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*(PartnerDiscount::getCommission($ref_user->id))/100,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.')');
}
}
//update role give Referral-reward
if ($user->role == 'member') {
$user->update(['role' => 'client']);
//give referral commission only on first purchase
if((config("SETTINGS::REFERRAL:MODE") == "commission" || config("SETTINGS::REFERRAL:MODE") == "both") && $shopProduct->type=="Credits" && config("SETTINGS::REFERRAL::ALWAYS_GIVE_COMMISSION") == "false"){
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*(PartnerDiscount::getCommission($ref_user->id))/100,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.')');
}
}
}
//update payment //update payment
$payment->update([ $payment->update([
'status' => 'success', 'status' => 'success',
@ -170,9 +123,7 @@ function PaypalSuccess(Request $laravelRequest)
]); ]);
event(new UserUpdateCreditsEvent($user)); event(new UserUpdateCreditsEvent($user));
event(new PaymentEvent($payment)); event(new PaymentEvent($user, $payment, $shopProduct));
error_log("Payment successfull");
// redirect to the payment success page with success message // redirect to the payment success page with success message
Redirect::route('home')->with('success', 'Payment successful')->send(); Redirect::route('home')->with('success', 'Payment successful')->send();