stripe = $stripe; } public function paymentView(array $data) { $data['gateway'] = $this->stripe; $data['return_url'] = $this->buildReturnUrl($data); $data['currency'] = $this->stripe->client->getCurrencyCode(); $data['stripe_amount'] = $this->stripe->convertToStripeAmount($data['amount_with_fee'], $this->stripe->client->currency()->precision); return render('gateways.stripe.alipay.pay', $data); } private function buildReturnUrl($data): string { return route('client.payments.response', [ 'company_gateway_id' => $this->stripe->company_gateway->id, 'gateway_type_id' => GatewayType::SOFORT, 'hashed_ids' => implode(",", $data['hashed_ids']), 'amount' => $data['amount'], 'fee' => $data['fee'], 'payment_method_id' => GatewayType::SOFORT, ]); } public function paymentResponse($request) { $state = array_merge($request->all(), []); $amount = $state['amount'] + $state['fee']; $state['amount'] = $this->stripe->convertToStripeAmount($amount, $this->stripe->client->currency()->precision); if ($request->redirect_status == 'succeeded') { return $this->processSuccesfulRedirect($state); } return $this->processUnsuccesfulRedirect($state); } public function processSuccesfulRedirect($state) { $state['charge_id'] = $state['source']; $this->stripe->init(); $state['payment_type'] = PaymentType::ALIPAY; $data = [ 'payment_method' => $state['charge_id'], 'payment_type' => $state['payment_type'], 'amount' => $state['amount'], ]; $payment = $this->stripe->createPayment($data, Payment::STATUS_PENDING); if (isset($state['hashed_ids'])) { $this->stripe->attachInvoices($payment, $state['hashed_ids']); } event(new PaymentWasCreated($payment, $payment->company)); $logger_message = [ 'server_response' => $state, 'data' => $data ]; SystemLogger::dispatch($logger_message, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_SUCCESS, SystemLog::TYPE_STRIPE, $this->stripe->client); return redirect()->route('client.payments.show', ['payment' => $this->stripe->encodePrimaryKey($payment->id)]); } public function processUnsuccesfulRedirect($state) { PaymentFailureMailer::dispatch($this->stripe->client, $state['charge']->failure_message, $this->stripe->client->company, $state['amount']); $message = [ 'server_response' => $state['charge'], 'data' => $state, ]; SystemLogger::dispatch($message, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_STRIPE, $this->stripe->client); throw new \Exception('Failed to process the payment.', 1); } }