���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home/rickpfrv/tie.cx/app/controllers/WebhookPaypal.php
���ѧ٧ѧ�
<?php namespace Altum\Controllers; use Altum\Date; use Altum\Models\User; class WebhookPaypal extends Controller { public function index() { $payload = @file_get_contents('php://input'); $data = json_decode($payload); if($payload && $data && $data->event_type == 'PAYMENT.SALE.COMPLETED') { /* Initiate paypal */ $paypal = new \PayPal\Rest\ApiContext(new \PayPal\Auth\OAuthTokenCredential(settings()->paypal->client_id, settings()->paypal->secret)); $paypal->setConfig(['mode' => settings()->paypal->mode]); /* Get the billing agreement */ try { $agreement = \PayPal\Api\Agreement::get($data->resource->billing_agreement_id, $paypal); } catch (Exception $exception) { /* Output errors properly */ if (DEBUG) { error_log($exception->getCode()); error_log($exception->getData()); } http_response_code(400); } /* Get the needed details for the processing */ $payer_info = $agreement->getPayer()->getPayerInfo(); $payer_email = $payer_info->getEmail(); $payer_name = $payer_info->getFirstName() . ' ' . $payer_info->getLastName(); $payer_id = $payer_info->getPayerId(); $subscription_id = $agreement->getId(); $payment_id = $data->resource->id; $payment_total = $data->resource->amount->total; $payment_currency = $data->resource->amount->currency; $payment_subscription_id = 'paypal###' . $subscription_id; $payment_type = 'recurring'; /* Try to explode first with the old method */ $extra = explode('###', $agreement->getDescription()); if(isset($extra[0], $extra[1], $extra[2])) { $user_id = (int) $extra[0]; $plan_id = (int) $extra[1]; $payment_frequency = $extra[2]; $code = $extra[3]; $discount_amount = 0; $base_amount = 0; } else { /* New method */ $extra = explode('!!', $agreement->getDescription()); $user_id = (int) $extra[0]; $plan_id = (int) $extra[1]; $base_amount = $extra[2]; $payment_frequency = $extra[3]; $code = $extra[4]; $discount_amount = $extra[5] ? $extra[5] : 0; $taxes_ids = $extra[6]; } /* Get the plan details */ $plan = db()->where('plan_id', $plan_id)->getOne('plans'); /* Just make sure the plan is still existing */ if(!$plan) { http_response_code(400); die(); } /* Make sure the transaction is not already existing */ if(db()->where('payment_id', $payment_id)->where('processor', 'stripe')->has('payments')) { http_response_code(400); die(); } /* Make sure the account still exists */ $user = db()->where('user_id', $user_id)->getOne('users', ['user_id', 'email', 'payment_subscription_id', 'billing']); if(!$user) { http_response_code(400); die(); } /* Unsubscribe from the previous plan if needed */ if(!empty($user->payment_subscription_id) && $user->payment_subscription_id != $payment_subscription_id) { try { (new User())->cancel_subscription($user_id); } catch (\Exception $exception) { /* Output errors properly */ if (DEBUG) { echo $exception->getCode() . '-' . $exception->getMessage(); die(); } } } /* Make sure the code exists */ $codes_code = db()->where('code', $code)->where('type', 'discount')->getOne('codes'); if($codes_code) { $code = $codes_code->code; /* Check if we should insert the usage of the code or not */ if(!db()->where('user_id', $this->user->user_id)->where('code_id', $codes_code->code_id)->has('redeemed_codes')) { /* Update the code usage */ db()->where('code_id', $codes_code->code_id)->update('codes', ['redeemed' => db()->inc()]); /* Add log for the redeemed code */ db()->insert('redeemed_codes', [ 'code_id' => $codes_code->code_id, 'user_id' => $user_id, 'date' => \Altum\Date::$date ]); } } /* Add a log into the database */ $payment_id = db()->insert('payments', [ 'user_id' => $user_id, 'plan_id' => $plan_id, 'processor' => 'paypal', 'type' => $payment_type, 'frequency' => $payment_frequency, 'code' => $code, 'discount_amount' => $discount_amount, 'base_amount' => $base_amount, 'email' => $payer_email, 'payment_id' => $payment_id, 'subscription_id' => $subscription_id, 'payer_id' => $payer_id, 'name' => $payer_name, 'billing' => settings()->payment->taxes_and_billing_is_enabled && $user->billing ? $user->billing : null, 'taxes_ids' => !empty($taxes_ids) ? $taxes_ids : null, 'total_amount' => $payment_total, 'currency' => $payment_currency, 'date' => \Altum\Date::$date ]); /* Update the user with the new plan */ switch($payment_frequency) { case 'monthly': $plan_expiration_date = (new \DateTime())->modify('+30 days')->format('Y-m-d H:i:s'); break; case 'annual': $plan_expiration_date = (new \DateTime())->modify('+12 months')->format('Y-m-d H:i:s'); break; case 'lifetime': $plan_expiration_date = (new \DateTime())->modify('+100 years')->format('Y-m-d H:i:s'); break; } /* Database query */ db()->where('user_id', $user_id)->update('users', [ 'plan_id' => $plan_id, 'plan_settings' => $plan->settings, 'plan_expiration_date' => $plan_expiration_date, 'payment_subscription_id' => $payment_subscription_id ]); /* Clear the cache */ \Altum\Cache::$adapter->deleteItemsByTag('user_id=' . $user_id); /* Send notification to the user */ /* Prepare the email */ $email_template = get_email_template( [], language()->global->emails->user_payment->subject, [ '{{PLAN_EXPIRATION_DATE}}' => Date::get($plan_expiration_date, 2), '{{USER_PLAN_LINK}}' => url('account-plan'), '{{USER_PAYMENTS_LINK}}' => url('account-payments'), ], language()->global->emails->user_payment->body ); send_mail( $user->email, $email_template->subject, $email_template->body ); /* Send notification to admin if needed */ if(settings()->email_notifications->new_payment && !empty(settings()->email_notifications->emails)) { send_mail( explode(',', settings()->email_notifications->emails), sprintf(language()->global->emails->admin_new_payment_notification->subject, 'paypal', $payment_total, $payment_currency), sprintf(language()->global->emails->admin_new_payment_notification->body, $payment_total, $payment_currency) ); } http_response_code(200); } } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | ���֧ߧ֧�ѧ�ڧ� ����ѧߧڧ��: 0.1 |
proxy
|
phpinfo
|
���ѧ����ۧܧ�