2017-05-01 21:30:45 +00:00
< ? php
if ( ! defined ( 'ABSPATH' ) ) {
exit ;
}
if ( ! class_exists ( 'WP_Importer' ) ) {
return ;
}
/**
* Product importer - import products into WooCommerce .
*
* @ author Automattic
* @ category Admin
* @ package WooCommerce / Admin / Importers
* @ version 3.1 . 0
*/
2017-05-16 04:02:46 +00:00
class WC_Product_WP_Importer extends WP_Importer {
2017-05-01 21:30:45 +00:00
/**
* The current file id .
*
* @ var int
*/
public $id ;
/**
* The current file url .
*
* @ var string
*/
public $file_url ;
/**
* The current import page .
*
* @ var string
*/
public $import_page ;
/**
* The current delimiter .
*
* @ var string
*/
public $delimiter ;
/**
* Constructor .
*/
public function __construct () {
$this -> import_page = 'woocommerce_product_csv' ;
2017-05-10 20:56:00 +00:00
$this -> delimiter = empty ( $_REQUEST [ 'delimiter' ] ) ? ',' : ( string ) wc_clean ( $_REQUEST [ 'delimiter' ] );
2017-05-01 21:30:45 +00:00
}
/**
* Registered callback function for the WordPress Importer .
*
* Manages the three separate stages of the CSV import process .
*/
public function dispatch () {
2017-05-15 22:49:53 +00:00
include_once ( WC_ABSPATH . 'includes/import/class-wc-product-csv-importer.php' );
2017-05-01 21:30:45 +00:00
$this -> header ();
$step = empty ( $_GET [ 'step' ] ) ? 0 : ( int ) $_GET [ 'step' ];
switch ( $step ) {
case 0 :
$this -> greet ();
break ;
2017-05-10 20:15:28 +00:00
case 1 :
2017-05-01 21:30:45 +00:00
check_admin_referer ( 'import-upload' );
if ( $this -> handle_upload () ) {
2017-05-10 20:15:28 +00:00
if ( $this -> id ) {
$file = get_attached_file ( $this -> id );
} else {
$file = ABSPATH . $this -> file_url ;
}
$this -> importer_mapping ( $file );
}
break ;
case 2 :
check_admin_referer ( 'woocommerce-csv-importer' );
2017-05-10 20:56:00 +00:00
$file = null ;
$this -> id = isset ( $_REQUEST [ 'file_id' ] ) ? absint ( $_REQUEST [ 'file_id' ] ) : '' ;
$this -> file_url = isset ( $_REQUEST [ 'file_url' ] ) ? sanitize_text_field ( $_REQUEST [ 'file_url' ] ) : '' ;
if ( $this -> id ) {
$file = get_attached_file ( $this -> id );
} elseif ( $this -> file_url ) {
$file = ABSPATH . $this -> file_url ;
}
2017-05-01 21:30:45 +00:00
2017-05-10 20:56:00 +00:00
$this -> import ( $file );
2017-05-01 21:30:45 +00:00
break ;
}
$this -> footer ();
}
/**
* Import is starting .
*/
private function import_start () {
if ( function_exists ( 'gc_enable' ) ) {
gc_enable ();
}
wc_set_time_limit ( 0 );
@ ob_flush ();
@ flush ();
@ ini_set ( 'auto_detect_line_endings' , '1' );
}
/**
* Import the file if it exists and is valid .
*
* @ param mixed $file
*/
public function import ( $file ) {
if ( ! is_file ( $file ) ) {
$this -> import_error ( __ ( 'The file does not exist, please try again.' , 'woocommerce' ) );
}
$this -> import_start ();
2017-05-10 20:15:28 +00:00
$args = array ( 'parse' => true );
if ( ! empty ( $_POST [ 'map_to' ] ) ) {
$args [ 'mapping' ] = wp_unslash ( $_POST [ 'map_to' ] );
}
2017-05-15 22:49:53 +00:00
$importer = $this -> get_importer ( $file , $args );
$data = $importer -> import ();
2017-05-15 23:41:19 +00:00
$imported = count ( $data [ 'imported' ] );
$failed = count ( $data [ 'failed' ] );
2017-05-15 22:49:53 +00:00
2017-05-15 23:41:19 +00:00
$results = sprintf (
/* translators: %d: products count */
_n ( 'Imported %s product.' , 'Imported %s products.' , $imported , 'woocommerce' ),
'<strong>' . number_format_i18n ( $imported ) . '</strong>'
2017-05-01 21:30:45 +00:00
);
2017-05-15 23:41:19 +00:00
// @todo create a view to display errors or log with WC_Logger.
if ( 0 < $failed ) {
$results .= ' ' . sprintf (
/* translators: %d: products count */
_n ( 'Failed %s product.' , 'Failed %s products.' , $failed , 'woocommerce' ),
'<strong>' . number_format_i18n ( $failed ) . '</strong>'
);
}
// Show result.
echo '<div class="updated settings-error"><p>' ;
/* translators: %d: import results */
printf ( __ ( 'Import complete: %s' , 'woocommerce' ), $results );
2017-05-01 21:30:45 +00:00
echo '</p></div>' ;
$this -> import_end ();
}
/**
* Performs post - import cleanup of files and the cache .
*/
public function import_end () {
echo '<p>' . __ ( 'All done!' , 'woocommerce' ) . ' <a href="' . admin_url ( 'edit.php?post_type=product' ) . '">' . __ ( 'View products' , 'woocommerce' ) . '</a>' . '</p>' ;
do_action ( 'import_end' );
}
/**
* Handles the CSV upload and initial parsing of the file to prepare for .
* displaying author import options .
*
* @ return bool False if error uploading or invalid file , true otherwise
*/
public function handle_upload () {
if ( empty ( $_POST [ 'file_url' ] ) ) {
$file = wp_import_handle_upload ();
if ( isset ( $file [ 'error' ] ) ) {
$this -> import_error ( $file [ 'error' ] );
}
$this -> id = absint ( $file [ 'id' ] );
} elseif ( file_exists ( ABSPATH . $_POST [ 'file_url' ] ) ) {
$this -> file_url = esc_attr ( $_POST [ 'file_url' ] );
} else {
$this -> import_error ();
}
return true ;
}
/**
* Output header html .
*/
public function header () {
echo '<div class="wrap">' ;
echo '<h1>' . __ ( 'Import products' , 'woocommerce' ) . '</h1>' ;
}
/**
* Output footer html .
*/
public function footer () {
echo '</div>' ;
}
/**
* Output information about the uploading process .
*/
public function greet () {
echo '<div class="narrow">' ;
echo '<p>' . __ ( 'Hi there! Upload a CSV file containing products to import them into your shop. Choose a .csv file to upload, then click "Upload file and import".' , 'woocommerce' ) . '</p>' ;
$action = 'admin.php?import=woocommerce_product_csv&step=1' ;
$bytes = apply_filters ( 'import_upload_size_limit' , wp_max_upload_size () );
$size = size_format ( $bytes );
$upload_dir = wp_upload_dir ();
if ( ! empty ( $upload_dir [ 'error' ] ) ) :
?> <div class="error"><p><?php _e( 'Before you can upload your import file, you will need to fix the following error:', 'woocommerce' ); ?></p>
< p >< strong >< ? php echo $upload_dir [ 'error' ]; ?> </strong></p></div><?php
else :
?>
< form enctype = " multipart/form-data " id = " import-upload-form " method = " post " action = " <?php echo esc_attr( wp_nonce_url( $action , 'import-upload' ) ); ?> " >
< table class = " form-table " >
< tbody >
< tr >
< th >
< label for = " upload " >< ? php _e ( 'Choose a file from your computer:' , 'woocommerce' ); ?> </label>
</ th >
< td >
< input type = " file " id = " upload " name = " import " size = " 25 " />
< input type = " hidden " name = " action " value = " save " />
< input type = " hidden " name = " max_file_size " value = " <?php echo $bytes ; ?> " />
< small >< ? php
/* translators: %s: maximum upload size */
printf (
__ ( 'Maximum size: %s' , 'woocommerce' ),
$size
);
?> </small>
</ td >
</ tr >
< tr >
< th >
< label for = " file_url " >< ? php _e ( 'OR enter path to file:' , 'woocommerce' ); ?> </label>
</ th >
< td >
< ? php echo ' ' . ABSPATH . ' ' ; ?> <input type="text" id="file_url" name="file_url" size="25" />
</ td >
</ tr >
< tr >
< th >< label >< ? php _e ( 'Delimiter' , 'woocommerce' ); ?> </label><br/></th>
< td >< input type = " text " name = " delimiter " placeholder = " , " size = " 2 " /></ td >
</ tr >
</ tbody >
</ table >
< p class = " submit " >
< input type = " submit " class = " button " value = " <?php esc_attr_e( 'Upload file and import', 'woocommerce' ); ?> " />
</ p >
</ form >
< ? php
endif ;
echo '</div>' ;
}
/**
* Show import error and quit .
* @ param string $message
*/
private function import_error ( $message = '' ) {
echo '<p><strong>' . __ ( 'Sorry, there has been an error.' , 'woocommerce' ) . '</strong><br />' ;
if ( $message ) {
echo esc_html ( $message );
}
echo '</p>' ;
$this -> footer ();
die ();
}
2017-05-15 22:49:53 +00:00
/**
* Get default fields .
*
* @ return array
*/
protected function get_default_fields () {
$fields = array (
'id' ,
'type' ,
'sku' ,
'name' ,
'status' ,
'featured' ,
'catalog_visibility' ,
'short_description' ,
'description' ,
'date_on_sale_from' ,
'date_on_sale_to' ,
'tax_status' ,
'tax_class' ,
'stock_status' ,
'backorders' ,
'sold_individually' ,
'weight' ,
'length' ,
'width' ,
'height' ,
'reviews_allowed' ,
'purchase_note' ,
'price' ,
'regular_price' ,
'manage_stock' ,
'stock_quantity' ,
'category_ids' ,
'tag_ids' ,
'shipping_class_id' ,
'images' ,
'downloads' ,
'download_limit' ,
'download_expiry' ,
'parent_id' ,
'upsell_ids' ,
'cross_sell_ids' ,
);
return apply_filters ( 'woocommerce_csv_product_default_fields' , $fields );
}
2017-05-10 20:15:28 +00:00
/**
* Get mapping options .
*
2017-05-10 21:56:29 +00:00
* @ param string $item Item name
2017-05-10 20:15:28 +00:00
* @ return array
*/
2017-05-10 21:56:29 +00:00
protected function get_mapping_options ( $item = '' ) {
2017-05-10 20:15:28 +00:00
$weight_unit = get_option ( 'woocommerce_weight_unit' );
$dimension_unit = get_option ( 'woocommerce_dimension_unit' );
$options = array (
'id' => __ ( 'ID' , 'woocommerce' ),
'type' => __ ( 'Type' , 'woocommerce' ),
'sku' => __ ( 'SKU' , 'woocommerce' ),
'name' => __ ( 'Name' , 'woocommerce' ),
'status' => __ ( 'Published' , 'woocommerce' ),
'featured' => __ ( 'Is featured?' , 'woocommerce' ),
'catalog_visibility' => __ ( 'Visibility in catalog' , 'woocommerce' ),
'short_description' => __ ( 'Short Description' , 'woocommerce' ),
'description' => __ ( 'Description' , 'woocommerce' ),
'date_on_sale_from' => __ ( 'Date sale price starts' , 'woocommerce' ),
'date_on_sale_to' => __ ( 'Date sale price ends' , 'woocommerce' ),
'tax_status' => __ ( 'Tax Status' , 'woocommerce' ),
'tax_class' => __ ( 'Tax Class' , 'woocommerce' ),
'stock_status' => __ ( 'In stock?' , 'woocommerce' ),
'backorders' => __ ( 'Backorders allowed?' , 'woocommerce' ),
'sold_individually' => __ ( 'Sold individually?' , 'woocommerce' ),
/* translators: %s: weight unit */
'weight' => sprintf ( __ ( 'Weight (%s)' , 'woocommerce' ), $weight_unit ),
/* translators: %s: dimension unit */
'length' => sprintf ( __ ( 'Length (%s)' , 'woocommerce' ), $dimension_unit ),
/* translators: %s: dimension unit */
'width' => sprintf ( __ ( 'Width (%s)' , 'woocommerce' ), $dimension_unit ),
/* translators: %s: dimension unit */
'height' => sprintf ( __ ( 'Height (%s)' , 'woocommerce' ), $dimension_unit ),
'reviews_allowed' => __ ( 'Allow customer reviews?' , 'woocommerce' ),
'purchase_note' => __ ( 'Purchase Note' , 'woocommerce' ),
'price' => __ ( 'Price' , 'woocommerce' ),
'regular_price' => __ ( 'Regular Price' , 'woocommerce' ),
'manage_stock' => __ ( 'Manage stock?' , 'woocommerce' ),
'stock_quantity' => __ ( 'Amount in stock' , 'woocommerce' ),
'category_ids' => __ ( 'Categories' , 'woocommerce' ),
'tag_ids' => __ ( 'Tags' , 'woocommerce' ),
'shipping_class_id' => __ ( 'Shipping Class' , 'woocommerce' ),
'attributes' => array (
'name' => __ ( 'Attributes' , 'woocommerce' ),
'options' => array (
'attributes_name' => __ ( 'Attributes name' , 'woocommerce' ),
'attributes_value' => __ ( 'Attributes value' , 'woocommerce' ),
'default_attributes' => __ ( 'Default attribute' , 'woocommerce' ),
),
),
2017-05-11 14:49:45 +00:00
'images' => __ ( 'Image' , 'woocommerce' ),
2017-05-10 20:15:28 +00:00
'downloads' => __ ( 'Download Name:URL' , 'woocommerce' ),
'download_limit' => __ ( 'Download Limit' , 'woocommerce' ),
'download_expiry' => __ ( 'Download Expiry Days' , 'woocommerce' ),
'parent_id' => __ ( 'Parent' , 'woocommerce' ),
'upsell_ids' => __ ( 'Upsells' , 'woocommerce' ),
'cross_sell_ids' => __ ( 'Cross-sells' , 'woocommerce' ),
2017-05-10 21:56:29 +00:00
'meta:' . $item => __ ( 'Import as meta' , 'woocommerce' ),
2017-05-10 20:15:28 +00:00
);
2017-05-15 22:49:53 +00:00
return apply_filters ( 'woocommerce_csv_product_import_mapping_options' , $options , $item );
2017-05-10 20:15:28 +00:00
}
/**
* CSV mapping .
*
* @ param string $file File path .
*/
protected function importer_mapping ( $file ) {
2017-05-15 22:49:53 +00:00
$importer = $this -> get_importer ( $file , array ( 'lines' => 1 ) );
$headers = $importer -> get_raw_keys ();
$sample = current ( $importer -> get_raw_data () );
if ( empty ( $sample ) ) {
$this -> import_error ( __ ( 'The file is empty, please try again with a new file.' , 'woocommerce' ) );
}
2017-05-10 20:15:28 +00:00
2017-05-10 20:56:00 +00:00
// Check if all fields matches.
if ( 0 === count ( array_diff ( $headers , $this -> get_default_fields () ) ) ) {
$params = array (
'import' => $this -> import_page ,
'step' => 2 ,
'file_id' => $this -> id ,
'file_url' => $this -> file_url ,
'delimiter' => $this -> delimiter ,
'_wpnonce' => wp_create_nonce ( 'woocommerce-csv-importer' ), // wp_nonce_url() escapes & to & breaking redirects.
);
wp_redirect ( add_query_arg ( $params , admin_url ( 'admin.php' ) ) );
}
2017-05-10 20:15:28 +00:00
include_once ( dirname ( __FILE__ ) . '/views/html-csv-mapping.php' );
}
2017-05-15 22:49:53 +00:00
/**
* Get importer instance .
*
* @ param string $file File to import .
* @ param array $args Importer arguments .
* @ return WC_Product_CSV_Importer
*/
protected function get_importer ( $file , $args = array () ) {
$importer_class = apply_filters ( 'woocommerce_product_csv_impoter_class' , 'WC_Product_CSV_Importer' );
return new $importer_class ( $file , $args );
}
2017-05-01 21:30:45 +00:00
}