Files
2025-11-24 21:33:55 +00:00

145 lines
4.8 KiB
PHP

<?php
/**
* Class Afterpay_Payment_Method
*
* @package WCPay\Payment_Methods
*/
namespace WCPay\Payment_Methods;
use WC_Payments_Token_Service;
use WC_Payments_Utils;
use WCPay\Constants\Country_Code;
use WCPay\Constants\Currency_Code;
/**
* Afterpay Payment Method class extending UPE base class
*/
class Afterpay_Payment_Method extends UPE_Payment_Method {
const PAYMENT_METHOD_STRIPE_ID = 'afterpay_clearpay';
/**
* Constructor for Afterpay payment method
*
* @param WC_Payments_Token_Service $token_service Token class instance.
*/
public function __construct( $token_service ) {
parent::__construct( $token_service );
$this->stripe_id = self::PAYMENT_METHOD_STRIPE_ID;
$this->is_reusable = false;
$this->is_bnpl = true;
$this->icon_url = plugins_url( 'assets/images/payment-methods/afterpay-logo.svg', WCPAY_PLUGIN_FILE );
$this->currencies = [ Currency_Code::UNITED_STATES_DOLLAR, Currency_Code::CANADIAN_DOLLAR, Currency_Code::AUSTRALIAN_DOLLAR, Currency_Code::NEW_ZEALAND_DOLLAR, Currency_Code::POUND_STERLING ];
$this->countries = [ Country_Code::UNITED_STATES, Country_Code::CANADA, Country_Code::AUSTRALIA, Country_Code::NEW_ZEALAND, Country_Code::UNITED_KINGDOM ];
$this->accept_only_domestic_payment = true;
$this->limits_per_currency = WC_Payments_Utils::get_bnpl_limits_per_currency( self::PAYMENT_METHOD_STRIPE_ID );
}
/**
* Returns payment method title.
*
* @param string|null $account_country Country of merchants account.
* @param array|false $payment_details Payment details from charge object. Not used by this class.
* @return string|null
*
* @phpcs:disable VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
*/
public function get_title( ?string $account_country = null, $payment_details = false ) {
if ( Country_Code::UNITED_KINGDOM === $account_country ) {
return __( 'Clearpay', 'woocommerce-payments' );
}
if ( Country_Code::UNITED_STATES === $account_country ) {
return __( 'Cash App Afterpay', 'woocommerce-payments' );
}
return __( 'Afterpay', 'woocommerce-payments' );
}
/**
* Returns payment method icon.
*
* @param string|null $account_country Country of merchants account.
* @return string|null
*/
public function get_icon( ?string $account_country = null ) {
if ( Country_Code::UNITED_KINGDOM === $account_country ) {
return plugins_url( 'assets/images/payment-methods/clearpay.svg', WCPAY_PLUGIN_FILE );
}
if ( Country_Code::UNITED_STATES === $account_country ) {
return plugins_url( 'assets/images/payment-methods/afterpay-cashapp-logo.svg', WCPAY_PLUGIN_FILE );
}
return plugins_url( 'assets/images/payment-methods/afterpay-badge.svg', WCPAY_PLUGIN_FILE );
}
/**
* Returns payment method dark icon.
*
* @param string|null $account_country Country of merchants account.
* @return string|null
*/
public function get_dark_icon( ?string $account_country = null ) {
if ( Country_Code::UNITED_KINGDOM === $account_country ) {
return plugins_url( 'assets/images/payment-methods/clearpay-dark.svg', WCPAY_PLUGIN_FILE );
}
if ( Country_Code::UNITED_STATES === $account_country ) {
return plugins_url( 'assets/images/payment-methods/afterpay-cashapp-logo-dark.svg', WCPAY_PLUGIN_FILE );
}
return plugins_url( 'assets/images/payment-methods/afterpay-badge-dark.svg', WCPAY_PLUGIN_FILE );
}
/**
* Returns testing credentials to be printed at checkout in test mode.
*
* @param string $account_country The country of the account.
* @return string
*/
public function get_testing_instructions( string $account_country ) {
return '';
}
/**
* Returns payment method description for the settings page.
*
* @param string|null $account_country Country of merchants account.
*
* @return string
*/
public function get_description( ?string $account_country = null ) {
if ( Country_Code::UNITED_KINGDOM === $account_country ) {
return __(
'Allow customers to pay over time with Clearpay.',
'woocommerce-payments'
);
}
return __(
'Allow customers to pay over time with Afterpay.',
'woocommerce-payments'
);
}
/**
* Returns payment method settings icon.
*
* @param string|null $account_country Country of merchants account.
* @return string
*/
public function get_settings_icon_url( ?string $account_country = null ) {
if ( Country_Code::UNITED_KINGDOM === $account_country ) {
return plugins_url( 'assets/images/payment-methods/clearpay.svg', WCPAY_PLUGIN_FILE );
}
if ( Country_Code::UNITED_STATES === $account_country ) {
return plugins_url( 'assets/images/payment-methods/afterpay-cashapp-badge.svg', WCPAY_PLUGIN_FILE );
}
return plugins_url( 'assets/images/payment-methods/afterpay-logo.svg', WCPAY_PLUGIN_FILE );
}
}