[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: CreditCardGateway.php
<?php namespace Braintree; use InvalidArgumentException; /** * Braintree CreditCardGateway module * Creates and manages Braintree CreditCards * * <b>== More information ==</b> * * For more detailed information on CreditCards, see {@link https://developers.braintreepayments.com/reference/response/credit-card/php https://developers.braintreepayments.com/reference/response/credit-card/php}<br /> * For more detailed information on CreditCard verifications, see {@link https://developers.braintreepayments.com/reference/response/credit-card-verification/php https://developers.braintreepayments.com/reference/response/credit-card-verification/php} * * @package Braintree * @category Resources */ class CreditCardGateway { 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($attribs) { Util::verifyKeys(self::createSignature(), $attribs); $this->_checkForDeprecatedAttributes($attribs); return $this->_doCreate('/payment_methods', ['credit_card' => $attribs]); } /** * attempts the create operation assuming all data will validate * returns a CreditCard object instead of a Result * * @access public * @param array $attribs * @return CreditCard * @throws Exception\ValidationError */ public function createNoValidate($attribs) { $result = $this->create($attribs); return Util::returnObjectOrThrowException(__CLASS__, $result); } /** * returns a ResourceCollection of expired credit cards * @return ResourceCollection */ public function expired() { $path = $this->_config->merchantPath() . '/payment_methods/all/expired_ids'; $response = $this->_http->post($path); $pager = [ 'object' => $this, 'method' => 'fetchExpired', 'methodArgs' => [] ]; return new ResourceCollection($response, $pager); } public function fetchExpired($ids) { $path = $this->_config->merchantPath() . "/payment_methods/all/expired"; $response = $this->_http->post($path, ['search' => ['ids' => $ids]]); return Util::extractattributeasarray( $response['paymentMethods'], 'creditCard' ); } /** * returns a ResourceCollection of credit cards expiring between start/end * * @return ResourceCollection */ public function expiringBetween($startDate, $endDate) { $queryPath = $this->_config->merchantPath() . '/payment_methods/all/expiring_ids?start=' . date('mY', $startDate) . '&end=' . date('mY', $endDate); $response = $this->_http->post($queryPath); $pager = [ 'object' => $this, 'method' => 'fetchExpiring', 'methodArgs' => [$startDate, $endDate] ]; return new ResourceCollection($response, $pager); } public function fetchExpiring($startDate, $endDate, $ids) { $queryPath = $this->_config->merchantPath() . '/payment_methods/all/expiring?start=' . date('mY', $startDate) . '&end=' . date('mY', $endDate); $response = $this->_http->post($queryPath, ['search' => ['ids' => $ids]]); return Util::extractAttributeAsArray( $response['paymentMethods'], 'creditCard' ); } /** * find a creditcard by token * * @access public * @param string $token credit card unique id * @return CreditCard * @throws Exception\NotFound */ public function find($token) { $this->_validateId($token); try { $path = $this->_config->merchantPath() . '/payment_methods/credit_card/' . $token; $response = $this->_http->get($path); return CreditCard::factory($response['creditCard']); } catch (Exception\NotFound $e) { throw new Exception\NotFound( 'credit card with token ' . $token . ' not found' ); } } /** * Convert a payment method nonce to a credit card * * @access public * @param string $nonce payment method nonce * @return CreditCard * @throws Exception\NotFound */ public function fromNonce($nonce) { $this->_validateId($nonce, "nonce"); try { $path = $this->_config->merchantPath() . '/payment_methods/from_nonce/' . $nonce; $response = $this->_http->get($path); return CreditCard::factory($response['creditCard']); } catch (Exception\NotFound $e) { throw new Exception\NotFound( 'credit card with nonce ' . $nonce . ' locked, consumed or not found' ); } } /** * create a credit on the card for the passed transaction * * @access public * @param array $attribs * @return Result\Successful|Result\Error */ public function credit($token, $transactionAttribs) { $this->_validateId($token); return Transaction::credit( array_merge( $transactionAttribs, ['paymentMethodToken' => $token] ) ); } /** * create a credit on this card, assuming validations will pass * * returns a Transaction object on success * * @access public * @param array $attribs * @return Transaction * @throws Exception\ValidationError */ public function creditNoValidate($token, $transactionAttribs) { $result = $this->credit($token, $transactionAttribs); return Util::returnObjectOrThrowException('Braintree\Transaction', $result); } /** * create a new sale for the current card * * @param string $token * @param array $transactionAttribs * @return Result\Successful|Result\Error * @see Transaction::sale() */ public function sale($token, $transactionAttribs) { $this->_validateId($token); return Transaction::sale( array_merge( $transactionAttribs, ['paymentMethodToken' => $token] ) ); } /** * create a new sale using this card, assuming validations will pass * * returns a Transaction object on success * * @access public * @param array $transactionAttribs * @param string $token * @return Transaction * @throws Exception\ValidationsFailed * @see Transaction::sale() */ public function saleNoValidate($token, $transactionAttribs) { $result = $this->sale($token, $transactionAttribs); return Util::returnObjectOrThrowException('Braintree\Transaction', $result); } /** * updates the creditcard record * * if calling this method in context, $token * is the 2nd attribute. $token is not sent in object context. * * @access public * @param array $attributes (Note: $deviceSessionId and $fraudMerchantId params are deprecated. Use $deviceData instead) * @param string $token (optional) * @return Result\Successful|Result\Error */ public function update($token, $attributes) { Util::verifyKeys(self::updateSignature(), $attributes); $this->_validateId($token); $this->_checkForDeprecatedAttributes($attributes); return $this->_doUpdate('put', '/payment_methods/credit_card/' . $token, ['creditCard' => $attributes]); } /** * update a creditcard record, assuming validations will pass * * if calling this method in context, $token * is the 2nd attribute. $token is not sent in object context. * returns a CreditCard object on success * * @access public * @param array $attributes * @param string $token * @return CreditCard * @throws Exception\ValidationsFailed */ public function updateNoValidate($token, $attributes) { $result = $this->update($token, $attributes); return Util::returnObjectOrThrowException(__CLASS__, $result); } public function delete($token) { $this->_validateId($token); $path = $this->_config->merchantPath() . '/payment_methods/credit_card/' . $token; $this->_http->delete($path); return new Result\Successful(); } private static function baseOptions() { return ['makeDefault', 'verificationMerchantAccountId', 'verifyCard', 'verificationAmount', 'verificationAccountType', 'venmoSdkSession']; } private static function baseSignature($options) { return [ 'billingAddressId', 'cardholderName', 'cvv', 'number', 'expirationDate', 'expirationMonth', 'expirationYear', 'token', 'venmoSdkPaymentMethodCode', 'deviceData', 'paymentMethodNonce', 'deviceSessionId', 'fraudMerchantId', // NEXT_MAJOR_VERSION remove deviceSessionId and fraudMerchantId ['options' => $options], [ 'billingAddress' => self::billingAddressSignature() ], ]; } public static function billingAddressSignature() { return [ 'firstName', 'lastName', 'company', 'countryCodeAlpha2', 'countryCodeAlpha3', 'countryCodeNumeric', 'countryName', 'extendedAddress', 'locality', 'region', 'postalCode', 'streetAddress' ]; } public static function createSignature() { $options = self::baseOptions(); $options[] = "failOnDuplicatePaymentMethod"; $signature = self::baseSignature($options); $signature[] = 'customerId'; $signature[] = self::threeDSecurePassThruSignature(); return $signature; } public static function threeDSecurePassThruSignature() { return [ 'threeDSecurePassThru' => [ 'eciFlag', 'cavv', 'xid', 'threeDSecureVersion', 'authenticationResponse', 'directoryResponse', 'cavvAlgorithm', 'dsTransactionId', ] ]; } public static function updateSignature() { $options = self::baseOptions(); $options[] = "failOnDuplicatePaymentMethod"; $signature = self::baseSignature($options); $signature[] = self::threeDSecurePassThruSignature(); $updateExistingBillingSignature = [ [ 'options' => [ 'updateExisting' ] ] ]; foreach($signature AS $key => $value) { if(is_array($value) and array_key_exists('billingAddress', $value)) { $signature[$key]['billingAddress'] = array_merge_recursive($value['billingAddress'], $updateExistingBillingSignature); } } return $signature; } /** * sends the create request to the gateway * * @ignore * @param string $subPath * @param array $params * @return mixed */ public function _doCreate($subPath, $params) { $fullPath = $this->_config->merchantPath() . $subPath; $response = $this->_http->post($fullPath, $params); return $this->_verifyGatewayResponse($response); } /** * verifies that a valid credit card identifier is being used * @ignore * @param string $identifier * @param Optional $string $identifierType type of identifier supplied, default "token" * @throws InvalidArgumentException */ private function _validateId($identifier = null, $identifierType = "token") { if (empty($identifier)) { throw new InvalidArgumentException( 'expected credit card id to be set' ); } if (!preg_match('/^[0-9A-Za-z_-]+$/', $identifier)) { throw new InvalidArgumentException( $identifier . ' is an invalid credit card ' . $identifierType . '.' ); } } /** * sends the update request to the gateway * * @ignore * @param string $url * @param array $params * @return mixed */ private function _doUpdate($httpVerb, $subPath, $params) { $fullPath = $this->_config->merchantPath() . $subPath; $response = $this->_http->$httpVerb($fullPath, $params); return $this->_verifyGatewayResponse($response); } /** * generic method for validating incoming gateway responses * * creates a new CreditCard 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 * * @ignore * @param array $response gateway response values * @return Result\Successful|Result\Error * @throws Exception\Unexpected */ private function _verifyGatewayResponse($response) { if (isset($response['creditCard'])) { // return a populated instance of Address return new Result\Successful( CreditCard::factory($response['creditCard']) ); } elseif (isset($response['apiErrorResponse'])) { return new Result\Error($response['apiErrorResponse']); } else { throw new Exception\Unexpected( "Expected address or apiErrorResponse" ); } } private function _checkForDeprecatedAttributes($attributes) { if (isset($attributes['deviceSessionId'])) { trigger_error('$deviceSessionId is deprecated, use $deviceData instead', E_USER_DEPRECATED); } if (isset($attributes['fraudMerchantId'])) { trigger_error('$fraudMerchantId is deprecated, use $deviceData instead', E_USER_DEPRECATED); } } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: premium320.web-hosting.com
Server IP: 66.29.153.54
PHP Version: 8.2.29
Server Software: LiteSpeed
System: Linux premium320.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64
HDD Total: 97.87 GB
HDD Free: 76.85 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: aoneqssk
User ID (UID): 1285
Group ID (GID): 1290
Script Owner UID: 1285
Current Dir Owner: 1285