1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- namespace Braintree;
- class CreditCardVerificationGateway
- {
- private $_gateway;
- private $_config;
- private $_http;
- public function __construct($gateway)
- {
- $this->_gateway = $gateway;
- $this->_config = $gateway->config;
- $this->_config->assertHasAccessTokenOrKeys();
- $this->_http = new Http($gateway->config);
- }
- public function create($attributes)
- {
- $response = $this->_http->post($this->_config->merchantPath() . "/verifications", ['verification' => $attributes]);
- return $this->_verifyGatewayResponse($response);
- }
- private function _verifyGatewayResponse($response)
- {
- if(isset($response['verification'])){
- return new Result\Successful(
- CreditCardVerification::factory($response['verification'])
- );
- } else if (isset($response['apiErrorResponse'])) {
- return new Result\Error($response['apiErrorResponse']);
- } else {
- throw new Exception\Unexpected(
- "Expected transaction or apiErrorResponse"
- );
- }
- }
- public function fetch($query, $ids)
- {
- $criteria = [];
- foreach ($query as $term) {
- $criteria[$term->name] = $term->toparam();
- }
- $criteria["ids"] = CreditCardVerificationSearch::ids()->in($ids)->toparam();
- $path = $this->_config->merchantPath() . '/verifications/advanced_search';
- $response = $this->_http->post($path, ['search' => $criteria]);
- return Util::extractattributeasarray(
- $response['creditCardVerifications'],
- 'verification'
- );
- }
- public function search($query)
- {
- $criteria = [];
- foreach ($query as $term) {
- $criteria[$term->name] = $term->toparam();
- }
- $path = $this->_config->merchantPath() . '/verifications/advanced_search_ids';
- $response = $this->_http->post($path, ['search' => $criteria]);
- $pager = [
- 'object' => $this,
- 'method' => 'fetch',
- 'methodArgs' => [$query]
- ];
- return new ResourceCollection($response, $pager);
- }
- }
- class_alias('Braintree\CreditCardVerificationGateway', 'Braintree_CreditCardVerificationGateway');
|