2014-08-15 09:56:19 +00:00
< ? php
2014-09-20 19:42:58 +00:00
2014-08-15 09:56:19 +00:00
if ( ! defined ( 'ABSPATH' ) ) {
exit ; // Exit if accessed directly
}
/**
2015-11-03 13:31:20 +00:00
* Simplify Commerce Gateway .
2014-08-15 09:56:19 +00:00
*
2018-03-09 12:53:10 +00:00
* @ class WC_Gateway_Simplify_Commerce
* @ extends WC_Payment_Gateway_CC
2014-08-15 09:56:19 +00:00
* @ since 2.2 . 0
2018-03-09 12:53:10 +00:00
* @ version 1.0 . 0
* @ package WooCommerce / Classes / Payment
* @ author WooThemes
2014-08-15 09:56:19 +00:00
*/
2016-03-01 17:09:29 +00:00
class WC_Gateway_Simplify_Commerce extends WC_Payment_Gateway_CC {
2014-08-15 09:56:19 +00:00
/**
2015-11-03 13:31:20 +00:00
* Constructor .
2014-08-15 09:56:19 +00:00
*/
public function __construct () {
2018-03-09 12:53:10 +00:00
$this -> id = 'simplify_commerce' ;
$this -> method_title = __ ( 'Simplify Commerce' , 'woocommerce' );
$this -> method_description = __ ( 'Take payments via Simplify Commerce - uses simplify.js to create card tokens and the Simplify Commerce SDK. Requires SSL when sandbox is disabled.' , 'woocommerce' );
$this -> new_method_label = __ ( 'Use a new card' , 'woocommerce' );
$this -> has_fields = true ;
$this -> supports = array (
2014-08-15 09:56:19 +00:00
'subscriptions' ,
'products' ,
'subscription_cancellation' ,
'subscription_reactivation' ,
'subscription_suspension' ,
'subscription_amount_changes' ,
2015-07-22 01:00:00 +00:00
'subscription_payment_method_change' , // Subscriptions 1.n compatibility
'subscription_payment_method_change_customer' ,
2015-07-21 23:49:45 +00:00
'subscription_payment_method_change_admin' ,
2014-08-15 09:56:19 +00:00
'subscription_date_changes' ,
2015-07-22 01:00:55 +00:00
'multiple_subscriptions' ,
2016-03-01 17:09:29 +00:00
'default_credit_card_form' ,
2016-02-15 16:28:46 +00:00
'tokenization' ,
2014-09-02 14:11:21 +00:00
'refunds' ,
2016-08-27 02:08:49 +00:00
'pre-orders' ,
2014-08-15 09:56:19 +00:00
);
$this -> view_transaction_url = 'https://www.simplify.com/commerce/app#/payment/%s' ;
// Load the form fields
$this -> init_form_fields ();
// Load the settings.
$this -> init_settings ();
// Get setting values
2018-03-09 12:53:10 +00:00
$this -> title = $this -> get_option ( 'title' );
$this -> description = $this -> get_option ( 'description' );
$this -> enabled = $this -> get_option ( 'enabled' );
$this -> mode = $this -> get_option ( 'mode' , 'standard' );
$this -> modal_color = $this -> get_option ( 'modal_color' , '#a46497' );
$this -> sandbox = $this -> get_option ( 'sandbox' );
$this -> public_key = ( 'no' === $this -> sandbox ) ? $this -> get_option ( 'public_key' ) : $this -> get_option ( 'sandbox_public_key' );
$this -> private_key = ( 'no' === $this -> sandbox ) ? $this -> get_option ( 'private_key' ) : $this -> get_option ( 'sandbox_private_key' );
2014-08-15 09:56:19 +00:00
$this -> init_simplify_sdk ();
// Hooks
add_action ( 'wp_enqueue_scripts' , array ( $this , 'payment_scripts' ) );
add_action ( 'woocommerce_update_options_payment_gateways_' . $this -> id , array ( $this , 'process_admin_options' ) );
2014-12-09 19:11:55 +00:00
add_action ( 'woocommerce_receipt_' . $this -> id , array ( $this , 'receipt_page' ) );
add_action ( 'woocommerce_api_wc_gateway_simplify_commerce' , array ( $this , 'return_handler' ) );
2014-08-15 09:56:19 +00:00
}
/**
* Init Simplify SDK .
*/
protected function init_simplify_sdk () {
// Include lib
2018-03-09 12:53:10 +00:00
require_once dirname ( __FILE__ ) . '/includes/Simplify.php' ;
2014-08-15 09:56:19 +00:00
Simplify :: $publicKey = $this -> public_key ;
Simplify :: $privateKey = $this -> private_key ;
2014-08-20 15:46:58 +00:00
Simplify :: $userAgent = 'WooCommerce/' . WC () -> version ;
2014-08-15 09:56:19 +00:00
}
/**
2015-11-03 13:31:20 +00:00
* Admin Panel Options .
* - Options for bits like 'title' and availability on a country - by - country basis .
2014-08-15 09:56:19 +00:00
*/
2014-12-09 19:11:55 +00:00
public function admin_options () {
2014-08-15 09:56:19 +00:00
?>
2015-09-16 01:06:02 +00:00
< h3 >< ? php _e ( 'Simplify Commerce by MasterCard' , 'woocommerce' ); ?> </h3>
2014-08-15 09:56:19 +00:00
< ? php if ( empty ( $this -> public_key ) ) : ?>
< div class = " simplify-commerce-banner updated " >
< img src = " <?php echo WC()->plugin_url() . '/includes/gateways/simplify-commerce/assets/images/logo.png'; ?> " />
< p class = " main " >< strong >< ? php _e ( 'Getting started' , 'woocommerce' ); ?> </strong></p>
< p >< ? php _e ( 'Simplify Commerce is your merchant account and payment gateway all rolled into one. Choose Simplify Commerce as your WooCommerce payment gateway to get access to your money quickly with a powerful, secure payment engine backed by MasterCard.' , 'woocommerce' ); ?> </p>
2016-10-12 10:16:30 +00:00
< p >< a href = " https://www.simplify.com/commerce/partners/woocommerce#/signup " target = " _blank " class = " button button-primary " >< ? php _e ( 'Sign up for Simplify Commerce' , 'woocommerce' ); ?> </a> <a href="https://www.simplify.com/commerce/partners/woocommerce#/" target="_blank" class="button"><?php _e( 'Learn more', 'woocommerce' ); ?></a></p>
2014-08-15 09:56:19 +00:00
</ div >
< ? php else : ?>
< p >< ? php _e ( 'Simplify Commerce is your merchant account and payment gateway all rolled into one. Choose Simplify Commerce as your WooCommerce payment gateway to get access to your money quickly with a powerful, secure payment engine backed by MasterCard.' , 'woocommerce' ); ?> </p>
< ? php endif ; ?>
2015-12-28 18:07:05 +00:00
< ? php $this -> checks (); ?>
2014-08-15 09:56:19 +00:00
< table class = " form-table " >
< ? php $this -> generate_settings_html (); ?>
< script type = " text/javascript " >
2014-12-09 19:11:55 +00:00
jQuery ( '#woocommerce_simplify_commerce_sandbox' ) . on ( 'change' , function () {
2014-08-15 14:43:10 +00:00
var sandbox = jQuery ( '#woocommerce_simplify_commerce_sandbox_public_key, #woocommerce_simplify_commerce_sandbox_private_key' ) . closest ( 'tr' ),
production = jQuery ( '#woocommerce_simplify_commerce_public_key, #woocommerce_simplify_commerce_private_key' ) . closest ( 'tr' );
2014-08-15 14:40:19 +00:00
if ( jQuery ( this ) . is ( ':checked' ) ) {
sandbox . show ();
production . hide ();
2014-08-15 09:56:19 +00:00
} else {
2014-08-15 14:40:19 +00:00
sandbox . hide ();
production . show ();
2014-08-15 09:56:19 +00:00
}
}) . change ();
2014-12-09 19:11:55 +00:00
jQuery ( '#woocommerce_simplify_commerce_mode' ) . on ( 'change' , function () {
var color = jQuery ( '#woocommerce_simplify_commerce_modal_color' ) . closest ( 'tr' );
2015-12-28 18:07:05 +00:00
if ( 'standard' === jQuery ( this ) . val () ) {
2014-12-09 19:11:55 +00:00
color . hide ();
} else {
color . show ();
}
}) . change ();
2014-08-15 09:56:19 +00:00
</ script >
</ table >
< ? php
2014-12-09 19:11:55 +00:00
}
2014-08-15 09:56:19 +00:00
/**
2015-11-03 13:31:20 +00:00
* Check if SSL is enabled and notify the user .
2014-08-15 09:56:19 +00:00
*/
public function checks () {
2014-12-09 19:11:55 +00:00
if ( 'no' == $this -> enabled ) {
2014-08-15 09:56:19 +00:00
return ;
}
if ( version_compare ( phpversion (), '5.3' , '<' ) ) {
2016-09-02 03:15:49 +00:00
// PHP Version
2014-08-15 09:56:19 +00:00
echo '<div class="error"><p>' . sprintf ( __ ( 'Simplify Commerce Error: Simplify commerce requires PHP 5.3 and above. You are using version %s.' , 'woocommerce' ), phpversion () ) . '</p></div>' ;
2016-09-02 03:15:49 +00:00
} elseif ( ! $this -> public_key || ! $this -> private_key ) {
// Check required fields
2014-08-15 09:56:19 +00:00
echo '<div class="error"><p>' . __ ( 'Simplify Commerce Error: Please enter your public and private keys' , 'woocommerce' ) . '</p></div>' ;
2016-09-02 03:15:49 +00:00
} elseif ( 'standard' == $this -> mode && ! wc_checkout_is_https () ) {
// Show message when using standard mode and no SSL on the checkout page
2016-09-02 01:33:57 +00:00
echo '<div class="error"><p>' . sprintf ( __ ( 'Simplify Commerce is enabled, but the <a href="%s">force SSL option</a> is disabled; your checkout may not be secure! Please enable SSL and ensure your server has a valid SSL certificate - Simplify Commerce will only work in sandbox mode.' , 'woocommerce' ), admin_url ( 'admin.php?page=wc-settings&tab=checkout' ) ) . '</p></div>' ;
2016-09-02 03:15:49 +00:00
2014-08-15 09:56:19 +00:00
}
}
/**
2015-11-03 13:31:20 +00:00
* Check if this gateway is enabled .
2016-01-05 19:27:24 +00:00
*
* @ return bool
2014-08-15 09:56:19 +00:00
*/
public function is_available () {
2015-10-22 11:30:27 +00:00
if ( 'yes' !== $this -> enabled ) {
2014-08-15 09:56:19 +00:00
return false ;
}
2015-10-22 11:30:27 +00:00
if ( 'standard' === $this -> mode && 'yes' !== $this -> sandbox && ! wc_checkout_is_https () ) {
2014-08-15 09:56:19 +00:00
return false ;
}
if ( ! $this -> public_key || ! $this -> private_key ) {
return false ;
}
return true ;
}
/**
2015-11-03 13:31:20 +00:00
* Initialise Gateway Settings Form Fields .
2014-08-15 09:56:19 +00:00
*/
public function init_form_fields () {
$this -> form_fields = array (
2018-03-09 12:53:10 +00:00
'enabled' => array (
2014-08-15 09:56:19 +00:00
'title' => __ ( 'Enable/Disable' , 'woocommerce' ),
'label' => __ ( 'Enable Simplify Commerce' , 'woocommerce' ),
'type' => 'checkbox' ,
'description' => '' ,
2016-08-27 01:46:45 +00:00
'default' => 'no' ,
2014-08-15 09:56:19 +00:00
),
2018-03-09 12:53:10 +00:00
'title' => array (
2014-08-15 09:56:19 +00:00
'title' => __ ( 'Title' , 'woocommerce' ),
'type' => 'text' ,
'description' => __ ( 'This controls the title which the user sees during checkout.' , 'woocommerce' ),
2016-10-12 10:16:30 +00:00
'default' => __ ( 'Credit card' , 'woocommerce' ),
2016-08-27 01:46:45 +00:00
'desc_tip' => true ,
2014-08-15 09:56:19 +00:00
),
2018-03-09 12:53:10 +00:00
'description' => array (
2014-08-15 09:56:19 +00:00
'title' => __ ( 'Description' , 'woocommerce' ),
'type' => 'text' ,
'description' => __ ( 'This controls the description which the user sees during checkout.' , 'woocommerce' ),
2015-09-16 01:06:02 +00:00
'default' => 'Pay with your credit card via Simplify Commerce by MasterCard.' ,
2016-08-27 01:46:45 +00:00
'desc_tip' => true ,
2014-08-15 09:56:19 +00:00
),
2018-03-09 12:53:10 +00:00
'mode' => array (
2016-10-12 10:16:30 +00:00
'title' => __ ( 'Payment mode' , 'woocommerce' ),
2014-12-09 19:11:55 +00:00
'label' => __ ( 'Enable Hosted Payments' , 'woocommerce' ),
'type' => 'select' ,
2015-01-12 11:53:19 +00:00
'description' => sprintf ( __ ( 'Standard will display the credit card fields on your store (SSL required). %1$s Hosted Payments will display a Simplify Commerce modal dialog on your store (if SSL) or will redirect the customer to Simplify Commerce hosted page (if not SSL). %1$s Note: Hosted Payments need a new API Key pair with the hosted payments flag selected. %2$sFor more details check the Simplify Commerce docs%3$s.' , 'woocommerce' ), '<br />' , '<a href="https://simplify.desk.com/customer/portal/articles/1792405-how-do-i-enable-hosted-payments" target="_blank">' , '</a>' ),
2015-02-13 14:04:05 +00:00
'default' => 'standard' ,
2014-12-09 19:11:55 +00:00
'options' => array (
'standard' => __ ( 'Standard' , 'woocommerce' ),
2016-08-27 01:46:45 +00:00
'hosted' => __ ( 'Hosted Payments' , 'woocommerce' ),
),
2014-12-09 19:11:55 +00:00
),
2018-03-09 12:53:10 +00:00
'modal_color' => array (
2016-10-12 10:16:30 +00:00
'title' => __ ( 'Modal color' , 'woocommerce' ),
2014-12-09 19:11:55 +00:00
'type' => 'color' ,
'description' => __ ( 'Set the color of the buttons and titles on the modal dialog.' , 'woocommerce' ),
'default' => '#a46497' ,
2016-08-27 01:46:45 +00:00
'desc_tip' => true ,
2014-12-09 19:11:55 +00:00
),
2018-03-09 12:53:10 +00:00
'sandbox' => array (
2014-08-15 09:56:19 +00:00
'title' => __ ( 'Sandbox' , 'woocommerce' ),
2016-10-12 10:16:30 +00:00
'label' => __ ( 'Enable sandbox mode' , 'woocommerce' ),
2014-08-15 09:56:19 +00:00
'type' => 'checkbox' ,
'description' => __ ( 'Place the payment gateway in sandbox mode using sandbox API keys (real payments will not be taken).' , 'woocommerce' ),
2016-08-27 01:46:45 +00:00
'default' => 'yes' ,
2014-08-15 09:56:19 +00:00
),
2018-03-09 12:53:10 +00:00
'sandbox_public_key' => array (
2016-10-12 10:16:30 +00:00
'title' => __ ( 'Sandbox public key' , 'woocommerce' ),
2014-08-15 09:56:19 +00:00
'type' => 'text' ,
2014-08-21 16:03:16 +00:00
'description' => __ ( 'Get your API keys from your Simplify account: Settings > API Keys.' , 'woocommerce' ),
2014-08-15 09:56:19 +00:00
'default' => '' ,
2016-08-27 01:46:45 +00:00
'desc_tip' => true ,
2014-08-15 09:56:19 +00:00
),
2014-08-15 14:43:10 +00:00
'sandbox_private_key' => array (
2016-10-12 10:16:30 +00:00
'title' => __ ( 'Sandbox private key' , 'woocommerce' ),
2014-08-15 09:56:19 +00:00
'type' => 'text' ,
2014-08-21 16:03:16 +00:00
'description' => __ ( 'Get your API keys from your Simplify account: Settings > API Keys.' , 'woocommerce' ),
2014-08-15 09:56:19 +00:00
'default' => '' ,
2016-08-27 01:46:45 +00:00
'desc_tip' => true ,
2014-08-15 09:56:19 +00:00
),
2018-03-09 12:53:10 +00:00
'public_key' => array (
2016-10-12 10:16:30 +00:00
'title' => __ ( 'Public key' , 'woocommerce' ),
2014-08-15 09:56:19 +00:00
'type' => 'text' ,
2014-08-21 16:03:16 +00:00
'description' => __ ( 'Get your API keys from your Simplify account: Settings > API Keys.' , 'woocommerce' ),
2014-08-15 09:56:19 +00:00
'default' => '' ,
2016-08-27 01:46:45 +00:00
'desc_tip' => true ,
2014-08-15 09:56:19 +00:00
),
2018-03-09 12:53:10 +00:00
'private_key' => array (
2016-10-12 10:16:30 +00:00
'title' => __ ( 'Private key' , 'woocommerce' ),
2014-08-15 09:56:19 +00:00
'type' => 'text' ,
2014-08-21 16:03:16 +00:00
'description' => __ ( 'Get your API keys from your Simplify account: Settings > API Keys.' , 'woocommerce' ),
2014-08-15 09:56:19 +00:00
'default' => '' ,
2016-08-27 01:46:45 +00:00
'desc_tip' => true ,
2014-08-15 09:56:19 +00:00
),
);
}
/**
2015-11-03 13:31:20 +00:00
* Payment form on checkout page .
2014-08-15 09:56:19 +00:00
*/
public function payment_fields () {
2014-08-15 10:50:50 +00:00
$description = $this -> get_description ();
2014-08-15 09:56:19 +00:00
if ( 'yes' == $this -> sandbox ) {
2014-08-15 10:50:50 +00:00
$description .= ' ' . sprintf ( __ ( 'TEST MODE ENABLED. Use a test card: %s' , 'woocommerce' ), '<a href="https://www.simplify.com/commerce/docs/tutorial/index#testing">https://www.simplify.com/commerce/docs/tutorial/index#testing</a>' );
}
if ( $description ) {
echo wpautop ( wptexturize ( trim ( $description ) ) );
2014-08-15 09:56:19 +00:00
}
2014-12-09 19:11:55 +00:00
if ( 'standard' == $this -> mode ) {
2016-03-01 17:09:29 +00:00
parent :: payment_fields ();
2014-12-09 19:11:55 +00:00
}
2014-08-15 09:56:19 +00:00
}
/**
2015-11-03 13:31:20 +00:00
* Outputs scripts used for simplify payment .
2014-08-15 09:56:19 +00:00
*/
public function payment_scripts () {
2016-02-17 14:49:47 +00:00
$load_scripts = false ;
if ( is_checkout () ) {
$load_scripts = true ;
}
if ( $this -> is_available () ) {
$load_scripts = true ;
}
if ( false === $load_scripts ) {
2014-08-15 09:56:19 +00:00
return ;
}
2014-08-15 10:50:50 +00:00
wp_enqueue_script ( 'simplify-commerce' , 'https://www.simplify.com/commerce/v1/simplify.js' , array ( 'jquery' ), WC_VERSION , true );
2016-05-26 14:46:33 +00:00
wp_enqueue_script ( 'wc-simplify-commerce' , WC () -> plugin_url () . '/includes/gateways/simplify-commerce/assets/js/simplify-commerce.js' , array ( 'simplify-commerce' , 'wc-credit-card-form' ), WC_VERSION , true );
2018-03-09 12:53:10 +00:00
wp_localize_script (
'wc-simplify-commerce' , 'Simplify_commerce_params' , array (
'key' => $this -> public_key ,
'card.number' => __ ( 'Card number' , 'woocommerce' ),
'card.expMonth' => __ ( 'Expiry month' , 'woocommerce' ),
'card.expYear' => __ ( 'Expiry year' , 'woocommerce' ),
'is_invalid' => __ ( 'is invalid' , 'woocommerce' ),
'mode' => $this -> mode ,
'is_ssl' => is_ssl (),
)
);
2014-08-15 09:56:19 +00:00
}
2016-02-17 14:49:47 +00:00
public function add_payment_method () {
2016-09-02 01:12:22 +00:00
if ( empty ( $_POST [ 'simplify_token' ] ) ) {
2016-02-17 14:49:47 +00:00
wc_add_notice ( __ ( 'There was a problem adding this card.' , 'woocommerce' ), 'error' );
return ;
}
$cart_token = wc_clean ( $_POST [ 'simplify_token' ] );
$customer_token = $this -> get_users_token ();
$current_user = wp_get_current_user ();
$customer_info = array (
'email' => $current_user -> user_email ,
'name' => $current_user -> display_name ,
);
$token = $this -> save_token ( $customer_token , $cart_token , $customer_info );
if ( is_null ( $token ) ) {
wc_add_notice ( __ ( 'There was a problem adding this card.' , 'woocommerce' ), 'error' );
return ;
}
return array (
'result' => 'success' ,
'redirect' => wc_get_endpoint_url ( 'payment-methods' ),
);
}
/**
2017-03-28 17:58:51 +00:00
* Actually saves a customer token to the database .
2016-02-17 14:49:47 +00:00
*
2017-05-12 08:48:46 +00:00
* @ param WC_Payment_Token $customer_token Payment Token
2018-03-09 12:53:10 +00:00
* @ param string $cart_token CC Token
* @ param array $customer_info 'email' , 'name'
2017-05-12 08:48:46 +00:00
*
* @ return null | WC_Payment_Token | WC_Payment_Token_CC
2016-02-17 14:49:47 +00:00
*/
public function save_token ( $customer_token , $cart_token , $customer_info ) {
if ( ! is_null ( $customer_token ) ) {
$customer = Simplify_Customer :: findCustomer ( $customer_token -> get_token () );
2018-03-09 12:53:10 +00:00
$updates = array ( 'token' => $cart_token );
2016-02-17 14:49:47 +00:00
$customer -> setAll ( $updates );
$customer -> updateCustomer ();
$customer = Simplify_Customer :: findCustomer ( $customer_token -> get_token () ); // get updated customer with new set card
2018-03-09 12:53:10 +00:00
$token = $customer_token ;
2016-02-17 14:49:47 +00:00
} else {
2018-03-09 12:53:10 +00:00
$customer = Simplify_Customer :: createCustomer (
array (
'token' => $cart_token ,
'email' => $customer_info [ 'email' ],
'name' => $customer_info [ 'name' ],
)
);
$token = new WC_Payment_Token_CC ();
2016-02-17 14:49:47 +00:00
$token -> set_token ( $customer -> id );
}
// If we were able to create an save our card, save the data on our side too
if ( is_object ( $customer ) && '' != $customer -> id ) {
$customer_properties = $customer -> getProperties ();
2018-03-09 12:53:10 +00:00
$card = $customer_properties [ 'card' ];
2016-02-17 14:49:47 +00:00
$token -> set_gateway_id ( $this -> id );
$token -> set_card_type ( strtolower ( $card -> type ) );
$token -> set_last4 ( $card -> last4 );
$expiry_month = ( 1 === strlen ( $card -> expMonth ) ? '0' . $card -> expMonth : $card -> expMonth );
$token -> set_expiry_month ( $expiry_month );
$token -> set_expiry_year ( '20' . $card -> expYear );
if ( is_user_logged_in () ) {
$token -> set_user_id ( get_current_user_id () );
}
$token -> save ();
return $token ;
}
return null ;
}
2016-02-16 18:07:27 +00:00
/**
* Process customer : updating or creating a new customer / saved CC
*
2018-03-09 12:53:10 +00:00
* @ param WC_Order $order Order object
* @ param WC_Payment_Token $customer_token Payment Token
* @ param string $cart_token CC Token
2016-02-16 18:07:27 +00:00
*/
protected function process_customer ( $order , $customer_token = null , $cart_token = '' ) {
// Are we saving a new payment method?
if ( is_user_logged_in () && isset ( $_POST [ 'wc-simplify_commerce-new-payment-method' ] ) && true === ( bool ) $_POST [ 'wc-simplify_commerce-new-payment-method' ] ) {
2016-02-17 14:49:47 +00:00
$customer_info = array (
2016-08-05 14:57:40 +00:00
'email' => $order -> get_billing_email (),
2016-02-17 14:49:47 +00:00
'name' => trim ( $order -> get_formatted_billing_full_name () ),
);
2018-03-09 12:53:10 +00:00
$token = $this -> save_token ( $customer_token , $cart_token , $customer_info );
2016-02-17 14:49:47 +00:00
if ( ! is_null ( $token ) ) {
2016-02-16 18:07:27 +00:00
$order -> add_payment_token ( $token );
}
}
}
2014-08-15 09:56:19 +00:00
/**
2015-11-03 13:31:20 +00:00
* Process standard payments .
2014-12-09 19:11:55 +00:00
*
2015-01-12 13:43:27 +00:00
* @ param WC_Order $order
2018-03-09 12:53:10 +00:00
* @ param string $cart_token
* @ param string $customer_token
2017-05-15 11:50:52 +00:00
*
* @ return array
2015-03-27 15:15:40 +00:00
* @ uses Simplify_ApiException
* @ uses Simplify_BadRequestException
2014-08-15 09:56:19 +00:00
*/
2016-02-16 18:07:27 +00:00
protected function process_standard_payments ( $order , $cart_token = '' , $customer_token = '' ) {
2014-08-15 09:56:19 +00:00
try {
2016-02-16 18:07:27 +00:00
if ( empty ( $cart_token ) && empty ( $customer_token ) ) {
2014-08-15 09:56:19 +00:00
$error_msg = __ ( 'Please make sure your card details have been entered correctly and that your browser supports JavaScript.' , 'woocommerce' );
if ( 'yes' == $this -> sandbox ) {
2017-04-26 12:51:53 +00:00
$error_msg .= ' ' . __ ( 'Developers: Please make sure that you are including jQuery and there are no JavaScript errors on the page.' , 'woocommerce' );
2014-08-15 09:56:19 +00:00
}
throw new Simplify_ApiException ( $error_msg );
}
2016-02-16 18:07:27 +00:00
// We need to figure out if we want to charge the card token (new unsaved token, no customer, etc)
// or the customer token (just saved method, previously saved method)
$pass_tokens = array ();
2014-08-15 09:56:19 +00:00
2016-09-02 01:12:22 +00:00
if ( ! empty ( $cart_token ) ) {
2016-02-16 18:07:27 +00:00
$pass_tokens [ 'token' ] = $cart_token ;
}
2016-09-02 01:12:22 +00:00
if ( ! empty ( $customer_token ) ) {
2016-02-16 18:07:27 +00:00
$pass_tokens [ 'customer' ] = $customer_token ;
// Use the customer token only, since we already saved the (one time use) card token to the customer
if ( isset ( $_POST [ 'wc-simplify_commerce-new-payment-method' ] ) && true === ( bool ) $_POST [ 'wc-simplify_commerce-new-payment-method' ] ) {
unset ( $pass_tokens [ 'token' ] );
}
}
// Did we create an account and save a payment method? We might need to use the customer token instead of the card token
2016-09-02 01:12:22 +00:00
if ( isset ( $_POST [ 'createaccount' ] ) && true === ( bool ) $_POST [ 'createaccount' ] && empty ( $customer_token ) ) {
2016-02-16 18:07:27 +00:00
$user_token = $this -> get_users_token ();
if ( ! is_null ( $user_token ) ) {
$pass_tokens [ 'customer' ] = $user_token -> get_token ();
unset ( $pass_tokens [ 'token' ] );
}
}
$payment_response = $this -> do_payment ( $order , $order -> get_total (), $pass_tokens );
if ( is_wp_error ( $payment_response ) ) {
2016-06-16 13:34:58 +00:00
throw new Simplify_ApiException ( $payment_response -> get_error_message () );
2016-02-16 18:07:27 +00:00
} else {
// Remove cart
WC () -> cart -> empty_cart ();
2014-08-15 09:56:19 +00:00
// Return thank you page redirect
return array (
'result' => 'success' ,
2016-08-27 01:46:45 +00:00
'redirect' => $this -> get_return_url ( $order ),
2014-08-15 09:56:19 +00:00
);
}
} catch ( Simplify_ApiException $e ) {
if ( $e instanceof Simplify_BadRequestException && $e -> hasFieldErrors () && $e -> getFieldErrors () ) {
foreach ( $e -> getFieldErrors () as $error ) {
wc_add_notice ( $error -> getFieldName () . ': "' . $error -> getMessage () . '" (' . $error -> getErrorCode () . ')' , 'error' );
}
} else {
wc_add_notice ( $e -> getMessage (), 'error' );
}
return array (
'result' => 'fail' ,
2016-08-27 01:46:45 +00:00
'redirect' => '' ,
2014-08-15 09:56:19 +00:00
);
}
}
2017-05-15 11:50:52 +00:00
/**
2016-02-16 18:07:27 +00:00
* do payment function .
*
* @ param WC_order $order
2018-03-09 12:53:10 +00:00
* @ param int $amount ( default : 0 )
* @ param array $token
2017-05-15 11:50:52 +00:00
*
2016-02-16 18:07:27 +00:00
* @ return bool | WP_Error
2017-05-15 11:50:52 +00:00
* @ uses Simplify_BadRequestException
2016-02-16 18:07:27 +00:00
*/
public function do_payment ( $order , $amount = 0 , $token = array () ) {
if ( $amount * 100 < 50 ) {
return new WP_Error ( 'simplify_error' , __ ( 'Sorry, the minimum allowed order total is 0.50 to use this payment method.' , 'woocommerce' ) );
}
try {
// Charge the customer
$data = array (
2018-03-09 12:53:10 +00:00
'amount' => $amount * 100 , // In cents.
'description' => sprintf ( __ ( '%1$s - Order #%2$s' , 'woocommerce' ), esc_html ( get_bloginfo ( 'name' , 'display' ) ), $order -> get_order_number () ),
'currency' => strtoupper ( get_woocommerce_currency () ),
'reference' => $order -> get_id (),
2016-02-16 18:07:27 +00:00
);
2018-03-09 12:53:10 +00:00
$data = array_merge ( $data , $token );
2016-02-16 18:07:27 +00:00
$payment = Simplify_Payment :: createPayment ( $data );
} catch ( Exception $e ) {
$error_message = $e -> getMessage ();
if ( $e instanceof Simplify_BadRequestException && $e -> hasFieldErrors () && $e -> getFieldErrors () ) {
$error_message = '' ;
foreach ( $e -> getFieldErrors () as $error ) {
$error_message .= ' ' . $error -> getFieldName () . ': "' . $error -> getMessage () . '" (' . $error -> getErrorCode () . ')' ;
}
}
2016-10-11 01:39:13 +00:00
$order -> add_order_note ( sprintf ( __ ( 'Simplify payment error: %s.' , 'woocommerce' ), $error_message ) );
2016-02-16 18:07:27 +00:00
return new WP_Error ( 'simplify_payment_declined' , $e -> getMessage (), array ( 'status' => $e -> getCode () ) );
}
if ( 'APPROVED' == $payment -> paymentStatus ) {
// Payment complete
$order -> payment_complete ( $payment -> id );
// Add order note
2016-09-01 20:50:14 +00:00
$order -> add_order_note ( sprintf ( __ ( 'Simplify payment approved (ID: %1$s, Auth Code: %2$s)' , 'woocommerce' ), $payment -> id , $payment -> authCode ) );
2016-02-16 18:07:27 +00:00
return true ;
} else {
$order -> add_order_note ( __ ( 'Simplify payment declined' , 'woocommerce' ) );
return new WP_Error ( 'simplify_payment_declined' , __ ( 'Payment was declined - please try another card.' , 'woocommerce' ) );
}
}
2014-12-09 19:11:55 +00:00
/**
2015-11-03 13:31:20 +00:00
* Process standard payments .
2014-12-09 19:11:55 +00:00
*
2015-02-03 14:32:10 +00:00
* @ param WC_Order $order
2014-12-09 19:11:55 +00:00
* @ return array
*/
protected function process_hosted_payments ( $order ) {
return array (
'result' => 'success' ,
2016-08-27 01:46:45 +00:00
'redirect' => $order -> get_checkout_payment_url ( true ),
2014-12-09 19:11:55 +00:00
);
}
2016-02-16 18:07:27 +00:00
protected function get_users_token () {
2018-03-09 12:53:10 +00:00
$customer_token = null ;
2016-02-16 18:07:27 +00:00
if ( is_user_logged_in () ) {
2016-09-02 02:00:46 +00:00
$tokens = WC_Payment_Tokens :: get_customer_tokens ( get_current_user_id () );
2016-02-16 18:07:27 +00:00
foreach ( $tokens as $token ) {
if ( $token -> get_gateway_id () === $this -> id ) {
$customer_token = $token ;
break ;
}
}
}
return $customer_token ;
}
2014-12-09 19:11:55 +00:00
/**
2015-11-03 13:31:20 +00:00
* Process the payment .
2014-12-09 19:11:55 +00:00
*
2016-01-05 19:27:24 +00:00
* @ param int $order_id
2017-05-12 08:48:46 +00:00
*
* @ return array | void
2014-12-09 19:11:55 +00:00
*/
public function process_payment ( $order_id ) {
2016-02-16 18:07:27 +00:00
$order = wc_get_order ( $order_id );
2014-12-09 19:11:55 +00:00
2016-02-16 18:07:27 +00:00
// Payment/CC form is hosted on Simplify
if ( 'hosted' === $this -> mode ) {
2014-12-09 19:11:55 +00:00
return $this -> process_hosted_payments ( $order );
2016-02-16 18:07:27 +00:00
}
2016-02-17 14:49:47 +00:00
// New CC info was entered
2016-02-16 18:07:27 +00:00
if ( isset ( $_POST [ 'simplify_token' ] ) ) {
$cart_token = wc_clean ( $_POST [ 'simplify_token' ] );
$customer_token = $this -> get_users_token ();
$customer_token_value = ( ! is_null ( $customer_token ) ? $customer_token -> get_token () : '' );
$this -> process_customer ( $order , $customer_token , $cart_token );
return $this -> process_standard_payments ( $order , $cart_token , $customer_token_value );
}
2016-02-17 14:49:47 +00:00
// Possibly Create (or update) customer/save payment token, use an existing token, and then process the payment
2016-02-16 18:07:27 +00:00
if ( isset ( $_POST [ 'wc-simplify_commerce-payment-token' ] ) && 'new' !== $_POST [ 'wc-simplify_commerce-payment-token' ] ) {
$token_id = wc_clean ( $_POST [ 'wc-simplify_commerce-payment-token' ] );
$token = WC_Payment_Tokens :: get ( $token_id );
if ( $token -> get_user_id () !== get_current_user_id () ) {
wc_add_notice ( __ ( 'Please make sure your card details have been entered correctly and that your browser supports JavaScript.' , 'woocommerce' ), 'error' );
return ;
}
$this -> process_customer ( $order , $token );
return $this -> process_standard_payments ( $order , '' , $token -> get_token () );
2014-12-09 19:11:55 +00:00
}
}
/**
* Hosted payment args .
*
* @ param WC_Order $order
*
* @ return array
*/
protected function get_hosted_payments_args ( $order ) {
2018-03-09 12:53:10 +00:00
$args = apply_filters (
'woocommerce_simplify_commerce_hosted_args' , array (
'sc-key' => $this -> public_key ,
'amount' => $order -> get_total () * 100 ,
'reference' => $order -> get_id (),
'name' => esc_html ( get_bloginfo ( 'name' , 'display' ) ),
'description' => sprintf ( __ ( 'Order #%s' , 'woocommerce' ), $order -> get_order_number () ),
'receipt' => 'false' ,
'color' => $this -> modal_color ,
'redirect-url' => WC () -> api_request_url ( 'WC_Gateway_Simplify_Commerce' ),
'address' => $order -> get_billing_address_1 () . ' ' . $order -> get_billing_address_2 (),
'address-city' => $order -> get_billing_city (),
'address-state' => $order -> get_billing_state (),
'address-zip' => $order -> get_billing_postcode (),
'address-country' => $order -> get_billing_country (),
'operation' => 'create.token' ,
), $order -> get_id ()
);
2014-12-09 19:11:55 +00:00
return $args ;
}
/**
2015-11-03 13:31:20 +00:00
* Receipt page .
2014-12-09 19:11:55 +00:00
*
* @ param int $order_id
*/
public function receipt_page ( $order_id ) {
$order = wc_get_order ( $order_id );
echo '<p>' . __ ( 'Thank you for your order, please click the button below to pay with credit card using Simplify Commerce by MasterCard.' , 'woocommerce' ) . '</p>' ;
$args = $this -> get_hosted_payments_args ( $order );
$button_args = array ();
foreach ( $args as $key => $value ) {
2014-12-10 12:07:45 +00:00
$button_args [] = 'data-' . esc_attr ( $key ) . '="' . esc_attr ( $value ) . '"' ;
2014-12-09 19:11:55 +00:00
}
echo ' < script type = " text/javascript " src = " https://www.simplify.com/commerce/simplify.pay.js " ></ script >
2016-10-12 10:16:30 +00:00
< button class = " button alt " id = " simplify-payment-button " ' . implode( ' ', $button_args ) . ' > ' . __( ' Pay now ', ' woocommerce ' ) . ' </ button > < a class = " button cancel " href = " ' . esc_url( $order->get_cancel_order_url () ) . ' " > ' . __( ' Cancel order & amp ; restore cart ', ' woocommerce ' ) . ' </ a >
2014-12-09 19:11:55 +00:00
' ;
}
2014-12-10 12:07:45 +00:00
/**
2015-11-03 13:31:20 +00:00
* Return handler for Hosted Payments .
2014-12-10 12:07:45 +00:00
*/
2014-12-09 19:11:55 +00:00
public function return_handler () {
2014-12-10 12:07:45 +00:00
@ ob_clean ();
header ( 'HTTP/1.1 200 OK' );
2014-12-09 19:11:55 +00:00
2014-12-10 12:07:45 +00:00
if ( isset ( $_REQUEST [ 'reference' ] ) && isset ( $_REQUEST [ 'paymentId' ] ) && isset ( $_REQUEST [ 'signature' ] ) ) {
$signature = strtoupper ( md5 ( $_REQUEST [ 'amount' ] . $_REQUEST [ 'reference' ] . $_REQUEST [ 'paymentId' ] . $_REQUEST [ 'paymentDate' ] . $_REQUEST [ 'paymentStatus' ] . $this -> private_key ) );
2014-12-10 17:04:57 +00:00
$order_id = absint ( $_REQUEST [ 'reference' ] );
2014-12-10 12:07:45 +00:00
$order = wc_get_order ( $order_id );
2017-06-13 12:54:02 +00:00
if ( hash_equals ( $signature , $_REQUEST [ 'signature' ] ) ) {
2014-12-10 17:04:57 +00:00
$order_complete = $this -> process_order_status ( $order , $_REQUEST [ 'paymentId' ], $_REQUEST [ 'paymentStatus' ], $_REQUEST [ 'paymentDate' ] );
2014-12-10 12:07:45 +00:00
if ( ! $order_complete ) {
$order -> update_status ( 'failed' , __ ( 'Payment was declined by Simplify Commerce.' , 'woocommerce' ) );
}
wp_redirect ( $this -> get_return_url ( $order ) );
exit ();
}
}
2014-12-09 19:11:55 +00:00
2015-02-15 19:13:22 +00:00
wp_redirect ( wc_get_page_permalink ( 'cart' ) );
2014-12-09 19:11:55 +00:00
exit ();
}
2014-12-10 12:07:45 +00:00
/**
2015-11-03 13:31:20 +00:00
* Process the order status .
2014-12-10 12:07:45 +00:00
*
2014-12-10 17:04:57 +00:00
* @ param WC_Order $order
* @ param string $payment_id
* @ param string $status
* @ param string $auth_code
2014-12-10 12:07:45 +00:00
*
* @ return bool
*/
2014-12-10 17:04:57 +00:00
public function process_order_status ( $order , $payment_id , $status , $auth_code ) {
2014-12-10 12:07:45 +00:00
if ( 'APPROVED' == $status ) {
// Payment complete
$order -> payment_complete ( $payment_id );
// Add order note
2016-09-01 20:50:14 +00:00
$order -> add_order_note ( sprintf ( __ ( 'Simplify payment approved (ID: %1$s, Auth Code: %2$s)' , 'woocommerce' ), $payment_id , $auth_code ) );
2014-12-10 12:07:45 +00:00
// Remove cart
WC () -> cart -> empty_cart ();
return true ;
}
return false ;
}
2014-08-15 09:56:19 +00:00
/**
2015-11-03 13:31:20 +00:00
* Process refunds .
* WooCommerce 2.2 or later .
2014-08-15 09:56:19 +00:00
*
2018-03-09 12:53:10 +00:00
* @ param int $order_id
* @ param float $amount
2014-08-15 09:56:19 +00:00
* @ param string $reason
2015-03-27 15:15:40 +00:00
* @ uses Simplify_ApiException
* @ uses Simplify_BadRequestException
2014-08-15 09:56:19 +00:00
* @ return bool | WP_Error
*/
public function process_refund ( $order_id , $amount = null , $reason = '' ) {
try {
$payment_id = get_post_meta ( $order_id , '_transaction_id' , true );
2018-03-09 12:53:10 +00:00
$refund = Simplify_Refund :: createRefund (
array (
'amount' => $amount * 100 , // In cents.
'payment' => $payment_id ,
'reason' => $reason ,
'reference' => $order_id ,
)
);
2014-08-15 09:56:19 +00:00
if ( 'APPROVED' == $refund -> paymentStatus ) {
return true ;
} else {
throw new Simplify_ApiException ( __ ( 'Refund was declined.' , 'woocommerce' ) );
}
} catch ( Simplify_ApiException $e ) {
if ( $e instanceof Simplify_BadRequestException && $e -> hasFieldErrors () && $e -> getFieldErrors () ) {
foreach ( $e -> getFieldErrors () as $error ) {
return new WP_Error ( 'simplify_refund_error' , $error -> getFieldName () . ': "' . $error -> getMessage () . '" (' . $error -> getErrorCode () . ')' );
}
} else {
return new WP_Error ( 'simplify_refund_error' , $e -> getMessage () );
}
}
return false ;
}
2014-08-15 10:50:50 +00:00
/**
2016-01-05 19:27:24 +00:00
* Get gateway icon .
2014-08-15 10:50:50 +00:00
*
* @ access public
* @ return string
*/
public function get_icon () {
2016-03-07 12:15:39 +00:00
$icon = '<img src="' . WC_HTTPS :: force_https_url ( WC () -> plugin_url () . '/assets/images/icons/credit-cards/visa.svg' ) . '" alt="Visa" width="32" />' ;
$icon .= '<img src="' . WC_HTTPS :: force_https_url ( WC () -> plugin_url () . '/assets/images/icons/credit-cards/mastercard.svg' ) . '" alt="MasterCard" width="32" />' ;
$icon .= '<img src="' . WC_HTTPS :: force_https_url ( WC () -> plugin_url () . '/assets/images/icons/credit-cards/discover.svg' ) . '" alt="Discover" width="32" />' ;
$icon .= '<img src="' . WC_HTTPS :: force_https_url ( WC () -> plugin_url () . '/assets/images/icons/credit-cards/amex.svg' ) . '" alt="Amex" width="32" />' ;
$icon .= '<img src="' . WC_HTTPS :: force_https_url ( WC () -> plugin_url () . '/assets/images/icons/credit-cards/jcb.svg' ) . '" alt="JCB" width="32" />' ;
2014-08-15 14:20:18 +00:00
2014-08-15 10:50:50 +00:00
return apply_filters ( 'woocommerce_gateway_icon' , $icon , $this -> id );
2014-08-15 14:20:18 +00:00
}
2014-08-15 09:56:19 +00:00
}