woocommerce/includes/updates/woocommerce-update-2.0.php

316 lines
11 KiB
PHP
Raw Normal View History

2012-10-18 09:33:02 +00:00
<?php
/**
2012-12-03 19:19:58 +00:00
* Update WC to 2.0
2012-10-18 09:33:02 +00:00
*
* @author WooThemes
* @category Admin
* @package WooCommerce/Admin/Updates
2012-12-03 19:19:58 +00:00
* @version 2.0.0
2012-10-18 09:33:02 +00:00
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
global $wpdb, $woocommerce;
// Upgrade old style files paths to support multiple file paths
2013-03-19 21:33:12 +00:00
$existing_file_paths = $wpdb->get_results( "SELECT * FROM {$wpdb->postmeta} WHERE meta_key = '_file_path' AND meta_value != '';" );
2012-10-18 09:33:02 +00:00
if ( $existing_file_paths ) {
2012-11-27 16:22:47 +00:00
2012-10-18 09:33:02 +00:00
foreach( $existing_file_paths as $existing_file_path ) {
2012-11-27 16:22:47 +00:00
2012-12-05 15:24:39 +00:00
$old_file_path = trim( $existing_file_path->meta_value );
2012-11-27 16:22:47 +00:00
2012-12-05 15:24:39 +00:00
if ( ! empty( $old_file_path ) ) {
2013-03-19 21:33:12 +00:00
$file_paths = serialize( array( md5( $old_file_path ) => $old_file_path ) );
2012-11-27 16:22:47 +00:00
2012-12-05 15:24:39 +00:00
$wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->postmeta} SET meta_key = '_file_paths', meta_value = %s WHERE meta_id = %d", $file_paths, $existing_file_path->meta_id ) );
2012-12-05 15:24:39 +00:00
$wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->prefix}woocommerce_downloadable_product_permissions SET download_id = %s WHERE product_id = %d", md5( $old_file_path ), $existing_file_path->post_id ) );
2012-11-27 16:22:47 +00:00
2012-12-05 15:24:39 +00:00
}
}
2012-10-18 09:33:02 +00:00
}
// Update table primary keys
$wpdb->query( "ALTER TABLE {$wpdb->prefix}woocommerce_downloadable_product_permissions DROP PRIMARY KEY" );
2012-10-18 09:33:02 +00:00
$wpdb->query( "ALTER TABLE {$wpdb->prefix}woocommerce_downloadable_product_permissions ADD PRIMARY KEY ( `product_id` , `order_id` , `order_key` , `download_id` )" );
2012-10-18 09:33:02 +00:00
// Setup default permalinks if shop page is defined
$permalinks = get_option( 'woocommerce_permalinks' );
$shop_page_id = woocommerce_get_page_id( 'shop' );
if ( empty( $permalinks ) && $shop_page_id > 0 ) {
$base_slug = $shop_page_id > 0 && get_page( $shop_page_id ) ? get_page_uri( $shop_page_id ) : 'shop';
2012-11-27 16:22:47 +00:00
2012-10-18 09:33:02 +00:00
$category_base = get_option('woocommerce_prepend_shop_page_to_urls') == "yes" ? trailingslashit( $base_slug ) : '';
$category_slug = get_option('woocommerce_product_category_slug') ? get_option('woocommerce_product_category_slug') : _x( 'product-category', 'slug', 'woocommerce' );
$tag_slug = get_option('woocommerce_product_tag_slug') ? get_option('woocommerce_product_tag_slug') : _x( 'product-tag', 'slug', 'woocommerce' );
2012-11-27 16:22:47 +00:00
2012-10-18 09:33:02 +00:00
if ( 'yes' == get_option('woocommerce_prepend_shop_page_to_products') ) {
$product_base = trailingslashit( $base_slug );
} else {
if ( ( $product_slug = get_option('woocommerce_product_slug') ) !== false && ! empty( $product_slug ) ) {
$product_base = trailingslashit( $product_slug );
} else {
$product_base = trailingslashit( _x('product', 'slug', 'woocommerce') );
}
}
2012-11-27 16:22:47 +00:00
if ( get_option('woocommerce_prepend_category_to_products') == 'yes' )
2012-10-18 09:33:02 +00:00
$product_base .= trailingslashit('%product_cat%');
$permalinks = array(
'product_base' => untrailingslashit( $product_base ),
'category_base' => untrailingslashit( $category_base . $category_slug ),
'attribute_base' => untrailingslashit( $category_base ),
'tag_base' => untrailingslashit( $category_base . $tag_slug )
);
2012-11-27 16:22:47 +00:00
update_option( 'woocommerce_permalinks', $permalinks );
2012-10-18 13:47:21 +00:00
}
// Update subcat display settings
if ( get_option( 'woocommerce_shop_show_subcategories' ) == 'yes' ) {
if ( get_option( 'woocommerce_hide_products_when_showing_subcategories' ) == 'yes' ) {
update_option( 'woocommerce_shop_page_display', 'subcategories' );
} else {
update_option( 'woocommerce_shop_page_display', 'both' );
}
}
if ( get_option( 'woocommerce_show_subcategories' ) == 'yes' ) {
if ( get_option( 'woocommerce_hide_products_when_showing_subcategories' ) == 'yes' ) {
update_option( 'woocommerce_category_archive_display', 'subcategories' );
} else {
update_option( 'woocommerce_category_archive_display', 'both' );
}
}
2012-11-30 15:11:10 +00:00
// Update tax rates
$loop = 0;
$tax_rates = get_option( 'woocommerce_tax_rates' );
2012-12-05 15:29:49 +00:00
if ( $tax_rates )
foreach ( $tax_rates as $tax_rate ) {
foreach ( $tax_rate['countries'] as $country => $states ) {
$states = array_reverse( $states );
foreach ( $states as $state ) {
if ( $state == '*' )
$state = '';
$wpdb->insert(
$wpdb->prefix . "woocommerce_tax_rates",
array(
'tax_rate_country' => $country,
'tax_rate_state' => $state,
'tax_rate' => $tax_rate['rate'],
'tax_rate_name' => $tax_rate['label'],
'tax_rate_priority' => 1,
'tax_rate_compound' => $tax_rate['compound'] == 'yes' ? 1 : 0,
'tax_rate_shipping' => $tax_rate['shipping'] == 'yes' ? 1 : 0,
'tax_rate_order' => $loop,
'tax_rate_class' => $tax_rate['class']
)
);
$loop++;
}
2012-11-30 15:11:10 +00:00
}
}
$local_tax_rates = get_option( 'woocommerce_local_tax_rates' );
2012-12-05 15:29:49 +00:00
if ( $local_tax_rates )
foreach ( $local_tax_rates as $tax_rate ) {
2012-11-30 15:11:10 +00:00
2012-12-05 15:29:49 +00:00
$location_type = $tax_rate['location_type'] == 'postcode' ? 'postcode' : 'city';
2012-11-30 15:11:10 +00:00
2012-12-05 15:29:49 +00:00
if ( $tax_rate['state'] == '*' )
$tax_rate['state'] = '';
2012-11-30 15:11:10 +00:00
$wpdb->insert(
2012-12-05 15:29:49 +00:00
$wpdb->prefix . "woocommerce_tax_rates",
2012-11-30 15:11:10 +00:00
array(
2012-12-05 15:29:49 +00:00
'tax_rate_country' => $tax_rate['country'],
'tax_rate_state' => $tax_rate['state'],
'tax_rate' => $tax_rate['rate'],
'tax_rate_name' => $tax_rate['label'],
'tax_rate_priority' => 2,
'tax_rate_compound' => $tax_rate['compound'] == 'yes' ? 1 : 0,
'tax_rate_shipping' => $tax_rate['shipping'] == 'yes' ? 1 : 0,
'tax_rate_order' => $loop,
'tax_rate_class' => $tax_rate['class']
2012-11-30 15:11:10 +00:00
)
);
2012-12-05 15:29:49 +00:00
$tax_rate_id = $wpdb->insert_id;
2012-11-30 15:11:10 +00:00
if ( $tax_rate['locations'] ) {
foreach ( $tax_rate['locations'] as $location ) {
2012-12-05 15:29:49 +00:00
$wpdb->insert(
$wpdb->prefix . "woocommerce_tax_rate_locations",
array(
'location_code' => $location,
'tax_rate_id' => $tax_rate_id,
'location_type' => $location_type,
)
);
2012-12-05 15:29:49 +00:00
}
2012-12-05 15:29:49 +00:00
}
$loop++;
}
2012-11-30 15:11:10 +00:00
update_option( 'woocommerce_tax_rates_backup', $tax_rates );
update_option( 'woocommerce_local_tax_rates_backup', $local_tax_rates );
delete_option( 'woocommerce_tax_rates' );
delete_option( 'woocommerce_local_tax_rates' );
2012-10-18 13:47:21 +00:00
// Now its time for the massive update to line items - move them to the new DB tables
// Reverse with UPDATE `wpwc_postmeta` SET meta_key = '_order_items' WHERE meta_key = '_order_items_old'
$order_item_rows = $wpdb->get_results( "
2012-10-18 13:47:21 +00:00
SELECT * FROM {$wpdb->postmeta}
WHERE meta_key = '_order_items'
" );
2012-10-18 13:47:21 +00:00
foreach ( $order_item_rows as $order_item_row ) {
2012-11-27 16:22:47 +00:00
2012-10-18 13:47:21 +00:00
$order_items = (array) maybe_unserialize( $order_item_row->meta_value );
2012-11-27 16:22:47 +00:00
2012-10-18 13:47:21 +00:00
foreach ( $order_items as $order_item ) {
2012-11-27 16:22:47 +00:00
2012-10-18 13:47:21 +00:00
if ( ! isset( $order_item['line_total'] ) && isset( $order_item['taxrate'] ) && isset( $order_item['cost'] ) ) {
$order_item['line_tax'] = number_format( ( $order_item['cost'] * $order_item['qty'] ) * ( $order_item['taxrate'] / 100 ), 2, '.', '' );
$order_item['line_total'] = $order_item['cost'] * $order_item['qty'];
$order_item['line_subtotal_tax'] = $order_item['line_tax'];
$order_item['line_subtotal'] = $order_item['line_total'];
}
2012-11-27 16:22:47 +00:00
2012-10-18 13:47:21 +00:00
$order_item['line_tax'] = isset( $order_item['line_tax'] ) ? $order_item['line_tax'] : 0;
$order_item['line_total'] = isset( $order_item['line_total'] ) ? $order_item['line_total'] : 0;
$order_item['line_subtotal_tax'] = isset( $order_item['line_subtotal_tax'] ) ? $order_item['line_subtotal_tax'] : 0;
$order_item['line_subtotal'] = isset( $order_item['line_subtotal'] ) ? $order_item['line_subtotal'] : 0;
2012-11-27 16:22:47 +00:00
$item_id = woocommerce_add_order_item( $order_item_row->post_id, array(
'order_item_name' => $order_item['name'],
'order_item_type' => 'line_item'
) );
2012-11-27 16:22:47 +00:00
// Add line item meta
if ( $item_id ) {
woocommerce_add_order_item_meta( $item_id, '_qty', absint( $order_item['qty'] ) );
woocommerce_add_order_item_meta( $item_id, '_tax_class', $order_item['tax_class'] );
woocommerce_add_order_item_meta( $item_id, '_product_id', $order_item['id'] );
woocommerce_add_order_item_meta( $item_id, '_variation_id', $order_item['variation_id'] );
woocommerce_add_order_item_meta( $item_id, '_line_subtotal', wc_format_decimal( $order_item['line_subtotal'] ) );
woocommerce_add_order_item_meta( $item_id, '_line_subtotal_tax', wc_format_decimal( $order_item['line_subtotal_tax'] ) );
woocommerce_add_order_item_meta( $item_id, '_line_total', wc_format_decimal( $order_item['line_total'] ) );
woocommerce_add_order_item_meta( $item_id, '_line_tax', wc_format_decimal( $order_item['line_tax'] ) );
2012-11-27 16:22:47 +00:00
$meta_rows = array();
2012-11-27 16:22:47 +00:00
2012-10-18 13:47:21 +00:00
// Insert meta
if ( ! empty( $order_item['item_meta'] ) ) {
foreach ( $order_item['item_meta'] as $key => $meta ) {
// Backwards compatibility
if ( is_array( $meta ) && isset( $meta['meta_name'] ) ) {
$meta_rows[] = '(' . $item_id . ',"' . esc_sql( $meta['meta_name'] ) . '","' . esc_sql( $meta['meta_value'] ) . '")';
2012-10-18 13:47:21 +00:00
} else {
$meta_rows[] = '(' . $item_id . ',"' . esc_sql( $key ) . '","' . esc_sql( $meta ) . '")';
2012-10-18 13:47:21 +00:00
}
}
}
2012-11-27 16:22:47 +00:00
2012-10-18 13:47:21 +00:00
// Insert meta rows at once
if ( sizeof( $meta_rows ) > 0 ) {
$wpdb->query( $wpdb->prepare( "
INSERT INTO {$wpdb->prefix}woocommerce_order_itemmeta ( order_item_id, meta_key, meta_value )
2012-10-18 13:47:21 +00:00
VALUES " . implode( ',', $meta_rows ) . ";
", $order_item_row->post_id ) );
}
2012-11-27 16:22:47 +00:00
2012-10-18 13:47:21 +00:00
// Delete from DB (rename)
$wpdb->query( $wpdb->prepare( "
UPDATE {$wpdb->postmeta}
SET meta_key = '_order_items_old'
WHERE meta_key = '_order_items'
AND post_id = %d
", $order_item_row->post_id ) );
}
2012-11-27 16:22:47 +00:00
2012-10-18 13:47:21 +00:00
unset( $meta_rows, $item_id, $order_item );
}
2012-11-13 15:22:06 +00:00
}
// Do the same kind of update for order_taxes - move to lines
// Reverse with UPDATE `wpwc_postmeta` SET meta_key = '_order_taxes' WHERE meta_key = '_order_taxes_old'
$order_tax_rows = $wpdb->get_results( "
2012-11-13 15:22:06 +00:00
SELECT * FROM {$wpdb->postmeta}
WHERE meta_key = '_order_taxes'
" );
2012-11-13 15:22:06 +00:00
foreach ( $order_tax_rows as $order_tax_row ) {
2012-11-27 16:22:47 +00:00
2012-11-13 15:22:06 +00:00
$order_taxes = (array) maybe_unserialize( $order_tax_row->meta_value );
2012-11-27 16:22:47 +00:00
2012-11-13 15:22:06 +00:00
if ( $order_taxes ) {
foreach( $order_taxes as $order_tax ) {
2012-11-27 16:22:47 +00:00
2012-11-14 11:27:20 +00:00
if ( ! isset( $order_tax['label'] ) || ! isset( $order_tax['cart_tax'] ) || ! isset( $order_tax['shipping_tax'] ) )
continue;
2012-11-27 16:22:47 +00:00
2012-11-13 15:22:06 +00:00
$item_id = woocommerce_add_order_item( $order_tax_row->post_id, array(
'order_item_name' => $order_tax['label'],
'order_item_type' => 'tax'
) );
2012-11-27 16:22:47 +00:00
2012-11-13 15:22:06 +00:00
// Add line item meta
if ( $item_id ) {
2012-11-14 11:27:20 +00:00
woocommerce_add_order_item_meta( $item_id, 'compound', absint( isset( $order_tax['compound'] ) ? $order_tax['compound'] : 0 ) );
woocommerce_add_order_item_meta( $item_id, 'tax_amount', wc_clean( $order_tax['cart_tax'] ) );
woocommerce_add_order_item_meta( $item_id, 'shipping_tax_amount', wc_clean( $order_tax['shipping_tax'] ) );
2012-11-13 15:22:06 +00:00
}
2012-11-27 16:22:47 +00:00
2012-11-13 15:22:06 +00:00
// Delete from DB (rename)
$wpdb->query( $wpdb->prepare( "
UPDATE {$wpdb->postmeta}
SET meta_key = '_order_taxes_old'
WHERE meta_key = '_order_taxes'
AND post_id = %d
", $order_tax_row->post_id ) );
2012-11-27 16:22:47 +00:00
2012-11-13 15:22:06 +00:00
unset( $tax_amount );
}
}
}
// Grab the pre 2.0 Image options and use to populate the new image options settings,
// cleaning up afterwards like nice people do
foreach ( array( 'catalog', 'single', 'thumbnail' ) as $value ) {
$old_settings = array_filter( array(
'width' => get_option( 'woocommerce_' . $value . '_image_width' ),
'height' => get_option( 'woocommerce_' . $value . '_image_height' ),
'crop' => get_option( 'woocommerce_' . $value . '_image_crop' )
) );
if ( ! empty( $old_settings ) && update_option( 'shop_' . $value . '_image_size', $old_settings ) ){
2013-03-19 21:33:12 +00:00
delete_option( 'woocommerce_' . $value . '_image_width' );
delete_option( 'woocommerce_' . $value . '_image_height' );
delete_option( 'woocommerce_' . $value . '_image_crop' );
2013-03-19 21:33:12 +00:00
}
}