![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/app/code/StripeIntegration/Payments/Helper/Stripe/ |
<?php namespace StripeIntegration\Payments\Helper\Stripe; class CheckoutSession { private $config; private $tokenHelper; public function __construct( \StripeIntegration\Payments\Model\Config $config, \StripeIntegration\Payments\Helper\Token $tokenHelper ) { $this->config = $config; $this->tokenHelper = $tokenHelper; } public function getPaymentIntentUpdateParams($params, $paymentIntent, $filterParams = []) { $updateParams = []; $allowedParams = ["amount", "currency", "description", "metadata"]; foreach ($allowedParams as $key) { if (!empty($filterParams) && !in_array($key, $filterParams)) continue; if (isset($params[$key])) $updateParams[$key] = $params[$key]; } if (!empty($updateParams["amount"]) && $updateParams["amount"] == $paymentIntent->amount) unset($updateParams["amount"]); if (!empty($updateParams["currency"]) && $updateParams["currency"] == $paymentIntent->currency) unset($updateParams["currency"]); return $updateParams; } public function getLastTransactionId(\Magento\Payment\Model\InfoInterface $payment) { if ($payment->getLastTransId()) return $this->tokenHelper->cleanToken($payment->getLastTransId()); if ($payment->getAdditionalInformation("checkout_session_id")) { $csId = $payment->getAdditionalInformation("checkout_session_id"); $cs = $this->config->getStripeClient()->checkout->sessions->retrieve($csId, ['expand' => ['payment_intent', 'subscription']]); if (!empty($cs->payment_intent->id)) return $cs->payment_intent->id; } return null; } }