![]() 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/vendor/braintree/braintree_php/lib/Braintree/ |
<?php namespace Braintree; use InvalidArgumentException; /** * Braintree UsBankAccountGateway module * * Manages Braintree UsBankAccounts */ class UsBankAccountGateway { private $_gateway; private $_config; private $_http; // phpcs:ignore PEAR.Commenting.FunctionComment.Missing public function __construct($gateway) { $this->_gateway = $gateway; $this->_config = $gateway->config; $this->_config->assertHasAccessTokenOrKeys(); $this->_http = new Http($gateway->config); } /** * find a usBankAccount by token * * @param string $token paypal accountunique id * * @throws Exception\NotFound * * @return UsBankAccount */ public function find($token) { try { $path = $this->_config->merchantPath() . '/payment_methods/us_bank_account/' . $token; $response = $this->_http->get($path); return UsBankAccount::factory($response['usBankAccount']); } catch (Exception\NotFound $e) { throw new Exception\NotFound( 'US bank account with token ' . $token . ' not found' ); } } /** * create a new sale for the current UsBank account * * @param string $token payment method identifier * @param array $transactionAttribs request parameters * * @see Transaction::sale() * * @return Result\Successful|Result\Error */ public function sale($token, $transactionAttribs) { return Transaction::sale( array_merge( $transactionAttribs, ['paymentMethodToken' => $token] ) ); } /** * generic method for validating incoming gateway responses * * creates a new UsBankAccount object and encapsulates * it inside a Result\Successful object, or * encapsulates a Errors object inside a Result\Error * alternatively, throws an Unexpected exception if the response is invalid. * * @param array $response gateway response values * * @throws Exception\Unexpected * * @return Result\Successful|Result\Error */ private function _verifyGatewayResponse($response) { if (isset($response['usBankAccount'])) { // return a populated instance of UsBankAccount return new Result\Successful( UsBankAccount::factory($response['usBankAccount']) ); } elseif (isset($response['apiErrorResponse'])) { return new Result\Error($response['apiErrorResponse']); } else { throw new Exception\Unexpected( 'Expected US bank account or apiErrorResponse' ); } } }