123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <?php
- namespace Braintree;
- use InvalidArgumentException;
- class ClientTokenGateway
- {
- /**
- *
- * @var Gateway
- */
- private $_gateway;
- /**
- *
- * @var Configuration
- */
- private $_config;
- /**
- *
- * @var Http
- */
- private $_http;
- /**
- *
- * @param Gateway $gateway
- */
- public function __construct($gateway)
- {
- $this->_gateway = $gateway;
- $this->_config = $gateway->config;
- $this->_config->assertHasAccessTokenOrKeys();
- $this->_http = new Http($gateway->config);
- }
- public function generate($params=[])
- {
- if (!array_key_exists("version", $params)) {
- $params["version"] = ClientToken::DEFAULT_VERSION;
- }
- $this->conditionallyVerifyKeys($params);
- $generateParams = ["client_token" => $params];
- return $this->_doGenerate('/client_token', $generateParams);
- }
- /**
- * sends the generate request to the gateway
- *
- * @ignore
- * @param var $url
- * @param array $params
- * @return string
- */
- public function _doGenerate($subPath, $params)
- {
- $fullPath = $this->_config->merchantPath() . $subPath;
- $response = $this->_http->post($fullPath, $params);
- return $this->_verifyGatewayResponse($response);
- }
- /**
- *
- * @param array $params
- * @throws InvalidArgumentException
- */
- public function conditionallyVerifyKeys($params)
- {
- if (array_key_exists("customerId", $params)) {
- Util::verifyKeys($this->generateWithCustomerIdSignature(), $params);
- } else {
- Util::verifyKeys($this->generateWithoutCustomerIdSignature(), $params);
- }
- }
- /**
- *
- * @return mixed[]
- */
- public function generateWithCustomerIdSignature()
- {
- return [
- "version", "customerId", "proxyMerchantId",
- ["options" => ["makeDefault", "verifyCard", "failOnDuplicatePaymentMethod"]],
- "merchantAccountId"];
- }
- /**
- *
- * @return string[]
- */
- public function generateWithoutCustomerIdSignature()
- {
- return ["version", "proxyMerchantId", "merchantAccountId"];
- }
- /**
- * generic method for validating incoming gateway responses
- *
- * If the request is successful, returns a client token string.
- * Otherwise, throws an InvalidArgumentException with the error
- * response from the Gateway or an HTTP status code exception.
- *
- * @ignore
- * @param array $response gateway response values
- * @return string client token
- * @throws InvalidArgumentException | HTTP status code exception
- */
- private function _verifyGatewayResponse($response)
- {
- if (isset($response['clientToken'])) {
- return $response['clientToken']['value'];
- } elseif (isset($response['apiErrorResponse'])) {
- throw new InvalidArgumentException(
- $response['apiErrorResponse']['message']
- );
- } else {
- throw new Exception\Unexpected(
- "Expected clientToken or apiErrorResponse"
- );
- }
- }
- }
- class_alias('Braintree\ClientTokenGateway', 'Braintree_ClientTokenGateway');
|