370 lines
12 KiB
PHP
370 lines
12 KiB
PHP
<?php
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
/**
|
|
* Mijireh Checkout Gateway
|
|
*
|
|
* Provides WooCommerce with Mijireh Checkout integration.
|
|
*
|
|
* @deprecated 2.2
|
|
*
|
|
* @class WC_Gateway_Mijireh
|
|
* @extends WC_Payment_Gateway
|
|
* @version 2.0.0
|
|
* @package WooCommerce/Classes/Payment
|
|
* @author Mijireh
|
|
*/
|
|
class WC_Gateway_Mijireh extends WC_Payment_Gateway {
|
|
|
|
/** @var string Access key for mijireh */
|
|
var $access_key;
|
|
|
|
/**
|
|
* Constructor for the gateway.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function __construct() {
|
|
$this->id = 'mijireh_checkout';
|
|
$this->method_title = __( 'Mijireh Checkout', 'woocommerce' );
|
|
$this->icon = apply_filters( 'woocommerce_mijireh_checkout_icon', WC()->plugin_url() . '/includes/gateways/mijireh/assets/images/credit_cards.png' );
|
|
$this->has_fields = false;
|
|
|
|
// Load the settings.
|
|
$this->init_form_fields();
|
|
$this->init_settings();
|
|
|
|
// Define user set variables
|
|
$this->access_key = $this->get_option( 'access_key' );
|
|
$this->title = $this->get_option( 'title' );
|
|
$this->description = $this->get_option( 'description' );
|
|
|
|
if ( $this->enabled && is_admin() ) {
|
|
$this->install_slurp_page();
|
|
}
|
|
|
|
// Save options
|
|
add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
|
|
|
|
// Payment listener/API hook
|
|
add_action( 'woocommerce_api_wc_gateway_mijireh', array( $this, 'mijireh_notification' ) );
|
|
}
|
|
|
|
/**
|
|
* install_slurp_page function.
|
|
*
|
|
* @access public
|
|
*/
|
|
public function install_slurp_page() {
|
|
$slurp_page_installed = get_option( 'slurp_page_installed', false );
|
|
if ( $slurp_page_installed != 1 ) {
|
|
if( ! get_page_by_path( 'mijireh-secure-checkout' ) ) {
|
|
$page = array(
|
|
'post_title' => 'Mijireh Secure Checkout',
|
|
'post_name' => 'mijireh-secure-checkout',
|
|
'post_parent' => 0,
|
|
'post_status' => 'private',
|
|
'post_type' => 'page',
|
|
'comment_status' => 'closed',
|
|
'ping_status' => 'closed',
|
|
'post_content' => "<h1>Checkout</h1>\n\n{{mj-checkout-form}}",
|
|
);
|
|
wp_insert_post( $page );
|
|
}
|
|
update_option( 'slurp_page_installed', 1 );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* mijireh_notification function.
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function mijireh_notification() {
|
|
if ( isset( $_GET['order_number'] ) ) {
|
|
$this->init_mijireh();
|
|
|
|
try {
|
|
$mj_order = new Mijireh_Order( esc_attr( $_GET['order_number'] ) );
|
|
$wc_order_id = $mj_order->get_meta_value( 'wc_order_id' );
|
|
$wc_order = wc_get_order( absint( $wc_order_id ) );
|
|
|
|
// Mark order complete
|
|
$wc_order->payment_complete();
|
|
|
|
// Empty cart and clear session
|
|
WC()->cart->empty_cart();
|
|
|
|
wp_redirect( $this->get_return_url( $wc_order ) );
|
|
exit;
|
|
|
|
} catch ( Mijireh_Exception $e ) {
|
|
wc_add_notice( __( 'Mijireh error:', 'woocommerce' ) . $e->getMessage(), 'error' );
|
|
}
|
|
}
|
|
elseif ( isset( $_POST['page_id'] ) ) {
|
|
if ( isset( $_POST['access_key'] ) && $_POST['access_key'] == $this->access_key ) {
|
|
wp_update_post( array( 'ID' => $_POST['page_id'], 'post_status' => 'private' ) );
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Initialise Gateway Settings Form Fields
|
|
*
|
|
* @access public
|
|
* @return void
|
|
*/
|
|
public function init_form_fields() {
|
|
$this->form_fields = array(
|
|
'enabled' => array(
|
|
'title' => __( 'Enable/Disable', 'woocommerce' ),
|
|
'type' => 'checkbox',
|
|
'label' => __( 'Enable Mijireh Checkout', 'woocommerce' ),
|
|
'default' => 'no'
|
|
),
|
|
'access_key' => array(
|
|
'title' => __( 'Access Key', 'woocommerce' ),
|
|
'type' => 'text',
|
|
'description' => __( 'The Mijireh access key for your store.', 'woocommerce' ),
|
|
'default' => '',
|
|
'desc_tip' => true,
|
|
),
|
|
'title' => array(
|
|
'title' => __( 'Title', 'woocommerce' ),
|
|
'type' => 'text',
|
|
'description' => __( 'This controls the title which the user sees during checkout.', 'woocommerce' ),
|
|
'default' => __( 'Credit Card', 'woocommerce' ),
|
|
'desc_tip' => true,
|
|
),
|
|
'description' => array(
|
|
'title' => __( 'Description', 'woocommerce' ),
|
|
'type' => 'text',
|
|
'default' => __( 'Pay securely with your credit card.', 'woocommerce' ),
|
|
'description' => __( 'This controls the description which the user sees during checkout.', 'woocommerce' ),
|
|
'desc_tip' => true,
|
|
),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Process the payment and return the result
|
|
*
|
|
* @access public
|
|
* @param int $order_id
|
|
* @return array
|
|
*/
|
|
public function process_payment( $order_id ) {
|
|
|
|
$this->init_mijireh();
|
|
|
|
$mj_order = new Mijireh_Order();
|
|
$wc_order = wc_get_order( $order_id );
|
|
|
|
// Avoid rounding issues altogether by sending the order as one lump
|
|
if ( get_option( 'woocommerce_prices_include_tax' ) == 'yes' ) {
|
|
|
|
// Don't pass items - Pass 1 item for the order items overall
|
|
$item_names = array();
|
|
|
|
if ( sizeof( $wc_order->get_items() ) > 0 ) {
|
|
foreach ( $wc_order->get_items() as $item ) {
|
|
if ( $item['qty'] ) {
|
|
$item_names[] = $item['name'] . ' x ' . $item['qty'];
|
|
}
|
|
}
|
|
}
|
|
|
|
$mj_order->add_item( sprintf( __( 'Order %s' , 'woocommerce'), $wc_order->get_order_number() ) . " - " . implode( ', ', $item_names ), number_format( $wc_order->get_total() - round( $wc_order->get_total_shipping() + $wc_order->get_shipping_tax(), 2 ) + $wc_order->get_order_discount(), 2, '.', '' ), 1 );
|
|
|
|
if ( ( $wc_order->get_total_shipping() + $wc_order->get_shipping_tax() ) > 0 ) {
|
|
$mj_order->shipping = number_format( $wc_order->get_total_shipping() + $wc_order->get_shipping_tax(), 2, '.', '' );
|
|
}
|
|
$mj_order->show_tax = false;
|
|
|
|
// No issues when prices exclude tax
|
|
} else {
|
|
// add items to order
|
|
$items = $wc_order->get_items();
|
|
|
|
foreach( $items as $item ) {
|
|
$product = $wc_order->get_product_from_item( $item );
|
|
$mj_order->add_item( $item['name'], $wc_order->get_item_subtotal( $item, false, true ), $item['qty'], $product->get_sku() );
|
|
}
|
|
|
|
// Handle fees
|
|
$items = $wc_order->get_fees();
|
|
|
|
foreach( $items as $item ) {
|
|
$mj_order->add_item( $item['name'], number_format( $item['line_total'], 2, '.', ',' ), 1, '' );
|
|
}
|
|
|
|
$mj_order->shipping = round( $wc_order->get_total_shipping(), 2 );
|
|
$mj_order->tax = $wc_order->get_total_tax();
|
|
}
|
|
|
|
// set order totals
|
|
$mj_order->total = $wc_order->get_total();
|
|
$mj_order->discount = $wc_order->get_total_discount();
|
|
|
|
// add billing address to order
|
|
$billing = new Mijireh_Address();
|
|
$billing->first_name = $wc_order->billing_first_name;
|
|
$billing->last_name = $wc_order->billing_last_name;
|
|
$billing->street = $wc_order->billing_address_1;
|
|
$billing->apt_suite = $wc_order->billing_address_2;
|
|
$billing->city = $wc_order->billing_city;
|
|
$billing->state_province = $wc_order->billing_state;
|
|
$billing->zip_code = $wc_order->billing_postcode;
|
|
$billing->country = $wc_order->billing_country;
|
|
$billing->company = $wc_order->billing_company;
|
|
$billing->phone = $wc_order->billing_phone;
|
|
|
|
if ( $billing->validate() ) {
|
|
$mj_order->set_billing_address( $billing );
|
|
}
|
|
|
|
// add shipping address to order
|
|
$shipping = new Mijireh_Address();
|
|
$shipping->first_name = $wc_order->shipping_first_name;
|
|
$shipping->last_name = $wc_order->shipping_last_name;
|
|
$shipping->street = $wc_order->shipping_address_1;
|
|
$shipping->apt_suite = $wc_order->shipping_address_2;
|
|
$shipping->city = $wc_order->shipping_city;
|
|
$shipping->state_province = $wc_order->shipping_state;
|
|
$shipping->zip_code = $wc_order->shipping_postcode;
|
|
$shipping->country = $wc_order->shipping_country;
|
|
$shipping->company = $wc_order->shipping_company;
|
|
|
|
if ( $shipping->validate() ) {
|
|
$mj_order->set_shipping_address( $shipping );
|
|
}
|
|
|
|
// set order name
|
|
$mj_order->first_name = $wc_order->billing_first_name;
|
|
$mj_order->last_name = $wc_order->billing_last_name;
|
|
$mj_order->email = $wc_order->billing_email;
|
|
|
|
// add meta data to identify woocommerce order
|
|
$mj_order->add_meta_data( 'wc_order_id', $order_id );
|
|
|
|
// Set URL for mijireh payment notificatoin - use WC API
|
|
$mj_order->return_url = WC()->api_request_url( 'WC_Gateway_Mijireh' );
|
|
|
|
// Identify woocommerce
|
|
$mj_order->partner_id = 'woo';
|
|
|
|
try {
|
|
$mj_order->create();
|
|
$result = array(
|
|
'result' => 'success',
|
|
'redirect' => $mj_order->checkout_url
|
|
);
|
|
return $result;
|
|
} catch ( Mijireh_Exception $e ) {
|
|
wc_add_notice( __( 'Mijireh error:', 'woocommerce' ) . $e->getMessage() . print_r( $mj_order, true ), 'error' );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* init_mijireh function.
|
|
*
|
|
* @access public
|
|
*/
|
|
public function init_mijireh() {
|
|
if ( ! class_exists( 'Mijireh' ) ) {
|
|
require_once 'includes/Mijireh.php';
|
|
|
|
if ( ! isset( $this ) ) {
|
|
$settings = get_option( 'woocommerce_' . 'mijireh_checkout' . '_settings', null );
|
|
$key = ! empty( $settings['access_key'] ) ? $settings['access_key'] : '';
|
|
} else {
|
|
$key = $this->access_key;
|
|
}
|
|
|
|
Mijireh::$access_key = $key;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* page_slurp function.
|
|
*
|
|
* @access public
|
|
*/
|
|
public static function page_slurp() {
|
|
self::init_mijireh();
|
|
|
|
$page = get_page( absint( $_POST['page_id'] ) );
|
|
$url = get_permalink( $page->ID );
|
|
$job_id = $url;
|
|
if ( wp_update_post( array( 'ID' => $page->ID, 'post_status' => 'publish' ) ) ) {
|
|
$job_id = Mijireh::slurp( $url, $page->ID, str_replace( 'https:', 'http:', add_query_arg( 'wc-api', 'WC_Gateway_Mijireh', home_url( '/' ) ) ) );
|
|
}
|
|
echo $job_id;
|
|
die;
|
|
}
|
|
|
|
/**
|
|
* add_page_slurp_meta function.
|
|
*
|
|
* @access public
|
|
*/
|
|
public static function add_page_slurp_meta() {
|
|
if ( self::is_slurp_page() ) {
|
|
wp_enqueue_style( 'mijireh_css', WC()->plugin_url() . '/includes/gateways/mijireh/assets/css/mijireh.css' );
|
|
wp_enqueue_script( 'pusher', 'https://d3dy5gmtp8yhk7.cloudfront.net/1.11/pusher.min.js', null, false, true );
|
|
wp_enqueue_script( 'page_slurp', WC()->plugin_url() . '/includes/gateways/mijireh/assets/js/page_slurp.js', array('jquery'), false, true );
|
|
|
|
add_meta_box(
|
|
'slurp_meta_box', // $id
|
|
'Mijireh Page Slurp', // $title
|
|
array( 'WC_Gateway_Mijireh', 'draw_page_slurp_meta_box' ), // $callback
|
|
'page', // $page
|
|
'normal', // $context
|
|
'high' // $priority
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* is_slurp_page function.
|
|
*
|
|
* @access public
|
|
* @return bool
|
|
*/
|
|
public static function is_slurp_page() {
|
|
global $post;
|
|
$is_slurp = false;
|
|
if ( isset( $post ) && is_object( $post ) ) {
|
|
$content = $post->post_content;
|
|
if ( strpos( $content, '{{mj-checkout-form}}') !== false ) {
|
|
$is_slurp = true;
|
|
}
|
|
}
|
|
return $is_slurp;
|
|
}
|
|
|
|
/**
|
|
* draw_page_slurp_meta_box function.
|
|
*
|
|
* @access public
|
|
* @param mixed $post
|
|
*/
|
|
public static function draw_page_slurp_meta_box( $post ) {
|
|
self::init_mijireh();
|
|
|
|
echo "<div id='mijireh_notice' class='mijireh-info alert-message info' data-alert='alert'>";
|
|
echo "<h2>Slurp your custom checkout page!</h2>";
|
|
echo "<p>Get the page designed just how you want and when you're ready, click the button below and slurp it right up.</p>";
|
|
echo "<div id='slurp_progress' class='meter progress progress-info progress-striped active' style='display: none;'><div id='slurp_progress_bar' class='bar' style='width: 20%;'>Slurping...</div></div>";
|
|
echo "<p><a href='#' id='page_slurp' rel=". $post->ID ." class='button-primary'>Slurp This Page!</a> ";
|
|
echo '<a class="nobold" href="' . Mijireh::preview_checkout_link() . '" id="view_slurp" target="_new">Preview Checkout Page</a></p>';
|
|
echo "</div>";
|
|
}
|
|
}
|