Server : Apache System : Linux 145.162.205.92.host.secureserver.net 5.14.0-611.45.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Apr 1 05:56:53 EDT 2026 x86_64 User : tradze ( 1001) PHP Version : 8.1.34 Disable Function : NONE Directory : /home/tradze/www/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'
);
}
}
}