2011-12-08 15:13:15 +00:00
< ? php
/**
* WooCommerce Ajax Handlers
2012-08-01 12:43:46 +00:00
*
2011-12-08 15:13:15 +00:00
* Handles AJAX requests via wp_ajax hook ( both admin and front - end events )
*
* @ author WooThemes
2012-08-14 16:19:22 +00:00
* @ category Core
* @ package WooCommerce / Functions / AJAX
* @ version 1.6 . 4
2011-12-08 15:13:15 +00:00
*/
2012-10-15 10:57:58 +00:00
if ( ! defined ( 'ABSPATH' ) ) exit ; // Exit if accessed directly
2012-08-01 12:43:46 +00:00
/** Frontend AJAX events **************************************************/
2011-12-09 19:55:09 +00:00
/**
* Process ajax login
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2011-12-09 19:55:09 +00:00
*/
function woocommerce_sidebar_login_ajax_process () {
check_ajax_referer ( 'woocommerce-sidebar-login-action' , 'security' );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// Get post data
$creds = array ();
2012-10-15 12:08:33 +00:00
$creds [ 'user_login' ] = $_REQUEST [ 'user_login' ];
$creds [ 'user_password' ] = $_REQUEST [ 'user_password' ];
2011-12-09 19:55:09 +00:00
$creds [ 'remember' ] = 'forever' ;
2012-10-15 12:08:33 +00:00
$redirect_to = esc_url ( $_REQUEST [ 'redirect_to' ] );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// Check for Secure Cookie
$secure_cookie = '' ;
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// If the user wants ssl but the session is not ssl, force a secure cookie.
2012-06-10 14:14:03 +00:00
if ( ! force_ssl_admin () ) {
$user_name = sanitize_user ( $creds [ 'user_login' ] );
if ( $user = get_user_by ( 'login' , $user_name ) ) {
if ( get_user_option ( 'use_ssl' , $user -> ID ) ) {
2011-12-09 19:55:09 +00:00
$secure_cookie = true ;
2012-10-15 10:15:57 +00:00
force_ssl_admin ( true );
2011-12-09 19:55:09 +00:00
}
}
}
2012-08-01 12:43:46 +00:00
2012-06-10 14:14:03 +00:00
if ( force_ssl_admin () ) $secure_cookie = true ;
2012-10-15 10:15:57 +00:00
if ( $secure_cookie == '' && force_ssl_login () ) $secure_cookie = false ;
2011-12-09 19:55:09 +00:00
// Login
2012-06-10 14:14:03 +00:00
$user = wp_signon ( $creds , $secure_cookie );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// Redirect filter
2012-10-15 10:15:57 +00:00
if ( $secure_cookie && strstr ( $redirect_to , 'wp-admin' ) ) $redirect_to = str_replace ( 'http:' , 'https:' , $redirect_to );
2011-12-09 19:55:09 +00:00
// Result
$result = array ();
2012-08-01 12:43:46 +00:00
2012-10-15 10:15:57 +00:00
if ( ! is_wp_error ( $user ) ) {
2011-12-09 19:55:09 +00:00
$result [ 'success' ] = 1 ;
$result [ 'redirect' ] = $redirect_to ;
2012-10-15 10:15:57 +00:00
} else {
2011-12-09 19:55:09 +00:00
$result [ 'success' ] = 0 ;
2012-10-15 10:15:57 +00:00
2012-06-10 14:14:03 +00:00
if ( $user -> errors ) {
2012-10-15 10:15:57 +00:00
foreach ( $user -> errors as $error ) {
2012-10-16 13:35:17 +00:00
$result [ 'error' ] = esc_html ( $error [ 0 ] );
2012-06-10 14:14:03 +00:00
break ;
}
} else {
2012-10-15 10:15:57 +00:00
$result [ 'error' ] = __ ( 'Please enter your username and password to login.' , 'woocommerce' );
2011-12-09 17:01:56 +00:00
}
2012-10-15 10:15:57 +00:00
}
2012-08-01 12:43:46 +00:00
2012-10-15 10:15:57 +00:00
header ( 'content-type: application/json; charset=utf-8' );
2012-06-10 14:14:03 +00:00
2012-10-15 10:15:57 +00:00
echo esc_js ( $_GET [ 'callback' ] ) . '(' . json_encode ( $result ) . ')' ;
2011-12-09 19:55:09 +00:00
die ();
}
2012-10-15 10:15:57 +00:00
add_action ( 'wp_ajax_nopriv_woocommerce_sidebar_login_process' , 'woocommerce_sidebar_login_ajax_process' );
2012-08-14 16:19:22 +00:00
2012-06-10 11:40:07 +00:00
/**
* AJAX apply coupon on checkout page
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2012-06-10 11:40:07 +00:00
*/
function woocommerce_ajax_apply_coupon () {
global $woocommerce ;
2012-08-01 12:43:46 +00:00
2012-06-10 11:40:07 +00:00
check_ajax_referer ( 'apply-coupon' , 'security' );
2012-08-01 12:43:46 +00:00
2012-06-10 11:40:07 +00:00
if ( ! empty ( $_POST [ 'coupon_code' ] ) ) {
2012-11-08 16:57:53 +00:00
$woocommerce -> cart -> add_discount ( sanitize_text_field ( $_POST [ 'coupon_code' ] ) );
2012-06-10 11:40:07 +00:00
} else {
2012-10-16 09:45:33 +00:00
$woocommerce -> add_error ( __ ( 'Please enter a coupon code.' , 'woocommerce' ) );
2012-06-10 11:40:07 +00:00
}
2012-08-01 12:43:46 +00:00
2012-06-10 11:40:07 +00:00
$woocommerce -> show_messages ();
2012-08-01 12:43:46 +00:00
2012-06-10 11:40:07 +00:00
die ();
}
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce_apply_coupon' , 'woocommerce_ajax_apply_coupon' );
add_action ( 'wp_ajax_nopriv_woocommerce_apply_coupon' , 'woocommerce_ajax_apply_coupon' );
2011-12-09 19:55:09 +00:00
/**
* AJAX update shipping method on cart page
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2011-12-09 19:55:09 +00:00
*/
function woocommerce_ajax_update_shipping_method () {
global $woocommerce ;
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
check_ajax_referer ( 'update-shipping-method' , 'security' );
2012-08-01 12:43:46 +00:00
2012-04-11 12:08:04 +00:00
if ( ! defined ( 'WOOCOMMERCE_CART' ) ) define ( 'WOOCOMMERCE_CART' , true );
2012-08-01 12:43:46 +00:00
2012-09-07 17:26:13 +00:00
if ( isset ( $_POST [ 'shipping_method' ] ) )
$woocommerce -> session -> chosen_shipping_method = $_POST [ 'shipping_method' ];
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
$woocommerce -> cart -> calculate_totals ();
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
woocommerce_cart_totals ();
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
die ();
}
2011-12-08 15:13:15 +00:00
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce_update_shipping_method' , 'woocommerce_ajax_update_shipping_method' );
add_action ( 'wp_ajax_nopriv_woocommerce_update_shipping_method' , 'woocommerce_ajax_update_shipping_method' );
2011-12-09 19:55:09 +00:00
/**
* AJAX update order review on checkout
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2011-12-09 19:55:09 +00:00
*/
function woocommerce_ajax_update_order_review () {
global $woocommerce ;
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
check_ajax_referer ( 'update-order-review' , 'security' );
2012-08-01 12:43:46 +00:00
2012-09-07 17:26:13 +00:00
if ( ! defined ( 'WOOCOMMERCE_CHECKOUT' ) )
define ( 'WOOCOMMERCE_CHECKOUT' , true );
2012-08-01 12:43:46 +00:00
2012-09-07 17:26:13 +00:00
if ( sizeof ( $woocommerce -> cart -> get_cart () ) == 0 ) {
echo '<div class="woocommerce_error">' . __ ( 'Sorry, your session has expired.' , 'woocommerce' ) . ' <a href="' . home_url () . '">' . __ ( 'Return to homepage →' , 'woocommerce' ) . '</a></div>' ;
2011-12-08 15:13:15 +00:00
die ();
2012-09-07 17:26:13 +00:00
}
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
do_action ( 'woocommerce_checkout_update_order_review' , $_POST [ 'post_data' ]);
2012-08-01 12:43:46 +00:00
2012-09-23 16:16:39 +00:00
$woocommerce -> session -> chosen_shipping_method = empty ( $_POST [ 'shipping_method' ] ) ? '' : $_POST [ 'shipping_method' ];
$woocommerce -> session -> chosen_payment_method = empty ( $_POST [ 'payment_method' ] ) ? '' : $_POST [ 'payment_method' ];
2012-09-07 17:26:13 +00:00
if ( isset ( $_POST [ 'country' ] ) )
$woocommerce -> customer -> set_country ( $_POST [ 'country' ] );
2012-09-23 16:16:39 +00:00
2012-09-07 17:26:13 +00:00
if ( isset ( $_POST [ 'state' ] ) )
$woocommerce -> customer -> set_state ( $_POST [ 'state' ] );
2012-09-23 16:16:39 +00:00
2012-09-07 17:26:13 +00:00
if ( isset ( $_POST [ 'postcode' ] ) )
$woocommerce -> customer -> set_postcode ( $_POST [ 'postcode' ] );
2012-09-23 16:16:39 +00:00
if ( isset ( $_POST [ 'city' ] ) )
$woocommerce -> customer -> set_city ( $_POST [ 'city' ] );
2012-09-07 17:26:13 +00:00
if ( isset ( $_POST [ 's_country' ] ) )
$woocommerce -> customer -> set_shipping_country ( $_POST [ 's_country' ] );
2012-09-23 16:16:39 +00:00
2012-09-07 17:26:13 +00:00
if ( isset ( $_POST [ 's_state' ] ) )
$woocommerce -> customer -> set_shipping_state ( $_POST [ 's_state' ] );
2012-09-23 16:16:39 +00:00
2012-09-07 17:26:13 +00:00
if ( isset ( $_POST [ 's_postcode' ] ) )
$woocommerce -> customer -> set_shipping_postcode ( $_POST [ 's_postcode' ] );
2012-09-23 16:16:39 +00:00
if ( isset ( $_POST [ 's_city' ] ) )
$woocommerce -> customer -> set_shipping_city ( $_POST [ 's_city' ] );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
$woocommerce -> cart -> calculate_totals ();
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
do_action ( 'woocommerce_checkout_order_review' ); // Display review order table
die ();
}
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce_update_order_review' , 'woocommerce_ajax_update_order_review' );
add_action ( 'wp_ajax_nopriv_woocommerce_update_order_review' , 'woocommerce_ajax_update_order_review' );
2011-12-09 19:55:09 +00:00
/**
* AJAX add to cart
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2011-12-09 19:55:09 +00:00
*/
function woocommerce_ajax_add_to_cart () {
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
global $woocommerce ;
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
check_ajax_referer ( 'add-to-cart' , 'security' );
2012-08-01 12:43:46 +00:00
2012-01-06 17:14:31 +00:00
$product_id = ( int ) apply_filters ( 'woocommerce_add_to_cart_product_id' , $_POST [ 'product_id' ]);
2012-08-01 12:43:46 +00:00
2012-01-27 18:31:30 +00:00
$passed_validation = apply_filters ( 'woocommerce_add_to_cart_validation' , true , $product_id , 1 );
2012-08-01 12:43:46 +00:00
2012-01-27 18:31:30 +00:00
if ( $passed_validation && $woocommerce -> cart -> add_to_cart ( $product_id , 1 )) :
2011-12-09 19:55:09 +00:00
// Return html fragments
$data = apply_filters ( 'add_to_cart_fragments' , array ());
2012-08-05 16:42:25 +00:00
do_action ( 'woocommerce_ajax_added_to_cart' , $product_id );
2011-12-09 19:55:09 +00:00
else :
2012-01-27 18:31:30 +00:00
// If there was an error adding to the cart, redirect to the product page to show any errors
2011-12-09 19:55:09 +00:00
$data = array (
2012-01-27 18:31:30 +00:00
'error' => true ,
'product_url' => get_permalink ( $product_id )
2011-12-09 19:55:09 +00:00
);
2012-01-27 18:31:30 +00:00
$woocommerce -> set_messages ();
2011-12-09 19:55:09 +00:00
endif ;
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
echo json_encode ( $data );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
die ();
}
2011-12-08 15:13:15 +00:00
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce_add_to_cart' , 'woocommerce_ajax_add_to_cart' );
add_action ( 'wp_ajax_nopriv_woocommerce_add_to_cart' , 'woocommerce_ajax_add_to_cart' );
2011-12-09 19:55:09 +00:00
/**
* Process ajax checkout form
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2011-12-09 19:55:09 +00:00
*/
2012-01-12 00:54:45 +00:00
function woocommerce_process_checkout () {
global $woocommerce ;
2012-08-01 12:43:46 +00:00
2012-01-17 15:59:05 +00:00
if ( ! defined ( 'WOOCOMMERCE_CHECKOUT' )) define ( 'WOOCOMMERCE_CHECKOUT' , true );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
$woocommerce_checkout = $woocommerce -> checkout ();
$woocommerce_checkout -> process_checkout ();
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
die ( 0 );
}
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce-checkout' , 'woocommerce_process_checkout' );
add_action ( 'wp_ajax_nopriv_woocommerce-checkout' , 'woocommerce_process_checkout' );
2011-12-09 19:55:09 +00:00
2012-08-01 12:43:46 +00:00
/** Admin AJAX events *****************************************************/
2011-12-09 19:55:09 +00:00
/**
* Feature a product from admin
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2011-12-09 19:55:09 +00:00
*/
function woocommerce_feature_product () {
2012-08-14 16:19:22 +00:00
if ( ! is_admin () ) die ;
2012-08-01 12:43:46 +00:00
2012-11-05 16:50:24 +00:00
if ( ! current_user_can ( 'edit_products' ) ) wp_die ( __ ( 'You do not have sufficient permissions to access this page.' , 'woocommerce' ) );
2012-08-01 12:43:46 +00:00
2012-10-16 09:45:33 +00:00
if ( ! check_admin_referer ( 'woocommerce-feature-product' )) wp_die ( __ ( 'You have taken too long. Please go back and retry.' , 'woocommerce' ) );
2012-08-01 12:43:46 +00:00
2012-04-20 10:02:29 +00:00
$post_id = isset ( $_GET [ 'product_id' ] ) && ( int ) $_GET [ 'product_id' ] ? ( int ) $_GET [ 'product_id' ] : '' ;
2012-08-01 12:43:46 +00:00
2012-08-14 16:19:22 +00:00
if ( ! $post_id ) die ;
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
$post = get_post ( $post_id );
2012-08-01 12:43:46 +00:00
2012-08-14 16:19:22 +00:00
if ( ! $post || $post -> post_type !== 'product' ) die ;
2012-08-01 12:43:46 +00:00
2012-04-20 10:02:29 +00:00
$featured = get_post_meta ( $post -> ID , '_featured' , true );
2011-12-09 19:55:09 +00:00
2012-08-01 12:43:46 +00:00
if ( $featured == 'yes' )
2012-04-20 10:02:29 +00:00
update_post_meta ( $post -> ID , '_featured' , 'no' );
2012-08-01 12:43:46 +00:00
else
2012-04-20 10:02:29 +00:00
update_post_meta ( $post -> ID , '_featured' , 'yes' );
2012-08-01 12:43:46 +00:00
2012-04-20 10:02:29 +00:00
wp_safe_redirect ( remove_query_arg ( array ( 'trashed' , 'untrashed' , 'deleted' , 'ids' ), wp_get_referer () ) );
2011-12-09 19:55:09 +00:00
}
2012-04-20 10:02:29 +00:00
2011-12-09 19:55:09 +00:00
add_action ( 'wp_ajax_woocommerce-feature-product' , 'woocommerce_feature_product' );
2012-08-14 16:19:22 +00:00
2011-12-09 19:55:09 +00:00
/**
* Mark an order as complete
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2011-12-09 19:55:09 +00:00
*/
function woocommerce_mark_order_complete () {
2012-08-14 16:19:22 +00:00
if ( ! is_admin () ) die ;
2012-11-05 16:50:24 +00:00
if ( ! current_user_can ( 'edit_shop_orders' ) ) wp_die ( __ ( 'You do not have sufficient permissions to access this page.' , 'woocommerce' ) );
2012-10-16 09:45:33 +00:00
if ( ! check_admin_referer ( 'woocommerce-mark-order-complete' )) wp_die ( __ ( 'You have taken too long. Please go back and retry.' , 'woocommerce' ) );
2011-12-09 19:55:09 +00:00
$order_id = isset ( $_GET [ 'order_id' ]) && ( int ) $_GET [ 'order_id' ] ? ( int ) $_GET [ 'order_id' ] : '' ;
2012-08-14 16:19:22 +00:00
if ( ! $order_id ) die ;
2012-08-01 12:43:46 +00:00
2012-01-27 16:38:39 +00:00
$order = new WC_Order ( $order_id );
2011-12-09 19:55:09 +00:00
$order -> update_status ( 'completed' );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
wp_safe_redirect ( wp_get_referer () );
}
add_action ( 'wp_ajax_woocommerce-mark-order-complete' , 'woocommerce_mark_order_complete' );
2012-08-14 16:19:22 +00:00
2011-12-09 19:55:09 +00:00
/**
* Mark an order as processing
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2011-12-09 19:55:09 +00:00
*/
function woocommerce_mark_order_processing () {
2012-08-14 16:19:22 +00:00
if ( ! is_admin () ) die ;
2012-11-05 16:50:24 +00:00
if ( ! current_user_can ( 'edit_shop_orders' ) ) wp_die ( __ ( 'You do not have sufficient permissions to access this page.' , 'woocommerce' ) );
2012-10-16 09:45:33 +00:00
if ( ! check_admin_referer ( 'woocommerce-mark-order-processing' )) wp_die ( __ ( 'You have taken too long. Please go back and retry.' , 'woocommerce' ) );
2011-12-09 19:55:09 +00:00
$order_id = isset ( $_GET [ 'order_id' ]) && ( int ) $_GET [ 'order_id' ] ? ( int ) $_GET [ 'order_id' ] : '' ;
2012-08-14 16:19:22 +00:00
if ( ! $order_id ) die ;
2012-08-01 12:43:46 +00:00
2012-01-27 16:38:39 +00:00
$order = new WC_Order ( $order_id );
2011-12-09 19:55:09 +00:00
$order -> update_status ( 'processing' );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
wp_safe_redirect ( wp_get_referer () );
}
add_action ( 'wp_ajax_woocommerce-mark-order-processing' , 'woocommerce_mark_order_processing' );
2012-08-14 16:19:22 +00:00
2012-04-08 23:57:38 +00:00
/**
* Add a new attribute via ajax function
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2012-04-08 23:57:38 +00:00
*/
function woocommerce_add_new_attribute () {
2012-08-01 12:43:46 +00:00
2012-04-08 23:57:38 +00:00
check_ajax_referer ( 'add-attribute' , 'security' );
2012-08-01 12:43:46 +00:00
2012-04-08 23:57:38 +00:00
$taxonomy = esc_attr ( $_POST [ 'taxonomy' ] );
$term = stripslashes ( $_POST [ 'term' ] );
2012-08-01 12:43:46 +00:00
2012-04-08 23:57:38 +00:00
if ( taxonomy_exists ( $taxonomy ) ) {
2012-08-01 12:43:46 +00:00
2012-04-08 23:57:38 +00:00
$result = wp_insert_term ( $term , $taxonomy );
2012-08-01 12:43:46 +00:00
2012-04-08 23:57:38 +00:00
if ( is_wp_error ( $result ) ) {
echo json_encode ( array (
'error' => $result -> get_error_message ()
));
} else {
echo json_encode ( array (
'term_id' => $result [ 'term_id' ],
'name' => $term ,
'slug' => sanitize_title ( $term ),
));
}
}
2012-08-01 12:43:46 +00:00
2012-04-08 23:57:38 +00:00
die ();
}
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce_add_new_attribute' , 'woocommerce_add_new_attribute' );
2011-12-09 19:55:09 +00:00
/**
* Delete variation via ajax function
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2011-12-09 19:55:09 +00:00
*/
function woocommerce_remove_variation () {
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
check_ajax_referer ( 'delete-variation' , 'security' );
$variation_id = intval ( $_POST [ 'variation_id' ] );
$variation = get_post ( $variation_id );
2012-08-14 16:19:22 +00:00
if ( $variation && $variation -> post_type == " product_variation " )
wp_delete_post ( $variation_id );
2011-12-09 19:55:09 +00:00
die ();
}
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce_remove_variation' , 'woocommerce_remove_variation' );
2012-01-06 15:57:24 +00:00
/**
* Delete variations via ajax function
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2012-01-06 15:57:24 +00:00
*/
function woocommerce_remove_variations () {
2012-08-01 12:43:46 +00:00
2012-01-06 15:57:24 +00:00
check_ajax_referer ( 'delete-variations' , 'security' );
$variation_ids = ( array ) $_POST [ 'variation_ids' ];
2012-08-14 16:19:22 +00:00
foreach ( $variation_ids as $variation_id ) {
2012-01-06 15:57:24 +00:00
$variation = get_post ( $variation_id );
2012-08-14 16:19:22 +00:00
if ( $variation && $variation -> post_type == " product_variation " )
wp_delete_post ( $variation_id );
}
2012-01-06 15:57:24 +00:00
die ();
}
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce_remove_variations' , 'woocommerce_remove_variations' );
2011-12-09 19:55:09 +00:00
/**
* Add variation via ajax function
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2011-12-09 19:55:09 +00:00
*/
function woocommerce_add_variation () {
2012-10-08 08:59:02 +00:00
global $woocommerce ;
2011-12-09 19:55:09 +00:00
check_ajax_referer ( 'add-variation' , 'security' );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
$post_id = intval ( $_POST [ 'post_id' ] );
2012-10-08 08:59:02 +00:00
$loop = intval ( $_POST [ 'loop' ] );
2011-12-09 19:55:09 +00:00
$variation = array (
2012-10-08 08:59:02 +00:00
'post_title' => 'Product #' . $post_id . ' Variation' ,
'post_content' => '' ,
'post_status' => 'publish' ,
'post_author' => get_current_user_id (),
'post_parent' => $post_id ,
'post_type' => 'product_variation'
2011-12-09 19:55:09 +00:00
);
2012-10-08 08:59:02 +00:00
2011-12-09 19:55:09 +00:00
$variation_id = wp_insert_post ( $variation );
2012-10-08 08:59:02 +00:00
if ( $variation_id ) {
$variation_post_status = 'publish' ;
$variation_data = get_post_custom ( $variation_id );
$variation_data [ 'variation_post_id' ] = $variation_id ;
// Get attributes
$attributes = ( array ) maybe_unserialize ( get_post_meta ( $post_id , '_product_attributes' , true ) );
// Get tax classes
$tax_classes = array_filter ( array_map ( 'trim' , explode ( " \n " , get_option ( 'woocommerce_tax_classes' ))));
$tax_class_options = array ();
2012-10-16 09:45:33 +00:00
$tax_class_options [ 'parent' ] = __ ( 'Same as parent' , 'woocommerce' );
$tax_class_options [ '' ] = __ ( 'Standard' , 'woocommerce' );
2012-10-08 08:59:02 +00:00
if ( $tax_classes ) foreach ( $tax_classes as $class )
$tax_class_options [ sanitize_title ( $class )] = $class ;
// Get parent data
$parent_data = array (
'id' => $post_id ,
'attributes' => $attributes ,
'tax_class_options' => $tax_class_options ,
'sku' => get_post_meta ( $post_id , '_sku' , true ),
'weight' => get_post_meta ( $post_id , '_weight' , true ),
'length' => get_post_meta ( $post_id , '_length' , true ),
'width' => get_post_meta ( $post_id , '_width' , true ),
'height' => get_post_meta ( $post_id , '_height' , true ),
'tax_class' => get_post_meta ( $post_id , '_tax_class' , true )
);
if ( ! $parent_data [ 'weight' ] )
$parent_data [ 'weight' ] = '0.00' ;
if ( ! $parent_data [ 'length' ] )
$parent_data [ 'length' ] = '0' ;
if ( ! $parent_data [ 'width' ] )
$parent_data [ 'width' ] = '0' ;
if ( ! $parent_data [ 'height' ] )
$parent_data [ 'height' ] = '0' ;
include ( 'admin/post-types/writepanels/variation-admin-html.php' );
}
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
die ();
}
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce_add_variation' , 'woocommerce_add_variation' );
2011-12-09 19:55:09 +00:00
/**
* Link all variations via ajax function
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2011-12-09 19:55:09 +00:00
*/
function woocommerce_link_all_variations () {
2012-08-25 10:09:53 +00:00
global $woocommerce ;
2012-10-15 11:12:31 +00:00
if ( ! defined ( 'WC_MAX_LINKED_VARIATIONS' ) ) {
define ( 'WC_MAX_LINKED_VARIATIONS' , 49 );
}
2012-08-25 10:09:53 +00:00
2011-12-09 19:55:09 +00:00
check_ajax_referer ( 'link-variations' , 'security' );
2012-08-01 12:43:46 +00:00
@ set_time_limit ( 0 );
2011-12-09 19:55:09 +00:00
$post_id = intval ( $_POST [ 'post_id' ] );
2012-08-01 12:43:46 +00:00
2012-10-15 11:12:31 +00:00
if ( ! $post_id ) die ();
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
$variations = array ();
2012-08-01 12:43:46 +00:00
2012-01-27 16:38:39 +00:00
$_product = new WC_Product ( $post_id );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// Put variation attributes into an array
2012-10-15 11:12:31 +00:00
foreach ( $_product -> get_attributes () as $attribute ) {
2012-08-01 12:43:46 +00:00
2012-10-15 11:12:31 +00:00
if ( ! $attribute [ 'is_variation' ] ) continue ;
2012-08-01 12:43:46 +00:00
2012-10-15 11:12:31 +00:00
$attribute_field_name = 'attribute_' . sanitize_title ( $attribute [ 'name' ] );
2012-08-01 12:43:46 +00:00
2012-10-15 11:12:31 +00:00
if ( $attribute [ 'is_taxonomy' ] ) {
2011-12-09 19:55:09 +00:00
$post_terms = wp_get_post_terms ( $post_id , $attribute [ 'name' ] );
$options = array ();
2012-10-15 11:12:31 +00:00
foreach ( $post_terms as $term ) {
2011-12-09 19:55:09 +00:00
$options [] = $term -> slug ;
2012-10-15 11:12:31 +00:00
}
} else {
2011-12-09 19:55:09 +00:00
$options = explode ( '|' , $attribute [ 'value' ]);
2012-10-15 11:12:31 +00:00
}
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
$options = array_map ( 'trim' , $options );
2012-08-01 12:43:46 +00:00
2012-10-15 11:12:31 +00:00
$variations [ $attribute_field_name ] = $options ;
2012-08-01 12:43:46 +00:00
2012-10-15 11:12:31 +00:00
}
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// Quit out if none were found
2012-10-15 11:12:31 +00:00
if ( sizeof ( $variations ) == 0 ) die ();
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// Get existing variations so we don't create duplicated
$available_variations = array ();
2012-08-01 12:43:46 +00:00
2012-10-15 11:12:31 +00:00
foreach ( $_product -> get_children () as $child_id ) {
2011-12-09 19:55:09 +00:00
$child = $_product -> get_child ( $child_id );
2012-10-15 11:12:31 +00:00
if ( $child instanceof WC_Product_Variation ) {
2011-12-09 19:55:09 +00:00
$available_variations [] = $child -> get_variation_attributes ();
}
}
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// Created posts will all have the following data
$variation_post_data = array (
'post_title' => 'Product #' . $post_id . ' Variation' ,
'post_content' => '' ,
'post_status' => 'publish' ,
'post_author' => get_current_user_id (),
'post_parent' => $post_id ,
'post_type' => 'product_variation'
);
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// Now find all combinations and create posts
2012-10-15 11:12:31 +00:00
if ( ! function_exists ( 'array_cartesian' ) ) {
function array_cartesian ( $input ) {
2011-12-09 19:55:09 +00:00
$result = array ();
2012-08-01 12:43:46 +00:00
2012-10-15 11:12:31 +00:00
while ( list ( $key , $values ) = each ( $input ) ) {
2011-12-09 19:55:09 +00:00
// If a sub-array is empty, it doesn't affect the cartesian product
2012-10-15 11:12:31 +00:00
if ( empty ( $values ) ) {
2011-12-09 19:55:09 +00:00
continue ;
}
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// Special case: seeding the product array with the values from the first sub-array
2012-10-15 11:12:31 +00:00
if ( empty ( $result ) ) {
foreach ( $values as $value ) {
$result [] = array ( $key => $value );
2011-12-09 19:55:09 +00:00
}
}
else {
// Second and subsequent input sub-arrays work like this:
// 1. In each existing array inside $product, add an item with
// key == $key and value == first item in input sub-array
// 2. Then, for each remaining item in current input sub-array,
// add a copy of each existing array inside $product with
// key == $key and value == first item in current input sub-array
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// Store all items to be added to $product here; adding them on the spot
// inside the foreach will result in an infinite loop
$append = array ();
2012-10-15 11:12:31 +00:00
foreach ( $result as & $product ) {
2011-12-09 19:55:09 +00:00
// Do step 1 above. array_shift is not the most efficient, but it
// allows us to iterate over the rest of the items with a simple
// foreach, making the code short and familiar.
2012-10-15 11:12:31 +00:00
$product [ $key ] = array_shift ( $values );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// $product is by reference (that's why the key we added above
// will appear in the end result), so make a copy of it here
$copy = $product ;
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// Do step 2 above.
2012-10-15 11:12:31 +00:00
foreach ( $values as $item ) {
$copy [ $key ] = $item ;
2011-12-09 19:55:09 +00:00
$append [] = $copy ;
}
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// Undo the side effecst of array_shift
2012-10-15 11:12:31 +00:00
array_unshift ( $values , $product [ $key ] );
2011-12-09 19:55:09 +00:00
}
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// Out of the foreach, we can add to $results now
2012-10-15 11:12:31 +00:00
$result = array_merge ( $result , $append );
2011-12-09 19:55:09 +00:00
}
}
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
return $result ;
}
2011-12-08 15:13:15 +00:00
}
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
$variation_ids = array ();
2012-01-12 11:09:54 +00:00
$added = 0 ;
2011-12-09 19:55:09 +00:00
$possible_variations = array_cartesian ( $variations );
2012-08-01 12:43:46 +00:00
2012-10-15 11:12:31 +00:00
foreach ( $possible_variations as $variation ) {
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// Check if variation already exists
2012-10-15 11:12:31 +00:00
if ( in_array ( $variation , $available_variations ) ) continue ;
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
$variation_id = wp_insert_post ( $variation_post_data );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
$variation_ids [] = $variation_id ;
2012-08-01 12:43:46 +00:00
2012-10-15 11:12:31 +00:00
foreach ( $variation as $key => $value ) {
2011-12-09 19:55:09 +00:00
update_post_meta ( $variation_id , $key , $value );
2012-10-15 11:12:31 +00:00
}
2012-08-01 12:43:46 +00:00
2012-01-12 11:09:54 +00:00
$added ++ ;
2012-08-01 12:43:46 +00:00
2012-10-15 11:12:31 +00:00
if ( $added > WC_MAX_LINKED_VARIATIONS ) break ;
2012-08-01 12:43:46 +00:00
2012-10-15 11:12:31 +00:00
}
2012-08-25 10:09:53 +00:00
$woocommerce -> clear_product_transients ( $post_id );
2012-08-01 12:43:46 +00:00
2012-01-12 11:09:54 +00:00
echo $added ;
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
die ();
}
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce_link_all_variations' , 'woocommerce_link_all_variations' );
2012-02-25 19:48:09 +00:00
/**
* Delete download permissions via ajax function
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2012-02-25 19:48:09 +00:00
*/
function woocommerce_revoke_access_to_download () {
2012-08-01 12:43:46 +00:00
2012-02-25 19:48:09 +00:00
check_ajax_referer ( 'revoke-access' , 'security' );
2012-08-01 12:43:46 +00:00
2012-02-25 19:48:09 +00:00
global $wpdb ;
2012-08-01 12:43:46 +00:00
2012-08-28 15:21:54 +00:00
$download_id = $_POST [ 'download_id' ];
2012-02-25 19:48:09 +00:00
$product_id = intval ( $_POST [ 'product_id' ] );
$order_id = intval ( $_POST [ 'order_id' ] );
2012-08-01 12:43:46 +00:00
2012-10-04 17:33:35 +00:00
$wpdb -> query ( $wpdb -> prepare ( " DELETE FROM { $wpdb -> prefix } woocommerce_downloadable_product_permissions WHERE order_id = %d AND product_id = %d AND download_id = %d; " , $order_id , $product_id , $download_id ) );
2012-02-25 19:48:09 +00:00
2012-08-01 12:43:46 +00:00
die ();
2012-02-25 19:48:09 +00:00
}
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce_revoke_access_to_download' , 'woocommerce_revoke_access_to_download' );
2012-02-25 19:48:09 +00:00
/**
* Grant download permissions via ajax function
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2012-02-25 19:48:09 +00:00
*/
function woocommerce_grant_access_to_download () {
2012-08-01 12:43:46 +00:00
2012-02-25 19:48:09 +00:00
check_ajax_referer ( 'grant-access' , 'security' );
2012-08-01 12:43:46 +00:00
2012-02-25 19:48:09 +00:00
global $wpdb ;
2012-08-01 12:43:46 +00:00
2012-02-25 19:48:09 +00:00
$order_id = intval ( $_POST [ 'order_id' ] );
2012-10-16 09:11:50 +00:00
$product_id = intval ( $_POST [ 'product_id' ] );
$loop = intval ( $_POST [ 'loop' ] );
$file_count = 0 ;
$order = new WC_Order ( $order_id );
$product = new WC_Product ( $product_id );
2012-08-01 12:43:46 +00:00
2012-10-16 13:35:17 +00:00
$user_email = sanitize_email ( $order -> billing_email );
2012-08-01 12:43:46 +00:00
2012-10-16 09:11:50 +00:00
$limit = trim ( get_post_meta ( $product_id , '_download_limit' , true ) );
$expiry = trim ( get_post_meta ( $product_id , '_download_expiry' , true ) );
2012-08-28 15:21:54 +00:00
$file_paths = apply_filters ( 'woocommerce_file_download_paths' , get_post_meta ( $product_id , '_file_paths' , true ), $product_id , $order_id , null );
2012-08-01 12:43:46 +00:00
2012-10-16 09:11:50 +00:00
$limit = empty ( $limit ) ? '' : ( int ) $limit ;
2012-04-10 21:37:29 +00:00
// Default value is NULL in the table schema
2012-10-16 09:11:50 +00:00
$expiry = empty ( $expiry ) ? null : ( int ) $expiry ;
2012-08-01 12:43:46 +00:00
2012-10-16 09:11:50 +00:00
if ( $expiry )
$expiry = date_i18n ( " Y-m-d " , strtotime ( 'NOW + ' . $expiry . ' DAY' ) );
2012-08-01 12:43:46 +00:00
2012-02-25 19:48:09 +00:00
$wpdb -> hide_errors ();
2012-08-28 15:21:54 +00:00
$response = array ();
2012-10-16 09:11:50 +00:00
if ( $file_paths ) {
2012-09-06 15:16:16 +00:00
foreach ( $file_paths as $download_id => $file_path ) {
$data = array (
'download_id' => $download_id ,
'product_id' => $product_id ,
'user_id' => ( int ) $order -> user_id ,
'user_email' => $user_email ,
'order_id' => $order -> id ,
'order_key' => $order -> order_key ,
'downloads_remaining' => $limit ,
2012-10-16 09:11:50 +00:00
'access_granted' => current_time ( 'mysql' ),
2012-09-06 15:16:16 +00:00
'download_count' => 0
);
$format = array (
'%s' ,
'%s' ,
'%s' ,
'%s' ,
'%s' ,
'%s' ,
'%s' ,
'%s' ,
'%d'
);
2012-10-16 09:11:50 +00:00
if ( ! is_null ( $expiry ) ) {
2012-09-06 15:16:16 +00:00
$data [ 'access_expires' ] = $expiry ;
$format [] = '%s' ;
}
// Downloadable product - give access to the customer
$success = $wpdb -> insert ( $wpdb -> prefix . 'woocommerce_downloadable_product_permissions' ,
$data ,
$format
);
if ( $success ) {
2012-10-16 09:11:50 +00:00
$download = new stdClass ();
$download -> product_id = $product_id ;
$download -> download_id = $download_id ;
$download -> order_id = $order -> id ;
$download -> order_key = $order -> order_key ;
$download -> download_count = 0 ;
$download -> downloads_remaining = $limit ;
$download -> access_expires = $expiry ;
$loop ++ ;
$file_count ++ ;
include ( 'admin/post-types/writepanels/order-download-permission-html.php' );
2012-09-06 15:16:16 +00:00
}
2012-08-28 15:21:54 +00:00
}
2012-02-25 19:48:09 +00:00
}
2012-08-01 12:43:46 +00:00
die ();
2012-02-25 19:48:09 +00:00
}
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce_grant_access_to_download' , 'woocommerce_grant_access_to_download' );
2011-12-09 19:55:09 +00:00
/**
* Get customer details via ajax
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2011-12-09 19:55:09 +00:00
*/
function woocommerce_get_customer_details () {
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
global $woocommerce ;
check_ajax_referer ( 'get-customer-details' , 'security' );
$user_id = ( int ) trim ( stripslashes ( $_POST [ 'user_id' ]));
$type_to_load = esc_attr ( trim ( stripslashes ( $_POST [ 'type_to_load' ])));
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
$customer_data = array (
$type_to_load . '_first_name' => get_user_meta ( $user_id , $type_to_load . '_first_name' , true ),
$type_to_load . '_last_name' => get_user_meta ( $user_id , $type_to_load . '_last_name' , true ),
$type_to_load . '_company' => get_user_meta ( $user_id , $type_to_load . '_company' , true ),
$type_to_load . '_address_1' => get_user_meta ( $user_id , $type_to_load . '_address_1' , true ),
$type_to_load . '_address_2' => get_user_meta ( $user_id , $type_to_load . '_address_2' , true ),
$type_to_load . '_city' => get_user_meta ( $user_id , $type_to_load . '_city' , true ),
$type_to_load . '_postcode' => get_user_meta ( $user_id , $type_to_load . '_postcode' , true ),
$type_to_load . '_country' => get_user_meta ( $user_id , $type_to_load . '_country' , true ),
$type_to_load . '_state' => get_user_meta ( $user_id , $type_to_load . '_state' , true ),
$type_to_load . '_email' => get_user_meta ( $user_id , $type_to_load . '_email' , true ),
$type_to_load . '_phone' => get_user_meta ( $user_id , $type_to_load . '_phone' , true ),
);
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
echo json_encode ( $customer_data );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// Quit out
die ();
}
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce_get_customer_details' , 'woocommerce_get_customer_details' );
2011-12-09 19:55:09 +00:00
/**
* Add order item via ajax
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2011-12-09 19:55:09 +00:00
*/
2012-10-19 17:59:17 +00:00
function woocommerce_ajax_add_order_item () {
2012-01-13 21:25:39 +00:00
global $woocommerce , $wpdb ;
2011-12-09 19:55:09 +00:00
2012-10-18 17:56:28 +00:00
check_ajax_referer ( 'order-item' , 'security' );
2012-08-01 12:43:46 +00:00
2012-10-19 14:05:23 +00:00
$item_to_add = sanitize_text_field ( $_POST [ 'item_to_add' ] );
$order_id = absint ( $_POST [ 'order_id' ] );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// Find the item
2012-10-19 14:05:23 +00:00
if ( ! is_numeric ( $item_to_add ) )
2011-12-08 15:13:15 +00:00
die ();
2012-10-19 14:05:23 +00:00
$post = get_post ( $item_to_add );
2012-08-01 12:43:46 +00:00
2012-10-19 14:05:23 +00:00
if ( ! $post || ( $post -> post_type !== 'product' && $post -> post_type !== 'product_variation' ) )
die ();
if ( $post -> post_type != " product " )
2012-01-27 16:38:39 +00:00
$_product = new WC_Product_Variation ( $post -> ID );
2012-10-19 14:05:23 +00:00
else
$_product = new WC_Product ( $post -> ID );
2012-10-23 16:41:42 +00:00
$order = new WC_Order ( $order_id );
2012-10-19 14:05:23 +00:00
$class = 'new_row' ;
2012-10-19 17:59:17 +00:00
// Set values
$item = array ();
$item [ 'product_id' ] = $_product -> id ;
$item [ 'variation_id' ] = isset ( $_product -> variation_id ) ? $_product -> variation_id : '' ;
2012-10-23 16:41:42 +00:00
$item [ 'name' ] = $_product -> get_title ();
$item [ 'tax_class' ] = $_product -> get_tax_class ();
$item [ 'qty' ] = 1 ;
2012-10-19 17:59:17 +00:00
$item [ 'line_subtotal' ] = number_format ( ( double ) $_product -> get_price_excluding_tax (), 2 , '.' , '' );
$item [ 'line_subtotal_tax' ] = '' ;
$item [ 'line_total' ] = number_format ( ( double ) $_product -> get_price_excluding_tax (), 2 , '.' , '' );
$item [ 'line_tax' ] = '' ;
2012-10-23 16:41:42 +00:00
// Add line item
$item_id = woocommerce_add_order_item ( $order_id , array (
'order_item_name' => $item [ 'name' ],
'order_item_type' => 'line_item'
) );
// Add line item meta
if ( $item_id ) {
woocommerce_add_order_item_meta ( $item_id , '_qty' , $item [ 'qty' ] );
woocommerce_add_order_item_meta ( $item_id , '_tax_class' , $item [ 'tax_class' ] );
woocommerce_add_order_item_meta ( $item_id , '_product_id' , $item [ 'product_id' ] );
woocommerce_add_order_item_meta ( $item_id , '_variation_id' , $item [ 'variation_id' ] );
woocommerce_add_order_item_meta ( $item_id , '_line_subtotal' , $item [ 'line_subtotal' ] );
woocommerce_add_order_item_meta ( $item_id , '_line_subtotal_tax' , $item [ 'line_subtotal_tax' ] );
woocommerce_add_order_item_meta ( $item_id , '_line_total' , $item [ 'line_total' ] );
woocommerce_add_order_item_meta ( $item_id , '_line_tax' , $item [ 'line_tax' ] );
}
2012-10-19 14:05:23 +00:00
include ( 'admin/post-types/writepanels/order-item-html.php' );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// Quit out
die ();
2012-01-13 21:25:39 +00:00
}
2012-10-19 17:59:17 +00:00
add_action ( 'wp_ajax_woocommerce_add_order_item' , 'woocommerce_ajax_add_order_item' );
2012-08-14 16:19:22 +00:00
2012-11-12 13:41:54 +00:00
/**
* Add order fee via ajax
*
* @ access public
* @ return void
*/
function woocommerce_ajax_add_order_fee () {
global $woocommerce ;
check_ajax_referer ( 'order-item' , 'security' );
$order_id = absint ( $_POST [ 'order_id' ] );
$order = new WC_Order ( $order_id );
// Add line item
$item_id = woocommerce_add_order_item ( $order_id , array (
'order_item_name' => '' ,
'order_item_type' => 'fee'
) );
// Add line item meta
if ( $item_id ) {
woocommerce_add_order_item_meta ( $item_id , '_tax_class' , '' );
woocommerce_add_order_item_meta ( $item_id , '_line_total' , '' );
woocommerce_add_order_item_meta ( $item_id , '_line_tax' , '' );
}
include ( 'admin/post-types/writepanels/order-fee-html.php' );
// Quit out
die ();
}
add_action ( 'wp_ajax_woocommerce_add_order_fee' , 'woocommerce_ajax_add_order_fee' );
2012-11-12 17:15:54 +00:00
2012-10-19 14:05:23 +00:00
/**
2012-10-19 17:59:17 +00:00
* woocommerce_ajax_remove_order_item function .
2012-10-19 14:05:23 +00:00
*
* @ access public
* @ return void
*/
2012-10-19 17:59:17 +00:00
function woocommerce_ajax_remove_order_item () {
2012-10-19 14:05:23 +00:00
global $woocommerce , $wpdb ;
check_ajax_referer ( 'order-item' , 'security' );
2012-11-12 12:22:35 +00:00
$order_item_ids = $_POST [ 'order_item_ids' ];
if ( sizeof ( $order_item_ids ) > 0 ) {
foreach ( $order_item_ids as $id ) {
woocommerce_delete_order_item ( absint ( $id ) );
}
}
2012-10-19 14:05:23 +00:00
die ();
}
2012-10-19 17:59:17 +00:00
add_action ( 'wp_ajax_woocommerce_remove_order_item' , 'woocommerce_ajax_remove_order_item' );
2012-10-19 14:05:23 +00:00
2012-11-12 12:22:35 +00:00
/**
* woocommerce_ajax_reduce_order_item_stock function .
*
* @ access public
* @ return void
*/
function woocommerce_ajax_reduce_order_item_stock () {
global $woocommerce , $wpdb ;
check_ajax_referer ( 'order-item' , 'security' );
$order_id = absint ( $_POST [ 'order_id' ] );
$order_item_ids = $_POST [ 'order_item_ids' ];
$order_item_qty = $_POST [ 'order_item_qty' ];
$order = new WC_Order ( $order_id );
$order_items = $order -> get_items ();
$return = array ();
if ( $order && ! empty ( $order_items ) && sizeof ( $order_item_ids ) > 0 ) {
foreach ( $order_items as $item_id => $order_item ) {
// Only reduce checked items
if ( ! in_array ( $item_id , $order_item_ids ) )
continue ;
$_product = $order -> get_product_from_item ( $order_item );
if ( $_product -> exists () && $_product -> managing_stock () && isset ( $order_item_qty [ $item_id ] ) && $order_item_qty [ $item_id ] > 0 ) {
$old_stock = $_product -> stock ;
$new_quantity = $_product -> reduce_stock ( $order_item_qty [ $item_id ] );
2012-11-12 16:08:05 +00:00
$return [] = sprintf ( __ ( 'Item #%s stock reduced from %s to %s.' , 'woocommerce' ), $order_item [ 'product_id' ], $old_stock , $new_quantity );
$order -> add_order_note ( sprintf ( __ ( 'Item #%s stock reduced from %s to %s.' , 'woocommerce' ), $order_item [ 'product_id' ], $old_stock , $new_quantity ) );
2012-11-12 12:22:35 +00:00
$order -> send_stock_notifications ( $_product , $new_quantity , $order_item_qty [ $item_id ] );
}
}
do_action ( 'woocommerce_reduce_order_stock' , $order );
echo implode ( ', ' , $return );
}
die ();
}
add_action ( 'wp_ajax_woocommerce_reduce_order_item_stock' , 'woocommerce_ajax_reduce_order_item_stock' );
/**
* woocommerce_ajax_increase_order_item_stock function .
*
* @ access public
* @ return void
*/
function woocommerce_ajax_increase_order_item_stock () {
global $woocommerce , $wpdb ;
check_ajax_referer ( 'order-item' , 'security' );
$order_id = absint ( $_POST [ 'order_id' ] );
$order_item_ids = $_POST [ 'order_item_ids' ];
$order_item_qty = $_POST [ 'order_item_qty' ];
$order = new WC_Order ( $order_id );
$order_items = $order -> get_items ();
$return = array ();
if ( $order && ! empty ( $order_items ) && sizeof ( $order_item_ids ) > 0 ) {
foreach ( $order_items as $item_id => $order_item ) {
// Only reduce checked items
if ( ! in_array ( $item_id , $order_item_ids ) )
continue ;
$_product = $order -> get_product_from_item ( $order_item );
if ( $_product -> exists () && $_product -> managing_stock () && isset ( $order_item_qty [ $item_id ] ) && $order_item_qty [ $item_id ] > 0 ) {
$old_stock = $_product -> stock ;
$new_quantity = $_product -> increase_stock ( $order_item_qty [ $item_id ] );
2012-11-12 16:08:05 +00:00
$return [] = sprintf ( __ ( 'Item #%s stock increased from %s to %s.' , 'woocommerce' ), $order_item [ 'product_id' ], $old_stock , $new_quantity );
$order -> add_order_note ( sprintf ( __ ( 'Item #%s stock increased from %s to %s.' , 'woocommerce' ), $order_item [ 'product_id' ], $old_stock , $new_quantity ) );
2012-11-12 12:22:35 +00:00
}
}
do_action ( 'woocommerce_restore_order_stock' , $order );
echo implode ( ', ' , $return );
}
die ();
}
add_action ( 'wp_ajax_woocommerce_increase_order_item_stock' , 'woocommerce_ajax_increase_order_item_stock' );
2012-10-19 14:05:23 +00:00
2012-10-18 17:56:28 +00:00
/**
2012-10-19 17:59:17 +00:00
* woocommerce_ajax_add_order_item_meta function .
2012-10-18 17:56:28 +00:00
*
* @ access public
* @ return void
*/
2012-10-19 17:59:17 +00:00
function woocommerce_ajax_add_order_item_meta () {
2012-10-18 17:56:28 +00:00
global $woocommerce , $wpdb ;
check_ajax_referer ( 'order-item' , 'security' );
2012-10-19 17:59:17 +00:00
$meta_id = woocommerce_add_order_item_meta ( absint ( $_POST [ 'order_item_id' ] ), __ ( 'Name' , 'woocommerce' ), __ ( 'Value' , 'woocommerce' ) );
2012-10-18 17:56:28 +00:00
if ( $meta_id ) {
2012-10-19 14:05:23 +00:00
echo '<tr data-meta_id="' . $meta_id . '"><td><input type="text" name="meta_key[' . $meta_id . ']" value="" /></td><td><input type="text" name="meta_value[' . $meta_id . ']" value="" /></td><td width="1%"><button class="remove_order_item_meta button">×</button></td></tr>' ;
2012-10-18 17:56:28 +00:00
}
die ();
}
2012-10-19 17:59:17 +00:00
add_action ( 'wp_ajax_woocommerce_add_order_item_meta' , 'woocommerce_ajax_add_order_item_meta' );
2012-10-18 17:56:28 +00:00
/**
2012-10-19 17:59:17 +00:00
* woocommerce_ajax_remove_order_item_meta function .
2012-10-18 17:56:28 +00:00
*
* @ access public
* @ return void
*/
2012-10-19 17:59:17 +00:00
function woocommerce_ajax_remove_order_item_meta () {
2012-10-18 17:56:28 +00:00
global $woocommerce , $wpdb ;
check_ajax_referer ( 'order-item' , 'security' );
$meta_id = absint ( $_POST [ 'meta_id' ] );
$wpdb -> query ( $wpdb -> prepare ( " DELETE FROM { $wpdb -> prefix } woocommerce_order_itemmeta WHERE meta_id = %d " , $meta_id ) );
die ();
}
2012-10-19 17:59:17 +00:00
add_action ( 'wp_ajax_woocommerce_remove_order_item_meta' , 'woocommerce_ajax_remove_order_item_meta' );
2012-08-14 16:19:22 +00:00
2012-01-13 21:25:39 +00:00
/**
2012-01-22 15:49:41 +00:00
* Calc line tax
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2012-01-13 21:25:39 +00:00
*/
function woocommerce_calc_line_taxes () {
2012-11-13 14:54:34 +00:00
global $woocommerce , $wpdb ;
2012-01-13 21:25:39 +00:00
check_ajax_referer ( 'calc-totals' , 'security' );
2012-08-01 12:43:46 +00:00
2012-01-27 16:38:39 +00:00
$tax = new WC_Tax ();
2012-08-01 12:43:46 +00:00
2012-11-12 18:53:40 +00:00
$taxes = $tax_rows = $item_taxes = $shipping_taxes = array ();
2012-11-13 14:54:34 +00:00
$order_id = absint ( $_POST [ 'order_id' ] );
2012-06-21 12:06:48 +00:00
$country = strtoupper ( esc_attr ( $_POST [ 'country' ] ) );
$state = strtoupper ( esc_attr ( $_POST [ 'state' ] ) );
$postcode = strtoupper ( esc_attr ( $_POST [ 'postcode' ] ) );
2012-09-23 16:16:39 +00:00
$city = sanitize_title ( esc_attr ( $_POST [ 'city' ] ) );
2012-08-01 12:43:46 +00:00
2012-11-12 18:53:40 +00:00
$items = $_POST [ 'items' ];
$shipping = $_POST [ 'shipping' ];
// Calculate sales tax first
if ( sizeof ( $items ) > 0 ) {
foreach ( $items as $item_id => $item ) {
$item_id = absint ( $item_id );
$line_subtotal = isset ( $item [ 'line_subtotal' ] ) ? esc_attr ( $item [ 'line_subtotal' ] ) : '' ;
$line_total = esc_attr ( $item [ 'line_total' ] );
$tax_class = esc_attr ( $item [ 'tax_class' ] );
if ( ! $item_id || $tax_class == '0' )
continue ;
// Get product details
if ( get_post_type ( $item_id ) == 'product' ) {
$_product = new WC_Product ( $item_id );
$item_tax_status = $_product -> get_tax_status ();
} else {
$item_tax_status = 'taxable' ;
}
// Only calc if taxable
if ( $item_tax_status == 'taxable' ) {
$tax_rates = $tax -> find_rates ( array (
'country' => $country ,
'state' => $state ,
'postcode' => $postcode ,
'city' => $city ,
'tax_class' => $tax_class
) );
$line_subtotal_taxes = $tax -> calc_tax ( $line_subtotal , $tax_rates , false );
$line_taxes = $tax -> calc_tax ( $line_total , $tax_rates , false );
$line_subtotal_tax = rtrim ( rtrim ( number_format ( array_sum ( $line_subtotal_taxes ), 4 , '.' , '' ), '0' ), '.' );
$line_tax = rtrim ( rtrim ( number_format ( array_sum ( $line_taxes ), 4 , '.' , '' ), '0' ), '.' );
if ( $line_subtotal_tax < 0 )
$line_subtotal_tax = 0 ;
if ( $line_tax < 0 )
$line_tax = 0 ;
$item_taxes [ $item_id ] = array (
'line_subtotal_tax' => $line_subtotal_tax ,
'line_tax' => $line_tax
);
// Sum the item taxes
foreach ( array_keys ( $taxes + $line_taxes ) as $key )
$taxes [ $key ] = ( isset ( $line_taxes [ $key ] ) ? $line_taxes [ $key ] : 0 ) + ( isset ( $taxes [ $key ] ) ? $taxes [ $key ] : 0 );
}
}
2012-11-12 14:34:10 +00:00
}
2012-11-12 18:53:40 +00:00
// Now calculate shipping tax
$matched_tax_rates = array ();
$tax_rates = $tax -> find_rates ( array (
'country' => $country ,
'state' => $state ,
'postcode' => $postcode ,
'city' => $city ,
'tax_class' => ''
) );
2012-08-01 12:43:46 +00:00
2012-11-12 18:53:40 +00:00
if ( $tax_rates )
foreach ( $tax_rates as $key => $rate )
if ( isset ( $rate [ 'shipping' ] ) && $rate [ 'shipping' ] == 'yes' )
$matched_tax_rates [ $key ] = $rate ;
$shipping_taxes = $tax -> calc_shipping_tax ( $shipping , $matched_tax_rates );
$shipping_tax = rtrim ( rtrim ( number_format ( array_sum ( $shipping_taxes ), 2 , '.' , '' ), '0' ), '.' );
2012-08-01 12:43:46 +00:00
2012-11-13 14:54:34 +00:00
// Remove old tax rows
$wpdb -> query ( $wpdb -> prepare ( " DELETE FROM { $wpdb -> prefix } woocommerce_order_itemmeta WHERE order_item_id IN ( SELECT order_item_id FROM { $wpdb -> prefix } woocommerce_order_items WHERE order_id = %d AND order_item_type = 'tax' ) " , $order_id ) );
$wpdb -> query ( $wpdb -> prepare ( " DELETE FROM { $wpdb -> prefix } woocommerce_order_items WHERE order_id = %d AND order_item_type = 'tax' " , $order_id ) );
2012-11-12 18:53:40 +00:00
// Now merge to keep tax rows
2012-11-13 14:54:34 +00:00
ob_start ();
2012-11-12 18:53:40 +00:00
foreach ( array_keys ( $taxes + $shipping_taxes ) as $key ) {
2012-08-01 12:43:46 +00:00
2012-11-13 14:54:34 +00:00
$item = array ();
$item [ 'name' ] = $tax -> get_rate_label ( $key );
$item [ 'compound' ] = $tax -> is_compound ( $key ) ? 1 : 0 ;
$item [ 'tax_amount' ] = woocommerce_format_total ( isset ( $taxes [ $key ] ) ? $taxes [ $key ] : 0 );
$item [ 'shipping_tax_amount' ] = woocommerce_format_total ( isset ( $shipping_taxes [ $key ] ) ? $shipping_taxes [ $key ] : 0 );
if ( ! $item [ 'name' ] )
$item [ 'name' ] = $woocommerce -> countries -> tax_or_vat ();
// Add line item
$item_id = woocommerce_add_order_item ( $order_id , array (
'order_item_name' => $item [ 'name' ],
'order_item_type' => 'tax'
) );
// Add line item meta
if ( $item_id ) {
woocommerce_add_order_item_meta ( $item_id , 'compound' , $item [ 'compound' ] );
woocommerce_add_order_item_meta ( $item_id , 'tax_amount' , $item [ 'tax_amount' ] );
woocommerce_add_order_item_meta ( $item_id , 'shipping_tax_amount' , $item [ 'shipping_tax_amount' ] );
}
include ( 'admin/post-types/writepanels/order-tax-html.php' );
2012-11-12 18:53:40 +00:00
}
2012-11-13 14:54:34 +00:00
$tax_row_html = ob_get_clean ();
2012-11-12 18:53:40 +00:00
// Return
2012-06-21 12:06:48 +00:00
echo json_encode ( array (
2012-11-12 18:53:40 +00:00
'item_taxes' => $item_taxes ,
'shipping_tax' => $shipping_tax ,
2012-11-13 14:54:34 +00:00
'tax_row_html' => $tax_row_html
2012-06-21 12:06:48 +00:00
) );
2012-08-01 12:43:46 +00:00
2012-01-14 01:23:16 +00:00
// Quit out
die ();
}
2012-01-13 21:25:39 +00:00
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce_calc_line_taxes' , 'woocommerce_calc_line_taxes' );
2012-11-13 14:54:34 +00:00
/**
* woocommerce_add_line_tax function .
*
* @ access public
* @ return void
*/
function woocommerce_add_line_tax () {
global $woocommerce ;
check_ajax_referer ( 'calc-totals' , 'security' );
$order_id = absint ( $_POST [ 'order_id' ] );
$order = new WC_Order ( $order_id );
// Add line item
$item_id = woocommerce_add_order_item ( $order_id , array (
'order_item_name' => '' ,
'order_item_type' => 'tax'
) );
// Add line item meta
if ( $item_id ) {
woocommerce_add_order_item_meta ( $item_id , 'compound' , '' );
woocommerce_add_order_item_meta ( $item_id , 'tax_amount' , '' );
woocommerce_add_order_item_meta ( $item_id , 'shipping_tax_amount' , '' );
}
include ( 'admin/post-types/writepanels/order-tax-html.php' );
// Quit out
die ();
}
add_action ( 'wp_ajax_woocommerce_add_line_tax' , 'woocommerce_add_line_tax' );
/**
* woocommerce_add_line_tax function .
*
* @ access public
* @ return void
*/
function woocommerce_remove_line_tax () {
global $woocommerce ;
check_ajax_referer ( 'calc-totals' , 'security' );
$tax_row_id = absint ( $_POST [ 'tax_row_id' ] );
woocommerce_delete_order_item ( $tax_row_id );
// Quit out
die ();
}
add_action ( 'wp_ajax_woocommerce_remove_line_tax' , 'woocommerce_remove_line_tax' );
2012-08-14 16:19:22 +00:00
2011-12-09 19:55:09 +00:00
/**
* Add order note via ajax
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2011-12-09 19:55:09 +00:00
*/
function woocommerce_add_order_note () {
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
global $woocommerce ;
check_ajax_referer ( 'add-order-note' , 'security' );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
$post_id = ( int ) $_POST [ 'post_id' ];
2012-06-20 17:19:15 +00:00
$note = wp_kses ( trim ( stripslashes ( $_POST [ 'note' ] ) ), array ( 'a' => array ( 'href' => array (), 'title' => array () ), 'br' => array (), 'em' => array (), 'strong' => array () ) );
2011-12-09 19:55:09 +00:00
$note_type = $_POST [ 'note_type' ];
2012-08-01 12:43:46 +00:00
2012-06-20 17:19:15 +00:00
$is_customer_note = $note_type == 'customer' ? 1 : 0 ;
2012-08-01 12:43:46 +00:00
2012-06-20 17:19:15 +00:00
if ( $post_id > 0 ) {
2012-01-27 16:38:39 +00:00
$order = new WC_Order ( $post_id );
2011-12-09 19:55:09 +00:00
$comment_id = $order -> add_order_note ( $note , $is_customer_note );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
echo '<li rel="' . $comment_id . '" class="note ' ;
if ( $is_customer_note ) echo 'customer-note' ;
echo '"><div class="note_content">' ;
2012-06-20 17:19:15 +00:00
echo wpautop ( wptexturize ( $note ) );
2012-10-16 09:45:33 +00:00
echo '</div><p class="meta"><a href="#" class="delete_note">' . __ ( 'Delete note' , 'woocommerce' ) . '</a></p>' ;
2011-12-09 19:55:09 +00:00
echo '</li>' ;
2012-08-01 12:43:46 +00:00
2012-06-20 17:19:15 +00:00
}
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// Quit out
die ();
}
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce_add_order_note' , 'woocommerce_add_order_note' );
2011-12-09 19:55:09 +00:00
/**
* Delete order note via ajax
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2011-12-09 19:55:09 +00:00
*/
function woocommerce_delete_order_note () {
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
global $woocommerce ;
check_ajax_referer ( 'delete-order-note' , 'security' );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
$note_id = ( int ) $_POST [ 'note_id' ];
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
if ( $note_id > 0 ) :
wp_delete_comment ( $note_id );
endif ;
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
// Quit out
die ();
}
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce_delete_order_note' , 'woocommerce_delete_order_note' );
2012-03-06 15:46:53 +00:00
/**
* Search for products and return json
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ param string $x ( default : '' )
* @ param string $post_types ( default : array ( 'product' ))
* @ return void
2012-03-06 15:46:53 +00:00
*/
2012-03-12 17:26:11 +00:00
function woocommerce_json_search_products ( $x = '' , $post_types = array ( 'product' ) ) {
2012-03-06 15:46:53 +00:00
check_ajax_referer ( 'search-products' , 'security' );
2012-08-01 12:43:46 +00:00
2012-03-06 15:46:53 +00:00
$term = ( string ) urldecode ( stripslashes ( strip_tags ( $_GET [ 'term' ])));
2012-08-01 12:43:46 +00:00
2012-03-06 15:46:53 +00:00
if ( empty ( $term )) die ();
2012-08-01 12:43:46 +00:00
2012-04-16 12:52:28 +00:00
if ( is_numeric ( $term ) ) {
2012-08-01 12:43:46 +00:00
2012-03-06 15:46:53 +00:00
$args = array (
2012-03-12 17:26:11 +00:00
'post_type' => $post_types ,
2012-03-06 15:46:53 +00:00
'post_status' => 'publish' ,
'posts_per_page' => - 1 ,
'post__in' => array ( 0 , $term ),
'fields' => 'ids'
);
2012-08-01 12:43:46 +00:00
2012-04-16 12:52:28 +00:00
$args2 = array (
'post_type' => $post_types ,
'post_status' => 'publish' ,
'posts_per_page' => - 1 ,
'post_parent' => $term ,
'fields' => 'ids'
);
2012-08-01 12:43:46 +00:00
2012-08-03 17:19:35 +00:00
$args3 = array (
'post_type' => $post_types ,
'post_status' => 'publish' ,
'posts_per_page' => - 1 ,
'meta_query' => array (
array (
'key' => '_sku' ,
'value' => $term ,
'compare' => 'LIKE'
)
),
'fields' => 'ids'
);
$posts = array_unique ( array_merge ( get_posts ( $args ), get_posts ( $args2 ), get_posts ( $args3 ) ));
2012-08-01 12:43:46 +00:00
2012-03-06 15:46:53 +00:00
} else {
2012-08-01 12:43:46 +00:00
2012-03-06 15:46:53 +00:00
$args = array (
2012-03-12 17:26:11 +00:00
'post_type' => $post_types ,
2012-03-06 15:46:53 +00:00
'post_status' => 'publish' ,
'posts_per_page' => - 1 ,
's' => $term ,
'fields' => 'ids'
);
2012-08-01 12:43:46 +00:00
2012-03-06 15:46:53 +00:00
$args2 = array (
2012-03-12 17:26:11 +00:00
'post_type' => $post_types ,
2012-03-06 15:46:53 +00:00
'post_status' => 'publish' ,
'posts_per_page' => - 1 ,
'meta_query' => array (
array (
'key' => '_sku' ,
'value' => $term ,
'compare' => 'LIKE'
)
),
'fields' => 'ids'
);
2012-08-01 12:43:46 +00:00
2012-03-06 15:46:53 +00:00
$posts = array_unique ( array_merge ( get_posts ( $args ), get_posts ( $args2 ) ));
2012-08-01 12:43:46 +00:00
2012-03-06 15:46:53 +00:00
}
2012-08-01 12:43:46 +00:00
2012-03-06 15:46:53 +00:00
$found_products = array ();
if ( $posts ) foreach ( $posts as $post ) {
2012-08-01 12:43:46 +00:00
2012-03-06 15:46:53 +00:00
$SKU = get_post_meta ( $post , '_sku' , true );
2012-08-01 12:43:46 +00:00
2012-03-06 15:46:53 +00:00
if ( isset ( $SKU ) && $SKU ) $SKU = ' (SKU: ' . $SKU . ')' ;
2012-08-01 12:43:46 +00:00
2012-04-10 00:39:31 +00:00
$found_products [ $post ] = get_the_title ( $post ) . ' – #' . $post . $SKU ;
2012-08-01 12:43:46 +00:00
2012-03-06 15:46:53 +00:00
}
2012-08-01 12:43:46 +00:00
2012-10-09 13:32:49 +00:00
$found_products = apply_filters ( 'woocommerce_json_search_found_products' , $found_products );
2012-03-06 15:46:53 +00:00
echo json_encode ( $found_products );
2012-08-01 12:43:46 +00:00
2012-03-06 15:46:53 +00:00
die ();
}
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce_json_search_products' , 'woocommerce_json_search_products' );
2012-03-12 17:26:11 +00:00
2012-08-14 16:19:22 +00:00
/**
* Search for product variations and return json
*
* @ access public
* @ return void
* @ see woocommerce_json_search_products ()
*/
function woocommerce_json_search_products_and_variations () {
2012-03-12 17:26:11 +00:00
woocommerce_json_search_products ( '' , array ( 'product' , 'product_variation' ) );
}
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce_json_search_products_and_variations' , 'woocommerce_json_search_products_and_variations' );
2012-07-31 17:26:25 +00:00
/**
* Search for customers and return json
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2012-07-31 17:26:25 +00:00
*/
function woocommerce_json_search_customers () {
check_ajax_referer ( 'search-customers' , 'security' );
2012-08-01 12:43:46 +00:00
2012-07-31 17:26:25 +00:00
$term = urldecode ( stripslashes ( strip_tags ( $_GET [ 'term' ] ) ) );
2012-08-01 12:43:46 +00:00
if ( empty ( $term ) )
2012-07-31 17:26:25 +00:00
die ();
2012-08-01 12:43:46 +00:00
2012-10-16 09:45:33 +00:00
$default = isset ( $_GET [ 'default' ] ) ? $_GET [ 'default' ] : __ ( 'Guest' , 'woocommerce' );
2012-08-01 12:43:46 +00:00
$found_customers = array ( '' => $default );
$customers_query = new WP_User_Query ( array (
2012-07-31 17:26:25 +00:00
'fields' => 'all' ,
2012-08-01 12:43:46 +00:00
'orderby' => 'display_name' ,
2012-07-31 17:26:25 +00:00
'search' => '*' . $term . '*' ,
'search_columns' => array ( 'ID' , 'user_login' , 'user_email' , 'user_nicename' )
) );
2012-08-01 12:43:46 +00:00
2012-07-31 17:26:25 +00:00
$customers = $customers_query -> get_results ();
2012-08-01 12:43:46 +00:00
2012-07-31 17:26:25 +00:00
if ( $customers ) {
foreach ( $customers as $customer ) {
2012-10-16 13:35:17 +00:00
$found_customers [ $customer -> ID ] = $customer -> display_name . ' (#' . $customer -> ID . ' – ' . sanitize_email ( $customer -> user_email ) . ')' ;
2012-07-31 17:26:25 +00:00
}
}
echo json_encode ( $found_customers );
die ();
}
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce_json_search_customers' , 'woocommerce_json_search_customers' );
2012-07-31 17:26:25 +00:00
2011-12-09 19:55:09 +00:00
/**
* Search for products for upsells / crosssells
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2011-12-09 19:55:09 +00:00
*/
function woocommerce_upsell_crosssell_search_products () {
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
check_ajax_referer ( 'search-products' , 'security' );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
$search = ( string ) urldecode ( stripslashes ( strip_tags ( $_POST [ 'search' ])));
$name = ( string ) urldecode ( stripslashes ( strip_tags ( $_POST [ 'name' ])));
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
if ( empty ( $search )) die ();
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
if ( is_numeric ( $search )) :
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
$args = array (
'post_type' => 'product' ,
'post_status' => 'publish' ,
'posts_per_page' => 15 ,
'post__in' => array ( 0 , $search )
);
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
else :
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
$args = array (
'post_type' => 'product' ,
'post_status' => 'publish' ,
'posts_per_page' => 15 ,
's' => $search
);
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
endif ;
2012-08-01 12:43:46 +00:00
2012-04-12 10:25:50 +00:00
$posts = apply_filters ( 'woocommerce_upsell_crosssell_search_products' , get_posts ( $args ));
2012-08-01 12:43:46 +00:00
if ( $posts ) : foreach ( $posts as $post ) :
2011-12-24 16:57:36 +00:00
$SKU = get_post_meta ( $post -> ID , '_sku' , true );
2012-08-01 12:43:46 +00:00
2011-12-08 15:13:15 +00:00
?>
2012-10-16 13:35:17 +00:00
< li rel = " <?php echo $post->ID ; ?> " >< button type = " button " name = " Add " class = " button add_crosssell " title = " Add " >< ? php _e ( 'Cross-sell' , 'woocommerce' ); ?> →</button><button type="button" name="Add" class="button add_upsell" title="Add"><?php _e( 'Up-sell', 'woocommerce' ); ?> →</button><strong><?php echo $post->post_title; ?></strong> – #<?php echo $post->ID; ?> <?php if (isset($SKU) && $SKU) echo 'SKU: '.esc_attr( $SKU ); ?><input type="hidden" class="product_id" value="0" /></li>
2011-12-08 15:13:15 +00:00
< ? php
2012-08-01 12:43:46 +00:00
endforeach ; else :
2012-10-16 09:45:33 +00:00
?> <li><?php _e( 'No products found', 'woocommerce' ); ?></li><?php
2012-08-01 12:43:46 +00:00
endif ;
2011-12-09 19:55:09 +00:00
die ();
}
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce_upsell_crosssell_search_products' , 'woocommerce_upsell_crosssell_search_products' );
2011-12-09 19:55:09 +00:00
/**
* Ajax request handling for categories ordering
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2011-12-09 19:55:09 +00:00
*/
function woocommerce_term_ordering () {
global $wpdb ;
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
$id = ( int ) $_POST [ 'id' ];
$next_id = isset ( $_POST [ 'nextid' ]) && ( int ) $_POST [ 'nextid' ] ? ( int ) $_POST [ 'nextid' ] : null ;
$taxonomy = isset ( $_POST [ 'thetaxonomy' ]) ? esc_attr ( $_POST [ 'thetaxonomy' ] ) : null ;
$term = get_term_by ( 'id' , $id , $taxonomy );
2012-08-01 12:43:46 +00:00
2012-08-14 16:19:22 +00:00
if ( ! $id || ! $term || ! $taxonomy ) die ( 0 );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
woocommerce_order_terms ( $term , $next_id , $taxonomy );
2012-08-01 12:43:46 +00:00
2011-12-09 19:55:09 +00:00
$children = get_terms ( $taxonomy , " child_of= $id &menu_order=ASC&hide_empty=0 " );
2012-08-01 12:43:46 +00:00
2012-08-14 16:19:22 +00:00
if ( $term && sizeof ( $children ) ) {
2011-12-09 19:55:09 +00:00
echo 'children' ;
2012-08-01 12:43:46 +00:00
die ;
2011-12-08 15:13:15 +00:00
}
2011-12-09 19:55:09 +00:00
}
2012-05-08 19:30:18 +00:00
2012-08-14 16:19:22 +00:00
add_action ( 'wp_ajax_woocommerce-term-ordering' , 'woocommerce_term_ordering' );
2012-05-08 19:30:18 +00:00
/**
* Ajax request handling for product ordering
*
* Based on Simple Page Ordering by 10 up ( http :// wordpress . org / extend / plugins / simple - page - ordering / )
2012-08-14 16:19:22 +00:00
*
* @ access public
* @ return void
2012-05-08 19:30:18 +00:00
*/
function woocommerce_product_ordering () {
2012-05-25 11:34:33 +00:00
global $wpdb ;
2012-08-01 12:43:46 +00:00
2012-05-08 19:30:18 +00:00
// check permissions again and make sure we have what we need
2012-11-05 16:50:24 +00:00
if ( ! current_user_can ( 'edit_products' ) || empty ( $_POST [ 'id' ] ) || ( ! isset ( $_POST [ 'previd' ] ) && ! isset ( $_POST [ 'nextid' ] ) ) )
2012-05-08 19:30:18 +00:00
die ( - 1 );
2012-08-01 12:43:46 +00:00
2012-05-08 19:30:18 +00:00
// real post?
if ( ! $post = get_post ( $_POST [ 'id' ] ) )
die ( - 1 );
2012-08-01 12:43:46 +00:00
2012-05-08 19:30:18 +00:00
$previd = isset ( $_POST [ 'previd' ] ) ? $_POST [ 'previd' ] : false ;
$nextid = isset ( $_POST [ 'nextid' ] ) ? $_POST [ 'nextid' ] : false ;
$new_pos = array (); // store new positions for ajax
2012-08-01 12:43:46 +00:00
2012-10-18 13:37:04 +00:00
$siblings = $wpdb -> get_results ( $wpdb -> prepare ( "
SELECT ID , menu_order FROM % s AS posts
2012-05-25 11:34:33 +00:00
WHERE posts . post_type = 'product'
AND posts . post_status IN ( 'publish' , 'pending' , 'draft' , 'future' , 'private' )
2012-10-18 13:37:04 +00:00
AND posts . ID NOT IN ( % s )
2012-10-05 18:02:02 +00:00
ORDER BY posts . menu_order ASC , posts . ID DESC
2012-10-18 13:37:04 +00:00
" ), $wpdb->posts , $post->ID );
2012-08-01 12:43:46 +00:00
2012-05-08 19:30:18 +00:00
$menu_order = 0 ;
2012-08-01 12:43:46 +00:00
2012-05-25 11:34:33 +00:00
foreach ( $siblings as $sibling ) {
2012-08-01 12:43:46 +00:00
2012-05-08 19:30:18 +00:00
// if this is the post that comes after our repositioned post, set our repositioned post position and increment menu order
if ( $nextid == $sibling -> ID ) {
2012-08-01 12:43:46 +00:00
$wpdb -> update (
$wpdb -> posts ,
array (
2012-05-25 11:34:33 +00:00
'menu_order' => $menu_order
2012-08-01 12:43:46 +00:00
),
array ( 'ID' => $post -> ID ),
array ( '%d' ),
array ( '%d' )
2012-05-25 11:34:33 +00:00
);
$new_pos [ $post -> ID ] = $menu_order ;
2012-05-08 19:30:18 +00:00
$menu_order ++ ;
}
2012-08-01 12:43:46 +00:00
2012-05-08 19:30:18 +00:00
// if repositioned post has been set, and new items are already in the right order, we can stop
2012-05-25 11:34:33 +00:00
if ( isset ( $new_pos [ $post -> ID ] ) && $sibling -> menu_order >= $menu_order )
2012-05-08 19:30:18 +00:00
break ;
2012-08-01 12:43:46 +00:00
2012-05-08 19:30:18 +00:00
// set the menu order of the current sibling and increment the menu order
2012-08-01 12:43:46 +00:00
$wpdb -> update (
$wpdb -> posts ,
array (
2012-05-25 11:34:33 +00:00
'menu_order' => $menu_order
2012-08-01 12:43:46 +00:00
),
array ( 'ID' => $sibling -> ID ),
array ( '%d' ),
array ( '%d' )
2012-05-25 11:34:33 +00:00
);
$new_pos [ $sibling -> ID ] = $menu_order ;
2012-05-08 19:30:18 +00:00
$menu_order ++ ;
2012-08-01 12:43:46 +00:00
2012-05-08 19:30:18 +00:00
if ( ! $nextid && $previd == $sibling -> ID ) {
2012-08-01 12:43:46 +00:00
$wpdb -> update (
$wpdb -> posts ,
array (
2012-05-25 11:34:33 +00:00
'menu_order' => $menu_order
2012-08-01 12:43:46 +00:00
),
array ( 'ID' => $post -> ID ),
array ( '%d' ),
array ( '%d' )
2012-05-25 11:34:33 +00:00
);
2012-05-08 19:30:18 +00:00
$new_pos [ $post -> ID ] = $menu_order ;
$menu_order ++ ;
}
2012-08-01 12:43:46 +00:00
2012-05-25 11:34:33 +00:00
}
2012-08-01 12:43:46 +00:00
2012-05-25 11:34:33 +00:00
die ( json_encode ( $new_pos ) );
2012-05-08 19:30:18 +00:00
}
2012-08-14 16:19:22 +00:00
2012-10-04 17:09:18 +00:00
add_action ( 'wp_ajax_woocommerce_product_ordering' , 'woocommerce_product_ordering' );
/**
* woocommerce_product_images_box_upload function .
*
* @ access public
* @ return void
*/
function woocommerce_product_images_box_upload () {
check_ajax_referer ( 'product-images-box-upload' );
// Get posted data
2012-10-05 18:02:02 +00:00
$file = $_FILES [ 'async-upload' ];
$post_id = absint ( $_POST [ 'post_id' ] );
// Get size
$attachments =& get_children ( 'post_parent=' . $post_id . '&numberposts=-1&post_type=attachment&post_mime_type=image' );
$gallery_size = absint ( sizeof ( $attachments ) );
2012-10-04 17:09:18 +00:00
// Upload
$upload = wp_handle_upload ( $file , array ( 'test_form' => false ) );
if ( ! isset ( $upload [ 'error' ] ) && isset ( $upload [ 'file' ] ) ) {
// Create attachment
require_once ( ABSPATH . 'wp-admin/includes/image.php' );
$attachment_id = wp_insert_attachment ( array (
'post_mime_type' => $upload [ 'type' ],
'post_title' => preg_replace ( '/\.[^.]+$/' , '' , basename ( $upload [ 'file' ] ) ),
'post_content' => '' ,
2012-10-05 18:02:02 +00:00
'post_status' => 'inherit' ,
'menu_order' => ( $gallery_size + 1 )
2012-10-04 17:09:18 +00:00
), $upload [ 'file' ], $post_id );
$attachment_data = wp_generate_attachment_metadata ( $attachment_id , $upload [ 'file' ] );
wp_update_attachment_metadata ( $attachment_id , $attachment_data );
// Return the result
$image = wp_get_attachment_image_src ( $attachment_id , 'full' );
$result = array (
'src' => $image [ 0 ],
2012-10-05 18:02:02 +00:00
'post_id' => $attachment_id ,
'edit_url' => admin_url ( 'media-upload.php?post_id=' . $post_id . '&attachment_id=' . $attachment_id . '&tab=library&width=640&height=553&TB_iframe=1' )
2012-10-04 17:09:18 +00:00
);
} else {
$result = array (
'error' => $upload [ 'error' ]
);
}
echo json_encode ( $result );
die ();
}
add_action ( 'wp_ajax_woocommerce_product_images_box_upload' , 'woocommerce_product_images_box_upload' );
/**
* woocommerce_product_image_ordering function .
*
* @ access public
* @ return void
*/
function woocommerce_product_image_ordering () {
check_ajax_referer ( 'product-image-ordering' );
$post_id = isset ( $_POST [ 'post_id' ] ) ? absint ( $_POST [ 'post_id' ] ) : false ;
$attachment_id = isset ( $_POST [ 'attachment_id' ] ) ? absint ( $_POST [ 'attachment_id' ] ) : false ;
$prev_attachment_id = isset ( $_POST [ 'prev_attachment_id' ] ) ? absint ( $_POST [ 'prev_attachment_id' ] ) : false ;
$next_attachment_id = isset ( $_POST [ 'next_attachment_id' ] ) ? absint ( $_POST [ 'next_attachment_id' ] ) : false ;
if ( ! $post_id || ! $attachment_id )
die ( - 1 );
$siblings = get_children ( 'post_parent=' . $post_id . '&numberposts=-1&post_type=attachment&orderby=menu_order&order=ASC&post_mime_type=image' );
$new_positions = array (); // store new positions for ajax
2012-10-05 18:02:02 +00:00
$menu_order = 1 ;
2012-10-04 17:09:18 +00:00
foreach ( $siblings as $sibling_id => $sibling ) {
if ( $sibling_id == $attachment_id )
continue ;
// if this is the post that comes after our repositioned post, set our repositioned post position and increment menu order
if ( $next_attachment_id && $next_attachment_id == $sibling_id ) {
$attachment = array ();
$attachment [ 'ID' ] = $attachment_id ;
$attachment [ 'menu_order' ] = $menu_order ;
wp_update_post ( $attachment );
$new_positions [ $attachment_id ] = $menu_order ;
$menu_order ++ ;
}
// if repositioned post has been set, and new items are already in the right order, we can stop
if ( isset ( $new_positions [ $attachment_id ] ) && $sibling -> menu_order >= $menu_order )
break ;
// set the menu order of the current sibling and increment the menu order
$attachment = array ();
$attachment [ 'ID' ] = $sibling_id ;
$attachment [ 'menu_order' ] = $menu_order ;
wp_update_post ( $attachment );
$new_positions [ $sibling_id ] = $menu_order ;
$menu_order ++ ;
if ( ! $next_attachment_id && $prev_attachment_id == $sibling_id ) {
$attachment = array ();
$attachment [ 'ID' ] = $attachment_id ;
$attachment [ 'menu_order' ] = $menu_order ;
wp_update_post ( $attachment );
$new_positions [ $attachment_id ] = $menu_order ;
$menu_order ++ ;
}
}
2012-10-04 17:33:35 +00:00
// Set featured image
$new_positions = array_flip ( $new_positions );
2012-10-05 18:02:02 +00:00
if ( isset ( $new_positions [ 1 ] ) )
update_post_meta ( $post_id , '_thumbnail_id' , $new_positions [ 1 ] );
2012-10-04 17:33:35 +00:00
2012-10-04 17:09:18 +00:00
die ();
}
add_action ( 'wp_ajax_woocommerce_product_image_ordering' , 'woocommerce_product_image_ordering' );
2012-10-05 18:02:02 +00:00
/**
* woocommerce_product_image_delete function .
*
* @ access public
* @ return void
*/
function woocommerce_product_image_delete () {
check_ajax_referer ( 'product-image-delete' );
$post_id = isset ( $_POST [ 'post_id' ] ) ? absint ( $_POST [ 'post_id' ] ) : false ;
$attachment_id = isset ( $_POST [ 'attachment_id' ] ) ? absint ( $_POST [ 'attachment_id' ] ) : false ;
if ( ! $post_id || ! $attachment_id )
die ( - 1 );
wp_delete_attachment ( $attachment_id );
$thumbnail_id = get_post_thumbnail_id ( $post_id );
if ( $thumbnail_id == $attachment_id ) {
$attachments = get_children ( 'post_parent=' . $post_id . '&numberposts=1&post_type=attachment&orderby=menu_order&order=ASC&post_mime_type=image' );
foreach ( $attachments as $attachment_id => $attachment ) {
update_post_meta ( $post_id , '_thumbnail_id' , $attachment_id );
}
}
die ();
}
add_action ( 'wp_ajax_woocommerce_product_image_delete' , 'woocommerce_product_image_delete' );
/**
* woocommerce_product_image_refresh function .
*
* @ access public
* @ return void
*/
function woocommerce_product_image_refresh () {
check_ajax_referer ( 'product-image-refresh' );
$post_id = isset ( $_POST [ 'post_id' ] ) ? absint ( $_POST [ 'post_id' ] ) : false ;
if ( ! $post_id )
die ();
?>
< ul class = " product_images " >
< ? php
$thumbnail_id = get_post_thumbnail_id ( $post_id );
if ( $thumbnail_id )
echo '<li class="image" data-post_id="' . $thumbnail_id . ' " >
' . wp_get_attachment_image( $thumbnail_id, ' full ' ) . '
< span class = " loading " ></ span >
< ul class = " actions " >
< li >< a href = " # " class = " delete " > ' . __( ' Delete ', ' woocommerce ' ) . ' </ a ></ li >
< li >< a href = " ' . admin_url( 'media-upload.php?post_id=' . $post_id . '&attachment_id=' . $thumbnail_id . '&tab=library&width=640&height=553&TB_iframe=1' ) . ' " class = " view thickbox " onclick = " return false; " > ' . __( ' View ', ' woocommerce ' ) . ' </ a ></ li >
</ ul >
</ li > ' ;
$attachments =& get_children ( 'post_parent=' . $post_id . '&numberposts=-1&post_type=attachment&orderby=menu_order&order=ASC&post_mime_type=image' );
foreach ( $attachments as $attachment_id => $attachment ) {
if ( $thumbnail_id == $attachment_id )
continue ;
$exclude_class = get_post_meta ( $attachment_id , '_woocommerce_exclude_image' , true ) == 1 ? 'excluded' : '' ;
echo '<li class="image ' . $exclude_class . '" data-post_id="' . $attachment_id . ' " >
' . wp_get_attachment_image( $attachment_id, ' full ' ) . '
< span class = " loading " ></ span >
< ul class = " actions " >
< li >< a href = " # " class = " delete " > ' . __( ' Delete ', ' woocommerce ' ) . ' </ a ></ li >
< li >< a href = " ' . admin_url( 'media-upload.php?post_id=' . $post_id . '&attachment_id=' . $attachment_id . '&tab=library&width=640&height=553&TB_iframe=1' ) . ' " class = " view thickbox " onclick = " return false; " > ' . __( ' View ', ' woocommerce ' ) . ' </ a ></ li >
</ ul >
</ li > ' ;
}
?>
</ ul >
< ? php
die ();
}
add_action ( 'wp_ajax_woocommerce_product_image_refresh' , 'woocommerce_product_image_refresh' );