![]() 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/ |
<?php declare(strict_types=1); namespace StripeIntegration\Payments\Helper; class Token { public function isConfirmationToken($token) { if (!is_string($token)) return false; return substr($token, 0, 7) == "ctoken_"; } public function isPaymentMethodToken($token) { if (!is_string($token)) return false; return substr($token, 0, 3) == "pm_"; } public function isExternalPaymentMethodToken($token) { if (!is_string($token)) return false; return substr($token, 0, 9) == "external_"; } public function isPaymentIntentToken($token) { if (!is_string($token)) return false; return substr($token, 0, 3) == "pi_"; } public function isSetupIntentToken($token) { if (!is_string($token)) return false; return substr($token, 0, 5) == "seti_"; } public function isSubscriptionToken($token) { if (!is_string($token)) return false; return substr($token, 0, 4) == "sub_"; } public function isChargeToken($token) { if (!is_string($token)) return false; return substr($token, 0, 3) == "ch_"; } public function getSetupIntentIdFromClientSecret($clientSecret) { if (empty($clientSecret)) return null; $parts = explode('_', $clientSecret); if (count($parts) < 2) return null; return implode('_', [$parts[0], $parts[1]]); } // Removes decorative strings that Magento adds to the transaction ID public function cleanToken($token) { if (empty($token)) return null; return preg_replace('/-.*$/', '', $token); } }