stripe = $stripe; } /** * Create a charge against a payment method. * @param ClientGatewayToken $cgt * @param PaymentHash $payment_hash * @return mixed success/failure * @throws \Laracasts\Presenter\Exceptions\PresenterException */ public function tokenBilling(ClientGatewayToken $cgt, PaymentHash $payment_hash) { if ($cgt->gateway_type_id == GatewayType::BANK_TRANSFER) { return (new ACH($this->stripe))->tokenBilling($cgt, $payment_hash); } elseif($cgt->gateway_type_id == GatewayType::ACSS) { return (new ACSS($this->stripe))->tokenBilling($cgt, $payment_hash); } $amount = array_sum(array_column($payment_hash->invoices(), 'amount')) + $payment_hash->fee_total; $description = $this->stripe->getDescription(false); $this->stripe->init(); $response = null; try { $data = [ 'amount' => $this->stripe->convertToStripeAmount($amount, $this->stripe->client->currency()->precision, $this->stripe->client->currency()), 'currency' => $this->stripe->client->getCurrencyCode(), 'payment_method' => $cgt->token, 'customer' => $cgt->gateway_customer_reference, 'confirm' => true, 'description' => $description, 'metadata' => [ 'payment_hash' => $payment_hash->hash, 'gateway_type_id' => $cgt->gateway_type_id, ], ]; if ($cgt->gateway_type_id == GatewayType::SEPA) { $data['payment_method_types'] = ['sepa_debit']; } if ($cgt->gateway_type_id == GatewayType::BACS) { $data['payment_method_types'] = ['bacs_debit']; } /* Should improve token billing with client not present */ if (!auth()->guard('contact')->check()) { $data['off_session'] = true; } $response = $this->stripe->createPaymentIntent($data); SystemLogger::dispatch($response, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_SUCCESS, SystemLog::TYPE_STRIPE, $this->stripe->client, $this->stripe->client->company); } catch (\Exception $e) { $data = [ 'status' => '', 'error_type' => '', 'error_code' => '', 'param' => '', 'message' => '', ]; switch ($e) { /** @var \Stripe\Exception\CardException $e */ case $e instanceof CardException: $data['message'] = $e->getError()->message ?? $e->getMessage(); break; case $e instanceof RateLimitException: $data['message'] = 'Too many requests made to the API too quickly'; break; case $e instanceof InvalidRequestException: $data['message'] = 'Invalid parameters were supplied to Stripe\'s API'; break; case $e instanceof AuthenticationException: $data['message'] = 'Authentication with Stripe\'s API failed'; break; case $e instanceof ApiErrorException: $data['message'] = 'Network communication with Stripe failed'; break; default: $data['message'] = $e->getMessage(); break; } $this->stripe->processInternallyFailedPayment($this->stripe, $e); SystemLogger::dispatch($data, SystemLog::CATEGORY_GATEWAY_RESPONSE, SystemLog::EVENT_GATEWAY_FAILURE, SystemLog::TYPE_STRIPE, $this->stripe->client, $this->stripe->client->company); } if (! $response) { return false; } if ($cgt->gateway_type_id == GatewayType::SEPA) { $payment_method_type = PaymentType::SEPA; $status = Payment::STATUS_PENDING; } elseif ($cgt->gateway_type_id == GatewayType::BACS) { $payment_method_type = PaymentType::BACS; $status = Payment::STATUS_PENDING; } else { if (isset($response->latest_charge)) { $charge = \Stripe\Charge::retrieve($response->latest_charge, $this->stripe->stripe_connect_auth); $payment_method_type = $charge->payment_method_details->card->brand; } elseif (isset($response->charges->data[0]->payment_method_details->card->brand)) { $payment_method_type = $response->charges->data[0]->payment_method_details->card->brand; } else { $payment_method_type = 'visa'; } $status = Payment::STATUS_COMPLETED; } if (!in_array($response?->status, ['succeeded', 'processing'])) { $this->stripe->processInternallyFailedPayment($this->stripe, new \Exception('Auto billing failed.', 400)); } $data = [ 'gateway_type_id' => $cgt->gateway_type_id, 'payment_type' => $this->transformPaymentTypeToConstant($payment_method_type), 'transaction_reference' => isset($response->latest_charge) ? $response->latest_charge : $response->charges->data[0]->id, 'amount' => $amount, ]; $payment = $this->stripe->createPayment($data, $status); $payment->meta = $cgt->meta; $payment->save(); $payment_hash->data = array_merge((array) $payment_hash->data, ['payment_intent' => $response, 'amount_with_fee' => $amount]); $payment_hash->payment_id = $payment->id; $payment_hash->save(); return $payment; } private function formatGatewayResponse($data, $vars) { $response = $data['response']; return [ 'transaction_reference' => $response->getTransactionResponse()->getTransId(), 'amount' => $vars['amount'], 'auth_code' => $response->getTransactionResponse()->getAuthCode(), 'code' => $response->getTransactionResponse()->getMessages()[0]->getCode(), 'description' => $response->getTransactionResponse()->getMessages()[0]->getDescription(), 'invoices' => $vars['hashed_ids'], ]; } private function transformPaymentTypeToConstant($type) { switch ($type) { case 'visa': return PaymentType::VISA; case 'mastercard': return PaymentType::MASTERCARD; case PaymentType::SEPA: return PaymentType::SEPA; case PaymentType::BACS: return PaymentType::BACS; default: return PaymentType::CREDIT_CARD_OTHER; } } }