ApplePayGateway.php 2.01 KB
Newer Older
Ketan's avatar
Ketan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
<?php
namespace Braintree;

/**
 * Braintree ApplePayGateway module
 * Manages Apple Pay for Web
 *
 * @package    Braintree
 * @category   Resources
 */
class ApplePayGateway
{
    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 registerDomain($domain)
    {
        $path = $this->_config->merchantPath() . '/processing/apple_pay/validate_domains';
        $response = $this->_http->post($path, ['url' => $domain]);
        if (array_key_exists('response', $response) && $response['response']['success'])
        {
            return new Result\Successful;
        }
        else if (array_key_exists('apiErrorResponse', $response))
        {
            return new Result\Error($response['apiErrorResponse']);
        }
    }

    public function unregisterDomain($domain)
    {
        $path = $this->_config->merchantPath() . '/processing/apple_pay/unregister_domain';
        $this->_http->delete($path, ['url' => $domain]);
        return new Result\Successful;
    }

    public function registeredDomains()
    {
        $path = $this->_config->merchantPath() . '/processing/apple_pay/registered_domains';
        $response = $this->_http->get($path);
        if (array_key_exists('response', $response) && array_key_exists('domains', $response['response']))
        {
            $options = ApplePayOptions::factory($response['response']);
            return new Result\Successful($options, 'applePayOptions');
        }
        else if (array_key_exists('apiErrorResponse', $response))
        {
            return new Result\Error($response['apiErrorResponse']);
        }
        else
        {
            throw new Exception\Unexpected('expected response or apiErrorResponse');
        }
    }
}
class_alias('Braintree\ApplePayGateway', 'Braintree_ApplePayGateway');