����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 3.146.37.183 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/builderbox/www/common/Billing/Gateways/Paypal/ |
Upload File : |
<?php namespace Common\Billing\Gateways\Paypal; use Common\Billing\Invoices\CrupdateInvoice; use Common\Billing\Subscription; use Illuminate\Http\Request; use Illuminate\Routing\Controller; use Common\Billing\Gateways\GatewayFactory; use Illuminate\Support\Arr; use Symfony\Component\HttpFoundation\Response; class PaypalWebhookController extends Controller { /** * @var PaypalGateway */ private $gateway; /** * @var Subscription */ private $subscription; /** * @param GatewayFactory $gatewayFactory * @param Subscription $subscription */ public function __construct(GatewayFactory $gatewayFactory, Subscription $subscription) { $this->gateway = $gatewayFactory->get('paypal'); $this->subscription = $subscription; } /** * @param Request $request * @return Response */ public function handleWebhook(Request $request) { $payload = $request->all(); if (config('common.site.verify_paypal_webhook') && !$this->gateway->webhookIsValid($request)) { return response('Webhook validation failed', 422); } switch ($payload['event_type']) { case 'BILLING.SUBSCRIPTION.CANCELLED': case 'BILLING.SUBSCRIPTION.EXPIRED': return $this->handleSubscriptionCancelled($payload); case 'PAYMENT.SALE.COMPLETED': return $this->handleSubscriptionRenewed($payload); default: return response('Webhook Handled', 200); } } /** * Handle a cancelled customer from a paypal subscription. * * @param array $payload * @return Response */ protected function handleSubscriptionCancelled($payload) { $gatewayId = $payload['resource']['id']; $subscription = $this->subscription->where('gateway_id', $gatewayId)->first(); if ($subscription && ! $subscription->cancelled()) { $subscription->markAsCancelled(); } return response('Webhook Handled', 200); } /** * Handle a renewed stripe subscription. * * @param array $payload * @return Response */ protected function handleSubscriptionRenewed($payload) { $gatewayId = Arr::get($payload, 'resource.billing_agreement_id'); $subscription = $this->subscription->where('gateway_id', $gatewayId)->first(); if ($subscription) { $paypalSubscription = $this->gateway->subscriptions()->find($subscription); $subscription->fill(['renews_at' => $paypalSubscription['renews_at']])->save(); app(CrupdateInvoice::class)->execute([ 'subscription_id' => $subscription->id, 'paid' => true, ]); } return response('Webhook Handled', 200); } }